a81c3533 by lihua

fix: 修复价值评估问题

1 parent 78cb5e56
...@@ -828,7 +828,7 @@ const passCommonDialogInfo = ref({ ...@@ -828,7 +828,7 @@ const passCommonDialogInfo = ref({
828 footer: { 828 footer: {
829 btns: [ 829 btns: [
830 { type: "default", label: "取消", value: "cancel" }, 830 { type: "default", label: "取消", value: "cancel" },
831 { type: "primary", label: "确定", value: "submit", loading: true }, 831 { type: "primary", label: "确定", value: "submit", loading: false },
832 ], 832 ],
833 }, 833 },
834 }); 834 });
......
...@@ -1121,7 +1121,7 @@ const rejectDialogInfo = ref({ ...@@ -1121,7 +1121,7 @@ const rejectDialogInfo = ref({
1121 footer: { 1121 footer: {
1122 btns: [ 1122 btns: [
1123 { type: "default", label: "取消", value: "cancel" }, 1123 { type: "default", label: "取消", value: "cancel" },
1124 { type: "primary", label: "确定", value: "submit", loading: true }, 1124 { type: "primary", label: "确定", value: "submit", loading: false },
1125 ], 1125 ],
1126 }, 1126 },
1127 }); 1127 });
...@@ -1210,7 +1210,7 @@ const passCommonDialogInfo = ref({ ...@@ -1210,7 +1210,7 @@ const passCommonDialogInfo = ref({
1210 footer: { 1210 footer: {
1211 btns: [ 1211 btns: [
1212 { type: "default", label: "取消", value: "cancel" }, 1212 { type: "default", label: "取消", value: "cancel" },
1213 { type: "primary", label: "确定", value: "submit", loading: true }, 1213 { type: "primary", label: "确定", value: "submit", loading: false },
1214 ], 1214 ],
1215 }, 1215 },
1216 }); 1216 });
......
...@@ -1045,7 +1045,7 @@ const passCommonDialogInfo = ref({ ...@@ -1045,7 +1045,7 @@ const passCommonDialogInfo = ref({
1045 footer: { 1045 footer: {
1046 btns: [ 1046 btns: [
1047 { type: "default", label: "取消", value: "cancel" }, 1047 { type: "default", label: "取消", value: "cancel" },
1048 { type: "primary", label: "确定", value: "submit", loading: true }, 1048 { type: "primary", label: "确定", value: "submit", loading: false },
1049 ], 1049 ],
1050 }, 1050 },
1051 }); 1051 });
...@@ -1082,7 +1082,7 @@ const rejectDialogInfo = ref({ ...@@ -1082,7 +1082,7 @@ const rejectDialogInfo = ref({
1082 footer: { 1082 footer: {
1083 btns: [ 1083 btns: [
1084 { type: "default", label: "取消", value: "cancel" }, 1084 { type: "default", label: "取消", value: "cancel" },
1085 { type: "primary", label: "确定", value: "submit", loading: true }, 1085 { type: "primary", label: "确定", value: "submit", loading: false },
1086 ], 1086 ],
1087 }, 1087 },
1088 }); 1088 });
...@@ -1102,7 +1102,7 @@ const rejectDialogBtnClick = (btn, info) => { ...@@ -1102,7 +1102,7 @@ const rejectDialogBtnClick = (btn, info) => {
1102 approveStaffGuid: userData.staffGuid 1102 approveStaffGuid: userData.staffGuid
1103 } 1103 }
1104 rejectFlowData(params, currTableData.value.tenantGuid).then((res: any) => { 1104 rejectFlowData(params, currTableData.value.tenantGuid).then((res: any) => {
1105 rejectDialogInfo.value.footer.btns[1].loading = true; 1105 rejectDialogInfo.value.footer.btns[1].loading = false;
1106 if (res?.code == proxy.$passCode) { 1106 if (res?.code == proxy.$passCode) {
1107 if (res.data) { 1107 if (res.data) {
1108 ElMessage.success('驳回成功'); 1108 ElMessage.success('驳回成功');
......
...@@ -1906,6 +1906,9 @@ const selectChange = (val, row, info) => { ...@@ -1906,6 +1906,9 @@ const selectChange = (val, row, info) => {
1906 // 这里应该是onActivated 钩子,路由从configure-路由从configure-rules跳转过来要重新请求数据、 1906 // 这里应该是onActivated 钩子,路由从configure-路由从configure-rules跳转过来要重新请求数据、
1907 onActivated(async () => { 1907 onActivated(async () => {
1908 if (localStorage.getItem('shouldReloadData') === 'true') { 1908 if (localStorage.getItem('shouldReloadData') === 'true') {
1909 if (activeName.value == '数据库目录') {
1910 getDataBaseTreeData();
1911 }
1909 await getDataBaseTableData({ 1912 await getDataBaseTableData({
1910 exexGuid: execGuidInfo.value.execGuid 1913 exexGuid: execGuidInfo.value.execGuid
1911 }); 1914 });
......
...@@ -1059,6 +1059,7 @@ const rejectDialogBtnClick = (btn, info) => { ...@@ -1059,6 +1059,7 @@ const rejectDialogBtnClick = (btn, info) => {
1059 font-size: 16px; 1059 font-size: 16px;
1060 color: #212121; 1060 color: #212121;
1061 font-weight: 600; 1061 font-weight: 600;
1062 width: calc(100% - 28px);
1062 } 1063 }
1063 } 1064 }
1064 1065
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!