53ddc5d2 by lihua

解决合约创建问题

1 parent a355005f
...@@ -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;
......
...@@ -740,7 +740,6 @@ onBeforeMount(() => { ...@@ -740,7 +740,6 @@ onBeforeMount(() => {
740 } 740 }
741 }) 741 })
742 } 742 }
743 fullscreenLoading.value = true;
744 // 连接器不需要用到会员认证信息。未认证的没有菜单。 743 // 连接器不需要用到会员认证信息。未认证的没有菜单。
745 // psLogon.value = getEnterpriseData({ 744 // psLogon.value = getEnterpriseData({
746 // logonUser: userData.tenantName == "非认证会员" ? userData.logonUser : tenantData.logonUser 745 // 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!