From bd01373e31834fced6fb0484129d842217cb6667 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Wed, 06 Jan 2021 19:57:35 +0800
Subject: [PATCH] modify
---
zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html | 77 +++++++++++++++++++++++++-------------
1 files changed, 51 insertions(+), 26 deletions(-)
diff --git a/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html b/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html
index e196d78..fedb760 100644
--- a/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html
+++ b/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html
@@ -460,18 +460,25 @@
<el-col :span="5" style="text-align: center;">收款方式</el-col>
<el-col class="paymethod" :span="15">
<el-row>
- <ul style="border: #0c7cb5 1px dashed;">
- <li class="active">现金支付</li>
- <li>微信</li>
- <li>支付宝</li>
- <li>银行卡支付</li>
- <li>团购</li>
- </ul>
- </el-row>
- <el-row>
<ul>
- <li>会员储值卡</li>
- <li>欠款</li>
+ <span v-for="(item, index) in payMethods">
+ <el-popover
+ :disabled="item.type != 1"
+ placement="bottom"
+ trigger="click">
+ <el-row><span>选择</span></el-row>
+ <el-tree :data="moneyCards"
+ show-checkbox
+ default-expand-all
+ node-key="id"
+ ref="tree"
+ check-strictly
+ highlight-current
+ :props="defaultProps">
+ </el-tree>
+ <li :class="{active : item.isActive}" slot="reference" @click="payMethodSelect(item, index)">{{item.value}}</li>
+ </el-popover>
+ </span>
</ul>
</el-row>
</el-col>
@@ -494,6 +501,14 @@
<el-col :span="8"><el-input></el-input></el-col>
</el-row>
</el-col>
+ </el-row>
+
+ <el-row style="text-align: center; margin: 20px 0 10px 0">
+ <el-checkbox>打印小票</el-checkbox>
+ </el-row>
+
+ <el-row style="text-align: center; margin: 10px 0 0 0">
+ <el-button type="primary">确认收款</el-button>
</el-row>
</el-dialog>
@@ -541,24 +556,27 @@
currentVipInfo: {},
vipLoading: false,
payMethods: [{
- value: '现金',
- label: '现金'
+ value: '现金支付',
+ isActive: false
}, {
value: '微信',
- label: '微信'
+ isActive: false
}, {
value: '支付宝',
- label: '支付宝'
+ isActive: false
}, {
value: '银行卡',
- label: '银行卡'
+ isActive: false
}, {
- value: '美团',
- label: '美团'
+ value: '团购',
+ isActive: false
}, {
value: '会员卡',
- label: '会员卡',
- disabled: true,
+ isActive: false,
+ type: 1
+ }, {
+ value: '欠款',
+ isActive: false
},],
achieveList: [],
//会员可用的充值卡
@@ -581,6 +599,10 @@
/******搜索表格数据END********/
dialogSettleVisible : true,
+ defaultProps: {
+ children: 'children',
+ label: 'showLable'
+ }
},
@@ -658,7 +680,6 @@
}
});
-
},
methods: {
@@ -690,11 +711,6 @@
item.showLable = item.cardName + "-余额:" + (item.realMoney + item.giftMoney)
});
_this.moneyCards = data.rows;
- //启用会员卡支付方式
- _this.payMethods[5].disabled = false;
- } else {
- //禁用会员卡支付方式
- _this.payMethods[5].disabled = true;
}
}
@@ -1108,6 +1124,15 @@
},
+ payMethodSelect(item, index) {
+ this.$nextTick(function () {
+ if (item.isActive) {
+ Vue.set(item,'isActive',false);
+ } else {
+ Vue.set(item,'isActive',true);
+ }
+ });
+ }
}
})
--
Gitblit v1.9.1