2024-03-21 17:52:58 +08:00
|
|
|
<template>
|
|
|
|
<view>
|
|
|
|
<view class="store_content" :class="isShow?'on':''">
|
|
|
|
<view class="popup" :class="{ on: isShow }">
|
|
|
|
<scroll-view scroll-y="true">
|
|
|
|
<radio-group name="store_name" @change="changeStore">
|
|
|
|
<template v-for="item in storeList">
|
|
|
|
<div v-if="item.merchant" class="store-list">
|
|
|
|
<!-- <div class="invoice-list"> -->
|
|
|
|
<label :key="item.merchant.mer_id" class="acea-row row-middle">
|
|
|
|
<view class="text">
|
|
|
|
<view class="acea-row row-middle">
|
|
|
|
<image class="mer_logo" v-if="item.merchant.mer_avatar"
|
|
|
|
:src="item.merchant.mer_avatar" mode=""></image>
|
|
|
|
<view class="name line1">{{ item.merchant.mer_name }}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<radio class="radio" :value="item.merchant.mer_id.toString()" :checked="item.merchant.mer_id == id ? true : false" />
|
|
|
|
</label>
|
|
|
|
<!-- </div> -->
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</radio-group>
|
|
|
|
</scroll-view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class='mask' catchtouchmove="true" :hidden='!isShow' @tap='close'></view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script>
|
2024-03-21 18:05:36 +08:00
|
|
|
|
2024-03-21 17:52:58 +08:00
|
|
|
import {
|
|
|
|
getStoreList
|
|
|
|
} from '@/api/user.js';
|
|
|
|
export default {
|
|
|
|
props:['is_sys'],
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
isShow: false,
|
|
|
|
id: '',
|
|
|
|
storeList: [],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
},
|
|
|
|
mounted(){
|
|
|
|
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
isShowStore(){
|
|
|
|
this.isShow = !this.isShow;
|
|
|
|
},
|
|
|
|
close: function() {
|
|
|
|
this.$emit('changeStoreClose');
|
|
|
|
this.isShow = false;
|
|
|
|
},
|
|
|
|
changeStore(e) {
|
|
|
|
this.close()
|
|
|
|
this.getStoreName(e.detail.value)
|
|
|
|
uni.setStorageSync('serMerId',e.detail.value)
|
|
|
|
},
|
|
|
|
//获取店铺列表
|
|
|
|
getStoreList(parmas){
|
|
|
|
getStoreList(parmas).then(res => {
|
|
|
|
this.storeList = res.data;
|
|
|
|
let serMerId = this.is_sys !== '' ? null : uni.getStorageSync('serMerId')
|
|
|
|
let storeInfo = null;
|
|
|
|
let flag = false
|
|
|
|
this.storeList.forEach(item=>{
|
|
|
|
if(flag) return;
|
|
|
|
if(!serMerId){
|
|
|
|
if(this.is_sys && !item['merchant']['mer_id']){
|
|
|
|
storeInfo = item;
|
|
|
|
flag = true;
|
|
|
|
}else if(this.is_sys == '0' && item['merchant']['mer_id']){
|
|
|
|
storeInfo = item;
|
|
|
|
flag = true;
|
|
|
|
}
|
|
|
|
}else if(serMerId == item['merchant']['mer_id']){
|
|
|
|
storeInfo = item;
|
|
|
|
flag = true;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if(!storeInfo){
|
|
|
|
storeInfo = this.storeList[0]
|
|
|
|
}
|
|
|
|
this.id = storeInfo ? storeInfo['mer_id'] : ''
|
|
|
|
this.$emit('getStoreInfo', storeInfo['merchant'])
|
|
|
|
this.$emit('getService', storeInfo);
|
|
|
|
})
|
|
|
|
},
|
|
|
|
//根据店铺ID匹配店铺名
|
|
|
|
getStoreName(id){
|
|
|
|
for (let i = 0; i < this.storeList.length; i++) {
|
|
|
|
if (this.storeList[i]['merchant']['mer_id'] == id) {
|
|
|
|
this.$emit('getStoreInfo',this.storeList[i]['merchant']);
|
|
|
|
uni.setStorageSync('storeInfo', this.storeList[i]['merchant']);
|
|
|
|
this.$emit('getService',this.storeList[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.store_content{
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
left: 0;
|
|
|
|
background-color: #fff;
|
|
|
|
z-index: 77;
|
|
|
|
border-radius: 16rpx 16rpx 0 0;
|
|
|
|
padding-bottom: 60rpx;
|
|
|
|
transform: translate3d(0, 100%, 0);
|
|
|
|
transition: all .3s cubic-bezier(.25, .5, .5, .9);
|
|
|
|
}
|
|
|
|
.store_content.on {
|
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
}
|
|
|
|
.store_content .title {
|
|
|
|
font-size: 32rpx;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
height: 123rpx;
|
|
|
|
line-height: 123rpx;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.store_content .title .iconfont {
|
|
|
|
position: absolute;
|
|
|
|
right: 30rpx;
|
|
|
|
color: #8a8a8a;
|
|
|
|
font-size: 35rpx;
|
|
|
|
}
|
|
|
|
.store_content .store-list{
|
|
|
|
height: 120rpx;
|
|
|
|
line-height: 120rpx;
|
|
|
|
}
|
|
|
|
.store_content .store-list .mer_logo{
|
|
|
|
width: 60rpx;
|
|
|
|
height: 60rpx;
|
|
|
|
margin-right: 20rpx;
|
|
|
|
}
|
|
|
|
form {
|
|
|
|
font-size: 28rpx;
|
|
|
|
color: #282828;
|
|
|
|
}
|
|
|
|
form input,
|
|
|
|
form radio-group {
|
|
|
|
flex: 1;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
form input {
|
|
|
|
font-size: 26rpx;
|
|
|
|
}
|
|
|
|
form label {
|
|
|
|
margin-right: 50rpx;
|
|
|
|
}
|
|
|
|
form radio {
|
|
|
|
margin-right: 8rpx;
|
|
|
|
}
|
|
|
|
form checkbox-group {
|
|
|
|
height: 90rpx;
|
|
|
|
}
|
|
|
|
form checkbox {
|
|
|
|
margin-right: 20rpx;
|
|
|
|
}
|
|
|
|
form button {
|
|
|
|
height: 76rpx;
|
|
|
|
border-radius: 38rpx;
|
|
|
|
margin: 16rpx 30rpx;
|
|
|
|
background-color: #E93323;
|
|
|
|
font-size: 30rpx;
|
|
|
|
line-height: 76rpx;
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
.panel {
|
|
|
|
padding-right: 30rpx;
|
|
|
|
padding-left: 30rpx;
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
}
|
|
|
|
.panel~.panel {
|
|
|
|
margin-top: 14rpx;
|
|
|
|
}
|
|
|
|
.panel .acea-row {
|
|
|
|
height: 90rpx;
|
|
|
|
}
|
|
|
|
.panel .acea-row~.acea-row {
|
|
|
|
border-top: 1px solid #EEEEEE;
|
|
|
|
}
|
|
|
|
.input-placeholder {
|
|
|
|
font-size: 26rpx;
|
|
|
|
color: #BBBBBB;
|
|
|
|
}
|
|
|
|
.icon-xiangyou {
|
|
|
|
margin-left: 25rpx;
|
|
|
|
font-size: 18rpx;
|
|
|
|
color: #BFBFBF;
|
|
|
|
}
|
|
|
|
.btn-wrap {
|
|
|
|
width: 100%;
|
|
|
|
padding: 8px 16px;
|
|
|
|
border-top: 1px solid #F5F5F5;
|
|
|
|
}
|
|
|
|
.btn-wrap .back {
|
|
|
|
border: 1px solid #E93323;
|
|
|
|
background: none;
|
|
|
|
color: #E93323;
|
|
|
|
}
|
|
|
|
.popup {
|
|
|
|
width: 100%;
|
|
|
|
border-top-left-radius: 16rpx;
|
|
|
|
border-top-right-radius: 16rpx;
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.popup scroll-view {
|
|
|
|
height: 466rpx;
|
|
|
|
padding-right: 30rpx;
|
|
|
|
padding-left: 30rpx;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.popup .text {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
font-size: 28rpx;
|
|
|
|
color: #282828;
|
|
|
|
}
|
|
|
|
.popup .info {
|
|
|
|
margin-top: 10rpx;
|
|
|
|
font-size: 22rpx;
|
|
|
|
color: #909090;
|
|
|
|
}
|
|
|
|
.popup .icon-guanbi {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
right: 30rpx;
|
|
|
|
z-index: 2;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
font-size: 30rpx;
|
|
|
|
color: #707070;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.popup button {
|
|
|
|
height: 86rpx;
|
|
|
|
border-radius: 43rpx;
|
|
|
|
margin-right: 30rpx;
|
|
|
|
margin-left: 30rpx;
|
|
|
|
background-color: #E93323;
|
|
|
|
font-size: 30rpx;
|
|
|
|
line-height: 86rpx;
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
.popup .text .acea-row {
|
|
|
|
display: inline-flex;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
.popup .name {
|
|
|
|
flex: 1;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
font-size: 30rpx;
|
|
|
|
}
|
|
|
|
.popup .label {
|
|
|
|
width: 56rpx;
|
|
|
|
height: 28rpx;
|
|
|
|
border: 1px solid #E93323;
|
|
|
|
margin-left: 18rpx;
|
|
|
|
font-size: 20rpx;
|
|
|
|
line-height: 26rpx;
|
|
|
|
text-align: center;
|
|
|
|
color: #E93323;
|
|
|
|
}
|
|
|
|
.popup .type {
|
|
|
|
width: 124rpx;
|
|
|
|
height: 42rpx;
|
|
|
|
margin-top: 14rpx;
|
|
|
|
background-color: #FCF0E0;
|
|
|
|
font-size: 24rpx;
|
|
|
|
line-height: 42rpx;
|
|
|
|
text-align: center;
|
|
|
|
color: #D67300;
|
|
|
|
}
|
|
|
|
.popup .type.special {
|
|
|
|
background-color: #FDE9E7;
|
|
|
|
color: #E93323;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|