ab2d0a0d by lxs

数据资产登记更新

1 parent 02abb7b2
...@@ -192,15 +192,13 @@ const getTableBtns = (row, includeDetail = true) => { ...@@ -192,15 +192,13 @@ const getTableBtns = (row, includeDetail = true) => {
192 btnsArr.push({ label: "详情", value: "detail" }) 192 btnsArr.push({ label: "详情", value: "detail" })
193 if (flowState === 2) { 193 if (flowState === 2) {
194 btnsArr.push(...[{ label: "通过", value: "pass" }, { label: "驳回", value: "reject" }]) 194 btnsArr.push(...[{ label: "通过", value: "pass" }, { label: "驳回", value: "reject" }])
195 if (isShowCancel) {
196 btnsArr.push({ label: "撤销", value: "revoke" })
197 }
198 } else if (flowState === 3) { 195 } else if (flowState === 3) {
199 if (bizApproveState != 'D') { 196 if (bizApproveState != 'D') {
200 btnsArr.push({ label: "重新提交", value: "edit" }) 197 btnsArr.push({ label: "重新提交", value: "edit" })
201 } 198 }
202 btnsArr.push({ label: "删除", value: "delete" })
203 } 199 }
200 isShowCancel && btnsArr.push({ label: "撤销", value: "revoke" })
201 flowState === 3 && btnsArr.push({ label: "删除", value: "delete" })
204 } 202 }
205 return btnsArr 203 return btnsArr
206 } 204 }
...@@ -541,8 +539,7 @@ const rejectDialogBtnClick = (btn, info) => { ...@@ -541,8 +539,7 @@ const rejectDialogBtnClick = (btn, info) => {
541 :class="{ active: exchangGuid == item.exchangeGuid, mr16: i < carousel.length - 1 && (i + 1) % 4 !== 0 }" 539 :class="{ active: exchangGuid == item.exchangeGuid, mr16: i < carousel.length - 1 && (i + 1) % 4 !== 0 }"
542 @click="btnClick({ value: 'search', ...item })" v-preReClick> 540 @click="btnClick({ value: 'search', ...item })" v-preReClick>
543 <div class="title" :class="{ active: exchangGuid == item.exchangeGuid }"> 541 <div class="title" :class="{ active: exchangGuid == item.exchangeGuid }">
544 <img class="left-img" 542 <img class="left-img" :src="item.exchangeName.indexOf('门户') > -1 ? sjsLogo : defaultItemLogo" alt="" />
545 :src="item.exchangeName.indexOf('门户') > -1 ? sjsLogo : defaultItemLogo" alt="" />
546 <span>{{ item.exchangeName ?? '--' }}</span> 543 <span>{{ item.exchangeName ?? '--' }}</span>
547 </div> 544 </div>
548 <div class="count-group"> 545 <div class="count-group">
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!