You need to sign in or sign up before continuing.
Commit 6840ba2a by caoyanzhi

update: 虚拟礼品不支持退货

parent 4a3f04ce
......@@ -137,13 +137,13 @@
<div class="form-section">
<h3>售后服务</h3>
<el-form-item prop="refundFlag" label="支持买家申请退货">
<template>
<div>
<el-radio v-model="goodsForm.refundFlag" :label="1">支持</el-radio>
<el-radio v-model="goodsForm.refundFlag" :label="0">不支持</el-radio>
</div>
<span class="tip-warm" style="display:block">若商品不支持退货,则该礼品出库后不支持生成退货单</span>
</template>
<el-radio-group disabled :value="goodsForm.refundFlag">
<el-radio :label="1">支持</el-radio>
<el-radio :label="0">支持</el-radio>
</el-radio-group>
<div>
</div>
<span class="tip-warm" style="display:block">若商品不支持退货,则该礼品出库后不支持生成退货单</span>
</el-form-item>
</div>
<div class="form-section mb56">
......@@ -505,7 +505,7 @@ export default {
} // 礼品主图
this.goodsForm.giftDescrption = resResult.giftDescrption; // 礼品详情
this.goodsForm.template = resResult.template;
this.goodsForm.refundFlag = resResult.refundFlag; // 是否支持退货
this.goodsForm.refundFlag = 0; // 虚拟礼品不支持退货
} else {
this.$message.error(res.message);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment