页面集成

master
lion 4 months ago
parent 85768b6758
commit 8a63f87c9b

@ -253,8 +253,10 @@
签订合同 签订合同
</Button> </Button>
</template> </template>
<!-- (scope.row.purchase_way ? scope.row.purchase_way.remark === 'true' : false) && -->
<template <template
v-if="scope.row.invite_status === 1 && scope.row.purchase_status === 3 && (scope.row.purchase_way ? scope.row.purchase_way.remark === 'true' : false) && !scope.row.is_substitute && (!scope.row.contract_category || scope.row.invite_status === 1)"
v-if="scope.row.invite_status === 1 && scope.row.purchase_status === 3 && !scope.row.is_substitute && (!scope.row.contract_category || scope.row.invite_status === 1)"
> >
<Button class="slot-btns-item" size="small" type="primary" @click="bidding(scope.row)"></Button> <Button class="slot-btns-item" size="small" type="primary" @click="bidding(scope.row)"></Button>
</template> </template>
@ -264,8 +266,9 @@
</Button> </Button>
</template> </template>
<!--不需要走采购流程那么直接就是会签如果采购方式不需要招标的也是直接会签--> <!--不需要走采购流程那么直接就是会签如果采购方式不需要招标的也是直接会签-->
<!-- (scope.row.purchase_way ? scope.row.purchase_way.remark === 'false' : false) -->
<template <template
v-if="(scope.row.has_charge && scope.row.req_status === 3 && scope.row.join_status === 1) || (scope.row.join_status === 1 && ((scope.row.invite_status === 3)||((scope.row.purchase_way ? scope.row.purchase_way.remark === 'false' : false) && scope.row.purchase_status === 3)) || ( scope.row.is_substitute && scope.row.join_status === 1) ) && (!scope.row.contract_category || scope.row.join_status === 1)" v-if="(scope.row.has_charge && scope.row.req_status === 3 && scope.row.join_status === 1) || (scope.row.join_status === 1 && ((scope.row.invite_status === 3)||(scope.row.purchase_status === 3)) || ( scope.row.is_substitute && scope.row.join_status === 1) ) && (!scope.row.contract_category || scope.row.join_status === 1)"
> >
<Button class="slot-btns-item" size="small" type="primary" @click="signProcess(scope.row)"> <Button class="slot-btns-item" size="small" type="primary" @click="signProcess(scope.row)">
</Button> </Button>
@ -2250,7 +2253,7 @@ export default {
plan: '关联预算计划', plan: '关联预算计划',
supply: '付款对象' supply: '付款对象'
} }
const missingFieldNames = missingFields.map(field => fieldNames[field] || field).join('、') const missingFieldNames = missingFields.map(field => fieldNames[field] || field).join('、')
this.$Message.warning(`请填写:${missingFieldNames}`) this.$Message.warning(`请填写:${missingFieldNames}`)
return return

Loading…
Cancel
Save