This commit is contained in:
wpf 2024-03-11 18:01:12 +08:00
parent 938a980186
commit 9a1b5ed211
3 changed files with 23 additions and 5 deletions

View File

@ -717,7 +717,7 @@
type_id: this.storeParam.type_id,
credit_buy: this.credit_buy,
}
rqData.street_id = this.storeParam.street_id;
// rqData.street_id = this.storeParam.street_id;
if(rqData.merchant_category_id==-1) delete rqData.merchant_category_id;
if (this.latitude) {
rqData.location = this.latitude + ',' + this.longitude
@ -915,7 +915,7 @@
}
if(!this.storeParam.is_recommend){
rqData.merchant_category_id = this.storeParam.merchant_category_id;
rqData.street_id = this.storeParam.street_id;
// rqData.street_id = this.storeParam.street_id;
}
if (this.latitude) {
rqData.location = this.latitude + ',' + this.longitude

View File

@ -62,7 +62,7 @@
<view class="phone" v-if="!userInfo.phone && isLogin" @tap="bindPhone">绑定手机号</view>
</view>
</view>
<!-- <view class="num-wrapper skeleton-rect">
<!-- <view class="num-wrapper skeleton-rect" style="padding-bottom: 30rpx;">
<view class="num-item" @click="goMenuPage('/pages/users/user_goods_collection/index')">
<text class="num">{{userInfo.total_collect_product || 0}}</text>
<view class="txt">我的收藏</view>
@ -86,7 +86,7 @@
</view>
</view> -->
<view class="packet_card">
<view class="p_d_item" @click="authTo('/pages/users/user_money/index')">
<!-- <view class="p_d_item" @click="authTo('/pages/users/user_money/index')">
<view class="p_d_count">
<image
src="https://lihai001.oss-cn-chengdu.aliyuncs.com/def/e41f4202401201745498894.png">
@ -103,7 +103,23 @@
<view>{{userInfo.red_pack_balance||"0.00"}}</view>
</view>
<view>补贴余额 ()</view>
</view>
</view> -->
<view class="p_d_item" @click="authTo('/pages/users/user_money/index')">
<view class="p_d_count" style="font-size: 34rpx;">
<image
src="https://lihai001.oss-cn-chengdu.aliyuncs.com/def/e41f4202401201745498894.png">
</image>
<view>我的余额 ()</view>
</view>
</view>
<view class="p_d_item" @click="authTo('/pages/users/user_money/index')">
<view class="p_d_count" style="font-size: 36rpx;">
<!-- <image
src="https://lihai001.oss-cn-chengdu.aliyuncs.com/def/d2868202401201750014779.png">
</image> -->
<view>{{userInfo.now_money||"0.00"}}</view>
</view>
</view>
</view>
<navigator hover-class="none"
:url="userInfo.is_svip > 0 ? '/pages/annex/vip_center/index' : '/pages/annex/vip_paid/index'"

View File

@ -24,6 +24,7 @@
<view class="table" v-if="list.length > 0">
<view class="table-title">
<view class="table-title-cell" style="width: 100rpx;">序号</view>
<view class="table-title-cell">用户名称</view>
<view class="table-title-cell">用户ID</view>
<view class="table-title-cell">状态</view>
@ -35,6 +36,7 @@
<view class="scrollView-wrap">
<block v-for="(item,index) in list" :key="index">
<view class="table-con">
<view class="table-con-cell" style="width: 100rpx;">{{index+1}}</view>
<view class="table-con-cell">{{item.real_name || '-'}}</view>
<view class="table-con-cell">{{item.uid}}</view>
<view class="table-con-cell">{{item.status == 0?'未入驻':'已入驻'}}</view>