5190985e by lihua

解决合约创建问题

1 parent 99f40495
...@@ -450,6 +450,7 @@ export const tagType = (row, type): any => { ...@@ -450,6 +450,7 @@ export const tagType = (row, type): any => {
450 state = 'info'; 450 state = 'info';
451 break; 451 break;
452 case "A": 452 case "A":
453 case 'B':
453 state = 'warning' 454 state = 'warning'
454 break; 455 break;
455 case "Y": 456 case "Y":
...@@ -772,6 +773,9 @@ export const tagMethod = (row, type) => { ...@@ -772,6 +773,9 @@ export const tagMethod = (row, type) => {
772 case "C": 773 case "C":
773 tag = '已撤销' 774 tag = '已撤销'
774 break; 775 break;
776 case "B":
777 tag = '变更中'
778 break;
775 case "E": 779 case "E":
776 tag = '发起失败' 780 tag = '发起失败'
777 break; 781 break;
......
...@@ -749,7 +749,6 @@ onBeforeMount(() => { ...@@ -749,7 +749,6 @@ onBeforeMount(() => {
749 } 749 }
750 }) 750 })
751 } 751 }
752 fullscreenLoading.value = true;
753 // 连接器不需要用到会员认证信息。未认证的没有菜单。 752 // 连接器不需要用到会员认证信息。未认证的没有菜单。
754 // psLogon.value = getEnterpriseData({ 753 // psLogon.value = getEnterpriseData({
755 // logonUser: userData.tenantName == "非认证会员" ? userData.logonUser : tenantData.logonUser 754 // logonUser: userData.tenantName == "非认证会员" ? userData.logonUser : tenantData.logonUser
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!