pos 端
This commit is contained in:
parent
0fcf535c1d
commit
5394e4969b
@ -56,7 +56,10 @@
|
|||||||
<view class="">微信扫码支付</view>
|
<view class="">微信扫码支付</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="qiu"></view>
|
<view class="qiu" v-if="memberId != 0" @click="getmemberId(0)"></view>
|
||||||
|
<view class="qiux" v-if="memberId == 0">
|
||||||
|
<u-icon name="checkmark" color="#fff" size="16"></u-icon>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="h-box">
|
<view class="h-box">
|
||||||
<view class="h-ds">
|
<view class="h-ds">
|
||||||
@ -66,7 +69,10 @@
|
|||||||
<view class="">支付宝扫码支付</view>
|
<view class="">支付宝扫码支付</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="qiu"></view>
|
<view class="qiu" v-if="memberId != 1" @click="getmemberId(1)"></view>
|
||||||
|
<view class="qiux" v-if="memberId == 1">
|
||||||
|
<u-icon name="checkmark" color="#fff" size="16"></u-icon>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="h-box">
|
<view class="h-box">
|
||||||
<view class="h-ds">
|
<view class="h-ds">
|
||||||
@ -76,7 +82,10 @@
|
|||||||
<view class="">银联扫码支付</view>
|
<view class="">银联扫码支付</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="qiu"></view>
|
<view class="qiu" v-if="memberId != 2" @click="getmemberId(2)"></view>
|
||||||
|
<view class="qiux" v-if="memberId == 2">
|
||||||
|
<u-icon name="checkmark" color="#fff" size="16"></u-icon>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="h-box">
|
<view class="h-box">
|
||||||
<view class="h-ds">
|
<view class="h-ds">
|
||||||
@ -86,7 +95,10 @@
|
|||||||
<view class="">现金支付</view>
|
<view class="">现金支付</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="qiu"></view>
|
<view class="qiu" v-if="memberId != 3" @click="getmemberId(3)"></view>
|
||||||
|
<view class="qiux" v-if="memberId == 3">
|
||||||
|
<u-icon name="checkmark" color="#fff" size="16"></u-icon>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="bottom-b"></view>
|
<view class="bottom-b"></view>
|
||||||
@ -107,6 +119,7 @@
|
|||||||
return {
|
return {
|
||||||
titles: "会员充值",
|
titles: "会员充值",
|
||||||
listindex: 0,
|
listindex: 0,
|
||||||
|
memberId: 0,
|
||||||
numList: [
|
numList: [
|
||||||
"50元",
|
"50元",
|
||||||
"100元",
|
"100元",
|
||||||
@ -115,14 +128,14 @@
|
|||||||
"1000元",
|
"1000元",
|
||||||
"自定义金额",
|
"自定义金额",
|
||||||
],
|
],
|
||||||
isChooseUser:false,
|
isChooseUser: false,
|
||||||
userId:"",
|
userId: "",
|
||||||
userInfo:"",
|
userInfo: "",
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(e) {
|
onLoad(e) {
|
||||||
this.userId = e.userId
|
this.userId = e.userId
|
||||||
if (e.userId){
|
if (e.userId) {
|
||||||
this.isChooseUser = true
|
this.isChooseUser = true
|
||||||
this.getUser()
|
this.getUser()
|
||||||
}
|
}
|
||||||
@ -145,6 +158,10 @@
|
|||||||
headers
|
headers
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
getmemberId(num) {
|
||||||
|
this.memberId = num
|
||||||
|
console.log(this.memberId);
|
||||||
|
},
|
||||||
// 获取用户信息
|
// 获取用户信息
|
||||||
getUser() {
|
getUser() {
|
||||||
request({
|
request({
|
||||||
@ -154,9 +171,9 @@
|
|||||||
this.userInfo = res.data
|
this.userInfo = res.data
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
goChooseUser(){
|
goChooseUser() {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url:"/pagesHome/searchVip/searchVip?type=1"
|
url: "/pagesHome/searchVip/searchVip?type=1"
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getindex(index) {
|
getindex(index) {
|
||||||
@ -377,4 +394,16 @@
|
|||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
border: 1px solid #333333;
|
border: 1px solid #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.qiux {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
border-radius: 50%;
|
||||||
|
border: 1px solid #0864e9;
|
||||||
|
background: #0864e9;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
Loading…
Reference in New Issue
Block a user