|
@@ -231,10 +231,7 @@
|
|
|
effect="dark"
|
|
|
content="取消申请"
|
|
|
style="padding: 3px 0 0 0"
|
|
|
- v-if="
|
|
|
- !afterStatusList.includes(Number(resitem.status)) &&
|
|
|
- powers.some((i) => i == '027') && !isSupertube
|
|
|
- "
|
|
|
+ v-if="!afterStatusList.includes(Number(resitem.status)) && afterPowers.some((i) => i == '027') && !isSupertube"
|
|
|
placement="top"
|
|
|
>
|
|
|
<i class="el-icon-circle-close tb-icon" @click="() => close_return(resitem.returnCode)"></i>
|
|
@@ -434,6 +431,11 @@ export default {
|
|
|
const { action } = tran ?? {};
|
|
|
return action ?? [];
|
|
|
},
|
|
|
+ afterPowers() {
|
|
|
+ const tran = this.$store.getters.btnList.find((item) => item.menu_route == "sellAfterApply") || {};
|
|
|
+ const { action } = tran ?? {};
|
|
|
+ return action ?? [];
|
|
|
+ },
|
|
|
ppowers() {
|
|
|
const tran =
|
|
|
this.$store.getters.roleProcess.find((i) => i.process_type === "CKD") || {};
|