|
@@ -25,7 +25,7 @@
|
|
|
<view class="info-phone">{{ getStatus(site.approvalStatus) }}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view slot="foot" style="text-align: right;" v-if="site.giftType == 0 && site.approvalStatus == 2" >
|
|
|
+ <view slot="foot" style="text-align: right;" v-if="site.giftType == 0 && site.approvalStatus == 3" >
|
|
|
<u-button type="warning" :ripple="true" shape="circle" :custom-style="{...handleCustomStyle, marginRight: '5px'}" size="mini" @click="handleGiveClick(site.id,site.venueId)">赠送</u-button>
|
|
|
<u-button type="warning" :ripple="true" shape="circle" :custom-style="handleCustomStyle" size="mini" @click="handleNoGiveClick(site.id)">不送</u-button>
|
|
|
</view>
|
|
@@ -134,6 +134,8 @@
|
|
|
case 1:
|
|
|
return '审批通过'
|
|
|
case 2:
|
|
|
+ return '驳回'
|
|
|
+ case 3:
|
|
|
return '提交'
|
|
|
}
|
|
|
}
|
|
@@ -241,7 +243,7 @@
|
|
|
this.giftShow = false
|
|
|
})
|
|
|
}
|
|
|
- },
|
|
|
+ },
|
|
|
// 不送
|
|
|
handleNoGiveClick(id) {
|
|
|
NET.request(API.giveGiftRefuse, {
|