b4b18a68 by lihua

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

1 parent 9f8352a9
......@@ -37,9 +37,9 @@ const fullscreenLoading = ref(false);
const restart = ref(false);
/** 展开收起 */
const expandBase = ref(false);
const expandImpact = ref(false);
const expandValid = ref(false);
const expandBase = ref(true);
const expandImpact = ref(true);
const expandValid = ref(true);
const approveInfoExpand = ref(false);
const deploymentId = ref("");
......
......@@ -26,8 +26,8 @@ const userStore = useUserStore();
const dataSmartContract = useDataSmartContract();
const fullPath = route.fullPath;
const fullscreenLoading = ref(false);
const expandBase = ref(false);
const expandInfo = ref(false);
const expandBase = ref(true);
const expandInfo = ref(true);
const baseInfoFormRef = ref();
const baseInfoFormItems = ref([{
......
......@@ -32,9 +32,9 @@ const tenantData = JSON.parse(localStorage.tenantInfo);
const router = useRouter();
const route = useRoute();
const fullscreenLoading = ref(false);
const expandBase = ref(false);
const expandInfo = ref(false);
const expandPolicy = ref(false);
const expandBase = ref(true);
const expandInfo = ref(true);
const expandPolicy = ref(true);
const fullPath = route.fullPath;
const dataSmartContract = useDataSmartContract();
const { proxy } = getCurrentInstance() as any;
......
......@@ -49,14 +49,14 @@ const router = useRouter();
const route = useRoute();
const fullPath = route.fullPath;
const fullscreenLoading = ref(false);
const expandBase = ref(false);
const expandInfo = ref(false);
const expandPolicy = ref(false);
const expandPolicyConsult = ref(false);
const expandConsultHistory = ref(false);
const expandSign = ref(false);//合约签署
const expandKeep = ref(false);//合约履约执行信息
const expandReject = ref(false);//合约解除
const expandBase = ref(true);
const expandInfo = ref(true);
const expandPolicy = ref(true);
const expandPolicyConsult = ref(true);
const expandConsultHistory = ref(true);
const expandSign = ref(true);//合约签署
const expandKeep = ref(true);//合约履约执行信息
const expandReject = ref(true);//合约解除
const { proxy } = getCurrentInstance() as any;
const detailInfo: any = ref({});
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!