fix: 解决合约中运算符消失的bug
Showing
4 changed files
with
16 additions
and
16 deletions
| ... | @@ -36,9 +36,9 @@ const fullscreenLoading = ref(false); | ... | @@ -36,9 +36,9 @@ const fullscreenLoading = ref(false); |
| 36 | const restart = ref(false); | 36 | const restart = ref(false); |
| 37 | 37 | ||
| 38 | /** 展开收起 */ | 38 | /** 展开收起 */ |
| 39 | const expandBase = ref(false); | 39 | const expandBase = ref(true); |
| 40 | const expandImpact = ref(false); | 40 | const expandImpact = ref(true); |
| 41 | const expandValid = ref(false); | 41 | const expandValid = ref(true); |
| 42 | const approveInfoExpand = ref(false); | 42 | const approveInfoExpand = ref(false); |
| 43 | 43 | ||
| 44 | // const deploymentId = ref(""); | 44 | // 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 | ... | ... |
-
Please register or sign in to post a comment