|
|
@@ -132,9 +132,9 @@
|
|
|
<button class="admin-button-com blue mini-btn" @tap="amendMoney">确定</button>
|
|
|
</tui-list-cell>
|
|
|
|
|
|
- <tui-list-cell class="line-cell" :hover="true" :arrow="true">
|
|
|
+ <tui-list-cell class="line-cell" :hover="true" :arrow="true" @click="changeLevelPrice()">
|
|
|
<div class="tui-title">享受价格</div>
|
|
|
- <view class="tui-input" @click="changeLevelPrice()" style="text-align:center;">{{ form.level == 0 ? '零售价':form.level == 1 ? '批发价':form.level == 2 ? '大客价':'-' }}</view>
|
|
|
+ <view class="tui-input" style="text-align:center;">{{ form.level == 0 ? '零售价':form.level == 1 ? '批发价':form.level == 2 ? '大客价':'-' }}</view>
|
|
|
</tui-list-cell>
|
|
|
|
|
|
<tui-list-cell class="line-cell" :hover="false">
|
|
|
@@ -183,6 +183,11 @@
|
|
|
<button class="admin-button-com blue mini-btn" @tap="createSeatSn" style="margin-left:10upx;">自动生成</button>
|
|
|
</tui-list-cell>
|
|
|
|
|
|
+ <tui-list-cell class="line-cell" :hover="true" :arrow="true" @click="changeIntroducer()">
|
|
|
+ <div class="tui-title">介绍人</div>
|
|
|
+ <view class="tui-input">{{ form.staffName }}</view>
|
|
|
+ </tui-list-cell>
|
|
|
+
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
@@ -268,7 +273,9 @@ export default {
|
|
|
showStock:0,
|
|
|
passStatus:0,
|
|
|
wlId:0,
|
|
|
- level:1
|
|
|
+ level:1,
|
|
|
+ staffName:'',
|
|
|
+ staffId:0
|
|
|
},
|
|
|
wlSelData: {},
|
|
|
discount:null,
|
|
|
@@ -404,6 +411,9 @@ export default {
|
|
|
},
|
|
|
showNum(info){
|
|
|
this.$msg("消费"+info.buyNum+"次")
|
|
|
+ },
|
|
|
+ changeIntroducer(){
|
|
|
+
|
|
|
},
|
|
|
changeLevelPrice(){
|
|
|
const that = this;
|
|
|
@@ -606,6 +616,8 @@ export default {
|
|
|
this.form.black = this.userInfo.black
|
|
|
this.form.showStock = this.userInfo.showStock
|
|
|
this.form.passStatus = this.userInfo.passStatus
|
|
|
+ this.form.staffId = this.userInfo.staffId
|
|
|
+ this.form.staffName = this.userInfo.staffName
|
|
|
this.discount = parseFloat(res.data.discount)
|
|
|
if(res.data.remainDebtAmount && Number(res.data.remainDebtAmount)>0){
|
|
|
let name = res.data.name && !this.$util.isEmpty(res.data.name) ? res.data.name+' 待结金额' : '待结金额'
|