|
@@ -10,7 +10,7 @@
|
|
confirm-type="search"
|
|
confirm-type="search"
|
|
v-model="listQuery.keyWord"
|
|
v-model="listQuery.keyWord"
|
|
@input="onShowClose"
|
|
@input="onShowClose"
|
|
- @confirm="GetProductListInfo"
|
|
|
|
|
|
+ @confirm="getUserClubVisitorList"
|
|
placeholder="搜索关键词"
|
|
placeholder="搜索关键词"
|
|
maxlength="16"
|
|
maxlength="16"
|
|
/>
|
|
/>
|
|
@@ -34,7 +34,7 @@
|
|
<view class="tui-remarks-name-ri">
|
|
<view class="tui-remarks-name-ri">
|
|
<view
|
|
<view
|
|
class="checkbox iconfont"
|
|
class="checkbox iconfont"
|
|
- :class="[list.ischecked ? 'icon-yixuanze' : 'icon-weixuanze']"
|
|
|
|
|
|
+ :class="[checkedIndex == index ? 'icon-yixuanze' : 'icon-weixuanze']"
|
|
>
|
|
>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -52,7 +52,7 @@
|
|
<view class="tui-popup-box clearfix">
|
|
<view class="tui-popup-box clearfix">
|
|
<view class="tui-right-flex tui-popup-btn" :style="{ paddingBottom: isIphoneX ? '68rpx' : '34rpx' }">
|
|
<view class="tui-right-flex tui-popup-btn" :style="{ paddingBottom: isIphoneX ? '68rpx' : '34rpx' }">
|
|
<view class="tui-flex-1">
|
|
<view class="tui-flex-1">
|
|
- <view class="tui-button" @click="handleShowClubpopup">下一步</view>
|
|
|
|
|
|
+ <view class="tui-button" @click="handleShowClubpopup" v-if="!isEmpty">下一步</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -100,6 +100,7 @@ export default {
|
|
}
|
|
}
|
|
],
|
|
],
|
|
totalRecord: 0,
|
|
totalRecord: 0,
|
|
|
|
+ questionManId:'',
|
|
popupShow: true,
|
|
popupShow: true,
|
|
popupShow1: false,
|
|
popupShow1: false,
|
|
listQuery: Object.assign({}, defaultListQuery),
|
|
listQuery: Object.assign({}, defaultListQuery),
|
|
@@ -116,7 +117,7 @@ export default {
|
|
modalType: 1,
|
|
modalType: 1,
|
|
checkedIndex: 0,
|
|
checkedIndex: 0,
|
|
isClubModalShow: false,
|
|
isClubModalShow: false,
|
|
- isClubpopupShow: false
|
|
|
|
|
|
+ isClubpopupShow: false,
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onLoad() {},
|
|
onLoad() {},
|
|
@@ -136,9 +137,9 @@ export default {
|
|
async initGetStotage() {
|
|
async initGetStotage() {
|
|
const userInfo = await this.$api.getStorage()
|
|
const userInfo = await this.$api.getStorage()
|
|
this.listQuery.serviceProviderId = userInfo.serviceProviderId ? userInfo.serviceProviderId : 0
|
|
this.listQuery.serviceProviderId = userInfo.serviceProviderId ? userInfo.serviceProviderId : 0
|
|
- this.GetProductListInfo()
|
|
|
|
|
|
+ this.getUserClubVisitorList()
|
|
},
|
|
},
|
|
- GetProductListInfo() {
|
|
|
|
|
|
+ getUserClubVisitorList() {
|
|
this.remarksList = []
|
|
this.remarksList = []
|
|
this.listQuery.pageNum = 1
|
|
this.listQuery.pageNum = 1
|
|
this.UserService.getUserClubVisitorList(this.listQuery)
|
|
this.UserService.getUserClubVisitorList(this.listQuery)
|
|
@@ -234,7 +235,7 @@ export default {
|
|
} else {
|
|
} else {
|
|
this.isShowClose = false
|
|
this.isShowClose = false
|
|
this.listQuery.pageNum = 1
|
|
this.listQuery.pageNum = 1
|
|
- this.GetProductListInfo()
|
|
|
|
|
|
+ this.getUserClubVisitorList()
|
|
}
|
|
}
|
|
},
|
|
},
|
|
delInputText() {
|
|
delInputText() {
|
|
@@ -242,19 +243,13 @@ export default {
|
|
this.listQuery.keyWord = ''
|
|
this.listQuery.keyWord = ''
|
|
this.isShowClose = false
|
|
this.isShowClose = false
|
|
this.listQuery.pageNum = 1
|
|
this.listQuery.pageNum = 1
|
|
- this.GetProductListInfo()
|
|
|
|
|
|
+ this.getUserClubVisitorList()
|
|
},
|
|
},
|
|
checkedCoustomer(list,idx) {
|
|
checkedCoustomer(list,idx) {
|
|
// 选择机构
|
|
// 选择机构
|
|
this.checkedIndex = idx
|
|
this.checkedIndex = idx
|
|
- this.remarksList.forEach((el, index) => {
|
|
|
|
- if (this.checkedIndex == index) {
|
|
|
|
- el.ischecked = !el.ischecked
|
|
|
|
- this.questionManId = el.questionManId
|
|
|
|
- } else {
|
|
|
|
- el.ischecked = false
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
|
|
+ this.questionManId = list.questionManId
|
|
|
|
+ console.log('questionManId',this.questionManId)
|
|
},
|
|
},
|
|
},
|
|
},
|
|
onPageScroll(e) {
|
|
onPageScroll(e) {
|
|
@@ -446,6 +441,9 @@ page {
|
|
font-size: $font-size-28;
|
|
font-size: $font-size-28;
|
|
border-radius: 44rpx;
|
|
border-radius: 44rpx;
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
|
|
+ &.none{
|
|
|
|
+ background: #E1E1E1;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
.tui-button-text {
|
|
.tui-button-text {
|
|
width: 600rpx;
|
|
width: 600rpx;
|