b4b18a68 by lihua

fix: 解决合约中运算符消失的bug

1 parent 9f8352a9
...@@ -37,9 +37,9 @@ const fullscreenLoading = ref(false); ...@@ -37,9 +37,9 @@ const fullscreenLoading = ref(false);
37 const restart = ref(false); 37 const restart = ref(false);
38 38
39 /** 展开收起 */ 39 /** 展开收起 */
40 const expandBase = ref(false); 40 const expandBase = ref(true);
41 const expandImpact = ref(false); 41 const expandImpact = ref(true);
42 const expandValid = ref(false); 42 const expandValid = ref(true);
43 const approveInfoExpand = ref(false); 43 const approveInfoExpand = ref(false);
44 44
45 const deploymentId = ref(""); 45 const deploymentId = ref("");
......
...@@ -26,8 +26,8 @@ const userStore = useUserStore(); ...@@ -26,8 +26,8 @@ const userStore = useUserStore();
26 const dataSmartContract = useDataSmartContract(); 26 const dataSmartContract = useDataSmartContract();
27 const fullPath = route.fullPath; 27 const fullPath = route.fullPath;
28 const fullscreenLoading = ref(false); 28 const fullscreenLoading = ref(false);
29 const expandBase = ref(false); 29 const expandBase = ref(true);
30 const expandInfo = ref(false); 30 const expandInfo = ref(true);
31 31
32 const baseInfoFormRef = ref(); 32 const baseInfoFormRef = ref();
33 const baseInfoFormItems = ref([{ 33 const baseInfoFormItems = ref([{
......
...@@ -32,9 +32,9 @@ const tenantData = JSON.parse(localStorage.tenantInfo); ...@@ -32,9 +32,9 @@ const tenantData = JSON.parse(localStorage.tenantInfo);
32 const router = useRouter(); 32 const router = useRouter();
33 const route = useRoute(); 33 const route = useRoute();
34 const fullscreenLoading = ref(false); 34 const fullscreenLoading = ref(false);
35 const expandBase = ref(false); 35 const expandBase = ref(true);
36 const expandInfo = ref(false); 36 const expandInfo = ref(true);
37 const expandPolicy = ref(false); 37 const expandPolicy = ref(true);
38 const fullPath = route.fullPath; 38 const fullPath = route.fullPath;
39 const dataSmartContract = useDataSmartContract(); 39 const dataSmartContract = useDataSmartContract();
40 const { proxy } = getCurrentInstance() as any; 40 const { proxy } = getCurrentInstance() as any;
......
...@@ -49,14 +49,14 @@ const router = useRouter(); ...@@ -49,14 +49,14 @@ const router = useRouter();
49 const route = useRoute(); 49 const route = useRoute();
50 const fullPath = route.fullPath; 50 const fullPath = route.fullPath;
51 const fullscreenLoading = ref(false); 51 const fullscreenLoading = ref(false);
52 const expandBase = ref(false); 52 const expandBase = ref(true);
53 const expandInfo = ref(false); 53 const expandInfo = ref(true);
54 const expandPolicy = ref(false); 54 const expandPolicy = ref(true);
55 const expandPolicyConsult = ref(false); 55 const expandPolicyConsult = ref(true);
56 const expandConsultHistory = ref(false); 56 const expandConsultHistory = ref(true);
57 const expandSign = ref(false);//合约签署 57 const expandSign = ref(true);//合约签署
58 const expandKeep = ref(false);//合约履约执行信息 58 const expandKeep = ref(true);//合约履约执行信息
59 const expandReject = ref(false);//合约解除 59 const expandReject = ref(true);//合约解除
60 const { proxy } = getCurrentInstance() as any; 60 const { proxy } = getCurrentInstance() as any;
61 const detailInfo: any = ref({}); 61 const detailInfo: any = ref({});
62 const detailType = ref(route.query.type); //为null表示第一步查看,其余协整和签署等需要传递type 62 const detailType = ref(route.query.type); //为null表示第一步查看,其余协整和签署等需要传递type
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!