修改
This commit is contained in:
parent
06a8ec83e0
commit
38009a1e6a
@ -295,6 +295,27 @@
|
||||
style="width: 240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="兑换商品数量" prop="integralExchangeCount" v-if="orderList.orderType=='INTEGRAL_EXCHANGE'">
|
||||
<el-input
|
||||
v-model="orderList.integralExchangeCount"
|
||||
disabled
|
||||
style="width: 240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="兑换积分数" prop="integralExchangeSill" v-if="orderList.orderType=='INTEGRAL_EXCHANGE'">
|
||||
<el-input
|
||||
v-model="orderList.integralExchangeSill"
|
||||
disabled
|
||||
style="width: 240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="商品数量" prop="goodsCount" v-if="orderList.orderType=='DIRECT_BUY'">
|
||||
<el-input
|
||||
v-model="orderList.goodsCount"
|
||||
disabled
|
||||
style="width: 240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="收货人" prop="receiveAddress">
|
||||
<el-input
|
||||
v-model="orderList.receiver"
|
||||
|
||||
@ -298,6 +298,7 @@ export default {
|
||||
//确认退款 确定按钮
|
||||
submitRefundOrder() {
|
||||
var obj = {};
|
||||
obj.orderType=this.refundlist.orderType;
|
||||
obj.orderNo = this.refundlist.goOrderNo;
|
||||
obj.refundReason = this.refundlist.dictLabel;
|
||||
obj.refundPrice = this.refundlist.godTotalPrice;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user