This commit is contained in:
Vinjor 2024-11-22 18:13:59 +08:00
commit c03f00cf94
2 changed files with 4 additions and 4 deletions

View File

@ -100,15 +100,15 @@ export default {
}, },
open() {}, open() {},
noFun() { noFun() {
this.handleAudit('05') this.handleAudit('02')
}, },
yesFun() { yesFun() {
this.handleAudit('02') this.handleAudit('01')
}, },
/** /**
* 审批接口 * 审批接口
* @param flag"02:审批通过""05:驳回" * @param flag"01:审批通过""02:驳回"
*/ */
handleAudit(flag){ handleAudit(flag){
this.formData['status'] = flag this.formData['status'] = flag

View File

@ -18,7 +18,7 @@
<view class="list"> <view class="list">
<view v-for="(item, index) in wares" :key="index" class="listItem"> <view v-for="(item, index) in wares" :key="index" class="listItem">
<view class="repairName"> <view class="repairName">
<radio @click="chooseItem(item)" :checked="item.isSelected"/> <radio @click="chooseItem(item)" v-if="isToBeReviewed" :checked="item.isSelected"/>
{{ item.waresName }} {{ item.waresName }}
</view> </view>
<view class="repairBottom"> <view class="repairBottom">