a81c3533 by lihua

fix: 修复价值评估问题

1 parent 78cb5e56
......@@ -828,7 +828,7 @@ const passCommonDialogInfo = ref({
footer: {
btns: [
{ type: "default", label: "取消", value: "cancel" },
{ type: "primary", label: "确定", value: "submit", loading: true },
{ type: "primary", label: "确定", value: "submit", loading: false },
],
},
});
......
......@@ -1121,7 +1121,7 @@ const rejectDialogInfo = ref({
footer: {
btns: [
{ type: "default", label: "取消", value: "cancel" },
{ type: "primary", label: "确定", value: "submit", loading: true },
{ type: "primary", label: "确定", value: "submit", loading: false },
],
},
});
......@@ -1210,7 +1210,7 @@ const passCommonDialogInfo = ref({
footer: {
btns: [
{ type: "default", label: "取消", value: "cancel" },
{ type: "primary", label: "确定", value: "submit", loading: true },
{ type: "primary", label: "确定", value: "submit", loading: false },
],
},
});
......
......@@ -1045,7 +1045,7 @@ const passCommonDialogInfo = ref({
footer: {
btns: [
{ type: "default", label: "取消", value: "cancel" },
{ type: "primary", label: "确定", value: "submit", loading: true },
{ type: "primary", label: "确定", value: "submit", loading: false },
],
},
});
......@@ -1082,7 +1082,7 @@ const rejectDialogInfo = ref({
footer: {
btns: [
{ type: "default", label: "取消", value: "cancel" },
{ type: "primary", label: "确定", value: "submit", loading: true },
{ type: "primary", label: "确定", value: "submit", loading: false },
],
},
});
......@@ -1102,7 +1102,7 @@ const rejectDialogBtnClick = (btn, info) => {
approveStaffGuid: userData.staffGuid
}
rejectFlowData(params, currTableData.value.tenantGuid).then((res: any) => {
rejectDialogInfo.value.footer.btns[1].loading = true;
rejectDialogInfo.value.footer.btns[1].loading = false;
if (res?.code == proxy.$passCode) {
if (res.data) {
ElMessage.success('驳回成功');
......
......@@ -1906,6 +1906,9 @@ const selectChange = (val, row, info) => {
// 这里应该是onActivated 钩子,路由从configure-路由从configure-rules跳转过来要重新请求数据、
onActivated(async () => {
if (localStorage.getItem('shouldReloadData') === 'true') {
if (activeName.value == '数据库目录') {
getDataBaseTreeData();
}
await getDataBaseTableData({
exexGuid: execGuidInfo.value.execGuid
});
......
......@@ -1059,6 +1059,7 @@ const rejectDialogBtnClick = (btn, info) => {
font-size: 16px;
color: #212121;
font-weight: 600;
width: calc(100% - 28px);
}
}
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!