871788dd by lihua

修改定价名称为资产估值

1 parent a27cf9c1
...@@ -126,7 +126,7 @@ const routes: RouteRecordRaw[] = [ ...@@ -126,7 +126,7 @@ const routes: RouteRecordRaw[] = [
126 name: 'priceCalculateNew', 126 name: 'priceCalculateNew',
127 component: () => import('@/views/data_pricing/priceCalculateNew.vue'), 127 component: () => import('@/views/data_pricing/priceCalculateNew.vue'),
128 meta: { 128 meta: {
129 title: '数据定价(新)', 129 title: '资产估值',
130 breadcrumb: false, 130 breadcrumb: false,
131 cache: true 131 cache: true
132 } 132 }
...@@ -136,7 +136,7 @@ const routes: RouteRecordRaw[] = [ ...@@ -136,7 +136,7 @@ const routes: RouteRecordRaw[] = [
136 name: 'calculateConfigNew', 136 name: 'calculateConfigNew',
137 component: () => import('@/views/data_pricing/calculateConfigNew.vue'), 137 component: () => import('@/views/data_pricing/calculateConfigNew.vue'),
138 meta: { 138 meta: {
139 title: '新增数据定价', 139 title: '新增资产估值',
140 sidebar: false, 140 sidebar: false,
141 breadcrumb: false, 141 breadcrumb: false,
142 cache: true, 142 cache: true,
...@@ -147,7 +147,7 @@ const routes: RouteRecordRaw[] = [ ...@@ -147,7 +147,7 @@ const routes: RouteRecordRaw[] = [
147 if (to.query.guid) { 147 if (to.query.guid) {
148 to.meta.title = `编辑-${to.query.name}`; 148 to.meta.title = `编辑-${to.query.name}`;
149 } else { 149 } else {
150 to.meta.title = `新增数据定价`; 150 to.meta.title = `新增资产估值`;
151 } 151 }
152 } 152 }
153 }, 153 },
......
...@@ -995,7 +995,7 @@ const checkForm = (type) => { ...@@ -995,7 +995,7 @@ const checkForm = (type) => {
995 if (res.code == proxy.$passCode) { 995 if (res.code == proxy.$passCode) {
996 ElMessage({ 996 ElMessage({
997 type: "success", 997 type: "success",
998 message: guid ? '编辑数据定价成功' : '新增数据定价成功', 998 message: guid ? '编辑资产估值成功' : '新增资产估值成功',
999 }); 999 });
1000 toPath() 1000 toPath()
1001 } else { 1001 } else {
...@@ -1092,7 +1092,7 @@ onActivated(() => { ...@@ -1092,7 +1092,7 @@ onActivated(() => {
1092 if (tab) { 1092 if (tab) {
1093 switch (route.query.type) { 1093 switch (route.query.type) {
1094 case 'create': 1094 case 'create':
1095 tab.meta.title = `新增数据定价`; 1095 tab.meta.title = `新增资产估值`;
1096 break; 1096 break;
1097 case 'edit': 1097 case 'edit':
1098 tab.meta.title = `编辑-${priceName}`; 1098 tab.meta.title = `编辑-${priceName}`;
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!