更换正式环境,测试修改

This commit is contained in:
GaoHao
2025-03-25 21:49:33 +08:00
parent f01bc839f7
commit 7fe5d028e4
71 changed files with 930 additions and 2016 deletions

View File

@@ -41,7 +41,7 @@
</view>
</view>
<view class="u-flex-1 u-text-center" >
<view class="font-bold color-000 pr-16" >{{0}}</view>
<view class="font-bold color-000 pr-16" >{{data.couponNum||0}}</view>
<view class="u-flex u-row-center" >
<view class="color-999">优惠券</view>
<view class="u-flex">

View File

@@ -43,7 +43,6 @@
<view class="u-m-b-32" v-for="(item,index) in pageData.userList" :key="index">
<my-user @moreOperate="moreOperateClick" :index="index" :data="item" :showDetail="pageData.showGoodsDetail"></my-user>
</view>
<my-pagination @change="pageChange"></my-pagination>
</view>
<view class="fixed_b">
<my-button showShadow @tap="toAddUser" shape="circle">新建用户</my-button>
@@ -130,7 +129,7 @@
</view>
<view class="">
<input type="digit" v-model="datas.form.money" @change="datas.form.money = $utils.isPrice(datas.form.money)" placeholder="请输入金额" />
<input type="digit" v-model="datas.form.money" @change="datas.form.money = $utils.isMoney(datas.form.money)" placeholder="请输入金额" />
<view class="">
</view>
@@ -213,7 +212,6 @@
*/
async function getUser() {
const res = await shopUserList(pageData.query)
console.log(res)
if ( res ) {
if (res.pageNumber <= 1) {
pageData.userList = res.records
@@ -329,13 +327,6 @@
getAllShopInfo()
}
// 页数改变事件
function pageChange(page) {
console.log(page);
}
</script>
<style scoped>