cloud-web-corejs-haier 1.0.16 → 1.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -275,7 +275,7 @@ wfContentMixin = {
275
275
  rejectDialogVisible: false,
276
276
  rejectForm: {
277
277
  rejectSubmitModel: null,
278
- nodeId: null,
278
+ nodeCode: null,
279
279
  opinion: null,
280
280
  },
281
281
  formLabelWidth: "120px",
@@ -1,3 +1,16 @@
1
- export const constantRoutes = [
2
-
3
- ];
1
+ export const constantRoutes = [{
2
+ path: '',
3
+ component: () => import('@/layout/index'),
4
+ children: [
5
+ {
6
+ path: '/pmd/product/common/common_product_display/detail/:id',
7
+ component: () => import('@/views/pmd/product/common/common_product_display/detail'),
8
+ name: 'commonProductDisplayEdit',
9
+ meta: {
10
+ title: '产品详情',
11
+ paramField: 'id',
12
+ menuUrl: '/pmd/product/common/common_product_display/detail'
13
+ }
14
+ }
15
+ ]
16
+ }]