删除部分图片,增加超级会员页面功能

This commit is contained in:
2025-12-02 15:56:41 +08:00
parent 4faa482380
commit da321e3afc
81 changed files with 4395 additions and 712 deletions

View File

@@ -14,6 +14,7 @@
</view>
<up-switch
v-model="form.isEnable"
:disabled="isMainShop()?false:true"
size="18"
:active-value="1"
:inactive-value="0"
@@ -99,7 +100,7 @@
<button class="add u-m-t-32" @click="addcashbackStepList">添加</button>
</view>
<my-bottom-btn-group @save="save" @cancel="cancel"></my-bottom-btn-group>
<my-bottom-btn-group @save="save" isOpenPermission @cancel="cancel"></my-bottom-btn-group>
</view>
</template>
@@ -107,6 +108,7 @@
import { reactive, computed, onMounted } from "vue";
import userTypes from "./user-types.vue";
import * as consumeCashbackApi from "@/http/api/market/consumeCashback.js";
import { isMainShop } from "@/store/account";
import {
onLoad,
onReady,

View File

@@ -10,6 +10,7 @@
</view>
<view class="u-flex-1 u-p-l-16">
<up-search bgColor="#F9F9F9" height="60rpx" :showAction="false" placeholder="搜索订单号"
@search="search" @clear="search" v-model="searchText"></up-search>
</view>
</view>
@@ -22,7 +23,7 @@
<view class="color-999 u-font-24">
<view> 关联订单:{{ item.orderNo }} </view>
<view class="u-m-t-14">
<text class="color-333 font-bold"> {{ item.shopName }}</text>
<text class="color-333 font-bold u-m-r-20"> {{ item.shopName }}</text>
<text class="color-666 u-font-24">{{ item.createTime }}</text>
</view>
</view>
@@ -33,8 +34,8 @@
</view>
<view class="color-333 u-flex u-row-between u-font-28" style="margin-top: 52rpx">
<view>
<view class="color-666">用户昵称</view>
<view class="color-333 u-m-t-24 u-line-1">{{ item.nickName }}</view>
<view class="color-666">{{ item.nickName }}</view>
<view class="color-333 u-m-t-24 u-line-1">{{ item.phone }}</view>
</view>
<view class="u-flex u-text-center">
<view>
@@ -69,6 +70,7 @@
onReachBottom,
onBackPress,
} from "@dcloudio/uni-app";
import { isMainShop } from "@/store/account.js";
import {
ref,
onMounted,