|
@@ -22,6 +22,7 @@
|
|
|
<view class="searchInputBox">
|
|
|
<image src="../../static/img/icon_search.png" mode="" class="iconSimg"></image>
|
|
|
<input type="text" v-model="name" placeholder="订单号、手机号、联系人" class="searchInput" @confirm="searchCf">
|
|
|
+ <image @click="ssql" src="../../static/img/chahao.png" mode="" class="sschahao"></image>
|
|
|
</view>
|
|
|
<image @click="screenSHowBtn" src="../../static/img/icon_shai.png" mode="" class="iconShai"></image>
|
|
|
</view>
|
|
@@ -57,8 +58,13 @@
|
|
|
<view class="shopName">{{item.SheetContent}}</view>
|
|
|
<view style="color: #333333;font-size: 22rpx;">¥<span class="price">{{item.RealMoney}}</span></view>
|
|
|
</view>
|
|
|
-
|
|
|
+ <view class="renBox" v-if="item.SheetType==6">
|
|
|
+ <image src="../../static/img/icon_ren2.png" mode="" class="renimg"></image>
|
|
|
+ <view class="renMobilePhone">{{item.MobilePhone}}</view>
|
|
|
+ <view class="renNickName">{{item.NickName?item.NickName:''}}</view>
|
|
|
+ </view>
|
|
|
<view class="itemName">{{item.CreateTime}}</view>
|
|
|
+ <view class="itemName" style="padding-top: 2rpx;padding-bottom: 0;">{{item.ShopName}}</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
@@ -128,13 +134,14 @@
|
|
|
typeLineIndex:0,
|
|
|
sheetTypeList:'',
|
|
|
shopId:'',
|
|
|
+ mrshopId:'',
|
|
|
}
|
|
|
},
|
|
|
onLoad(opt) {
|
|
|
|
|
|
this.getData();
|
|
|
this.getShopinfo();
|
|
|
- this.getShopList();
|
|
|
+
|
|
|
},
|
|
|
onShow() {
|
|
|
console.log(this.tabIndex)
|
|
@@ -145,6 +152,9 @@
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
+ ssql(){
|
|
|
+ this.name=''
|
|
|
+ },
|
|
|
sub(){
|
|
|
this.screenSHow=false;
|
|
|
this.getData();
|
|
@@ -164,6 +174,9 @@
|
|
|
}else{
|
|
|
this.sheetTypeList=num
|
|
|
}
|
|
|
+ if(num==0){
|
|
|
+ this.sheetTypeList=''
|
|
|
+ }
|
|
|
},
|
|
|
screenSHowBtn(){
|
|
|
this.screenSHow=true;
|
|
@@ -185,8 +198,10 @@
|
|
|
},
|
|
|
getShopinfo(){
|
|
|
this.$http('openH5SetTheGuest/getShopInfo',{},'GET').then(res => {
|
|
|
- //this.shopName=res.data.shopName;
|
|
|
-
|
|
|
+ this.shopName=res.data.shopName;
|
|
|
+ this.mrshopId=this.shopId;
|
|
|
+ this.shopId=this.shopId
|
|
|
+ this.getShopList();
|
|
|
})
|
|
|
},
|
|
|
getShopList(){
|
|
@@ -196,7 +211,14 @@
|
|
|
},'GET').then(res => {
|
|
|
|
|
|
this.pickerarray=res.data;
|
|
|
- console.log(this.pickerarray[this.pickerindex])
|
|
|
+ /* this.pickerarray.forEach((item,index)=>{
|
|
|
+
|
|
|
+ if(this.mrshopId==item.id){
|
|
|
+ this.pickerindex=index;
|
|
|
+
|
|
|
+ }
|
|
|
+ }) */
|
|
|
+ //console.log(this.pickerarray[this.pickerindex])
|
|
|
})
|
|
|
},
|
|
|
goback(){
|
|
@@ -256,8 +278,8 @@
|
|
|
limit: 10,
|
|
|
sheetState: this.tabIndex > 0 ? this.tabIndex : '',
|
|
|
name:this.name,
|
|
|
- starCreateTime:this.date1,
|
|
|
- endCreateTime:this.date2,
|
|
|
+ starCreateTime:this.date1+ ' 00:00:00',
|
|
|
+ endCreateTime:this.date2+ ' 23:59:59',
|
|
|
sheetType:this.sheetTypeList,
|
|
|
shopName:this.shopId,
|
|
|
}
|
|
@@ -612,4 +634,27 @@
|
|
|
font-size: 24rpx;
|
|
|
padding-left: 20rpx;
|
|
|
}
|
|
|
+ .renBox{
|
|
|
+ color: #1A1A1A;
|
|
|
+ background: #F7F7F7;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ display: flex;
|
|
|
+ padding: 20rpx;font-size: 24rpx;
|
|
|
+ line-height: 30rpx;
|
|
|
+ margin-top: 16rpx;
|
|
|
+ }
|
|
|
+ .renimg{
|
|
|
+ width: 30rpx;height: 30rpx;
|
|
|
+ }
|
|
|
+ .renMobilePhone{
|
|
|
+ padding-left: 13rpx;
|
|
|
+ }
|
|
|
+ .renNickName{
|
|
|
+ padding-left: 20rpx;
|
|
|
+ }
|
|
|
+ .sschahao{
|
|
|
+ width: 40rpx;
|
|
|
+ height: 40rpx;
|
|
|
+ padding-top: 16rpx;
|
|
|
+ }
|
|
|
</style>
|