b67a7455 by lihua

解决合约创建问题

1 parent 90ebad3c
......@@ -450,6 +450,7 @@ export const tagType = (row, type) => {
state = 'info';
break;
case "A":
case 'B':
state = 'warning'
break;
case "Y":
......@@ -772,7 +773,10 @@ export const tagMethod = (row, type) => {
case "C":
tag = '已撤销'
break;
case 'E':
case "B":
tag = '变更中'
break;
case "E":
tag = '发起失败'
break;
default:
......
......@@ -45,6 +45,7 @@ const searchItemList = ref([
{ label: '已通过', value: 'Y' },
{ label: '已驳回', value: 'R' },
{ label: '已撤销', value: 'C' },
{ label: '变更中', value: 'B' },
],
filterable: true,
clearable: true
......
......@@ -740,7 +740,6 @@ onBeforeMount(() => {
}
})
}
fullscreenLoading.value = true;
// 连接器不需要用到会员认证信息。未认证的没有菜单。
// psLogon.value = getEnterpriseData({
// 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!