b67a7455 by lihua

解决合约创建问题

1 parent 90ebad3c
...@@ -450,6 +450,7 @@ export const tagType = (row, type) => { ...@@ -450,6 +450,7 @@ export const tagType = (row, type) => {
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,7 +773,10 @@ export const tagMethod = (row, type) => { ...@@ -772,7 +773,10 @@ export const tagMethod = (row, type) => {
772 case "C": 773 case "C":
773 tag = '已撤销' 774 tag = '已撤销'
774 break; 775 break;
775 case 'E': 776 case "B":
777 tag = '变更中'
778 break;
779 case "E":
776 tag = '发起失败' 780 tag = '发起失败'
777 break; 781 break;
778 default: 782 default:
......
...@@ -45,6 +45,7 @@ const searchItemList = ref([ ...@@ -45,6 +45,7 @@ const searchItemList = ref([
45 { label: '已通过', value: 'Y' }, 45 { label: '已通过', value: 'Y' },
46 { label: '已驳回', value: 'R' }, 46 { label: '已驳回', value: 'R' },
47 { label: '已撤销', value: 'C' }, 47 { label: '已撤销', value: 'C' },
48 { label: '变更中', value: 'B' },
48 ], 49 ],
49 filterable: true, 50 filterable: true,
50 clearable: true 51 clearable: true
......
...@@ -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!