Commit f0d77dba by lixiaomin

修改退款复选框显示

parent cab04a4d
...@@ -89,7 +89,7 @@ ...@@ -89,7 +89,7 @@
<el-table-column label="折扣价" align="center" prop="realAmount" /> <el-table-column label="折扣价" align="center" prop="realAmount" />
<el-table-column label="实付" align="center" prop="realAmount" /> <el-table-column label="实付" align="center" prop="realAmount" />
<el-table-column label="数量" align="center" prop="num" /> <el-table-column label="数量" align="center" prop="num" />
<el-table-column type="selection" width="55" :selectable="checkSelectable"/> <el-table-column type="selection" width="55" :selectable="checkSelectable" v-if="selectionTag"/>
</el-table> </el-table>
</el-form> </el-form>
<div v-show="refundTag" style="margin-top: 20px;" > <div v-show="refundTag" style="margin-top: 20px;" >
...@@ -147,6 +147,7 @@ export default { ...@@ -147,6 +147,7 @@ export default {
} }
}; };
return { return {
selectionTag:false,
refundTag:false, refundTag:false,
piovince, piovince,
// 总条数 // 总条数
...@@ -266,6 +267,7 @@ export default { ...@@ -266,6 +267,7 @@ export default {
}, },
//退款 //退款
refundClick(row){ refundClick(row){
this.selectionTag=true;
this.refundForm.refundAmount=""; this.refundForm.refundAmount="";
this.refundForm.desc=""; this.refundForm.desc="";
this.refundTag=true; this.refundTag=true;
...@@ -293,6 +295,7 @@ export default { ...@@ -293,6 +295,7 @@ export default {
}, },
/** 详情按钮操作 */ /** 详情按钮操作 */
handleUpdate(row) { handleUpdate(row) {
this.selectionTag=false;
this.refundTag=false; this.refundTag=false;
this.goodsList=[]; this.goodsList=[];
this.orderId= row.id; this.orderId= row.id;
......
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