add
This commit is contained in:
parent
8722da95d4
commit
c3d84b87d3
|
@ -6,7 +6,7 @@
|
||||||
</template>
|
</template>
|
||||||
</up-navbar>
|
</up-navbar>
|
||||||
<view class="navbar">
|
<view class="navbar">
|
||||||
<view style="width: 500rpx;">
|
<view style="width: 400rpx;">
|
||||||
<up-search placeholder="请输入商品" @search="searchKeyword" @clear="searchKeyword" v-model="keyword"
|
<up-search placeholder="请输入商品" @search="searchKeyword" @clear="searchKeyword" v-model="keyword"
|
||||||
:showAction="false"></up-search>
|
:showAction="false"></up-search>
|
||||||
</view>
|
</view>
|
||||||
|
@ -14,6 +14,10 @@
|
||||||
<image src="@/static/tab/ba.png"></image>
|
<image src="@/static/tab/ba.png"></image>
|
||||||
<text>购物车</text>
|
<text>购物车</text>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="nav-item" @click="navTo('/pagesOrder/order/order?type=0')">
|
||||||
|
<image src="@/static/tab/ba.png"></image>
|
||||||
|
<text>我的订单</text>
|
||||||
|
</view>
|
||||||
<view class="nav-item" @click="navTo('/pages/my/my')">
|
<view class="nav-item" @click="navTo('/pages/my/my')">
|
||||||
<image src="@/static/tab/ca.png"></image>
|
<image src="@/static/tab/ca.png"></image>
|
||||||
<text>个人中心</text>
|
<text>个人中心</text>
|
||||||
|
@ -297,13 +301,13 @@
|
||||||
const goodClassList = ref([]); // 一级分类
|
const goodClassList = ref([]); // 一级分类
|
||||||
const goodClassTow = ref([]); // 二级分类
|
const goodClassTow = ref([]); // 二级分类
|
||||||
const goodClassThree = ref([]); // 三级分类
|
const goodClassThree = ref([]); // 三级分类
|
||||||
const classMap = new Map();
|
const classMap = new Map();
|
||||||
const getgoodClassList = (pid = 0) => {
|
const getgoodClassList = (pid = 0) => {
|
||||||
let page_no = classMap.get(pid) || 1;
|
let page_no = classMap.get(pid) || 1;
|
||||||
console.log(classMap.get(pid));
|
console.log(classMap.get(pid));
|
||||||
goodClassListApi({
|
goodClassListApi({
|
||||||
pid: pid,
|
pid: pid,
|
||||||
page_no: page_no,
|
page_no: page_no,
|
||||||
page_size: 30
|
page_size: 30
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (pid == 0) { // 加载一级分类时设置全部分类
|
if (pid == 0) { // 加载一级分类时设置全部分类
|
||||||
|
@ -372,8 +376,8 @@
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
page_no++;
|
page_no++;
|
||||||
classMap.set(pid, page_no);
|
classMap.set(pid, page_no);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -64,8 +64,8 @@
|
||||||
<view>¥{{item.sell}}</view>
|
<view>¥{{item.sell}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="tips">
|
<view class="tips">
|
||||||
<view>{{item.goods_unit}}</view>
|
<view>{{}}</view>
|
||||||
<view>x{{item.nums}}</view>
|
<view>x{{item.nums+item.goods_unit}}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="time">
|
<view class="time">
|
||||||
{{item.msg}}
|
{{item.msg}}
|
||||||
|
|
|
@ -25,7 +25,7 @@ const useUserStore = defineStore("user", () => {
|
||||||
|
|
||||||
// #ifdef H5
|
// #ifdef H5
|
||||||
|
|
||||||
token.value = "356b6f0615184692de99df42b9329749"
|
token.value = "0bb8817664d817e9e881500cc2631ef8"
|
||||||
// token.value = "95b24dd6d2dda836fe07854b08ba0944"
|
// token.value = "95b24dd6d2dda836fe07854b08ba0944"
|
||||||
userInfo.value = {
|
userInfo.value = {
|
||||||
avatar: "https://lihaiim.oss-cn-chengdu.aliyuncs.com/image/admin/default_avatar.png",
|
avatar: "https://lihaiim.oss-cn-chengdu.aliyuncs.com/image/admin/default_avatar.png",
|
||||||
|
@ -35,7 +35,7 @@ const useUserStore = defineStore("user", () => {
|
||||||
mobile: "19330904744",
|
mobile: "19330904744",
|
||||||
nickname: "用户1714964250",
|
nickname: "用户1714964250",
|
||||||
supplier: null,
|
supplier: null,
|
||||||
token: "356b6f0615184692de99df42b9329749"
|
token: "0bb8817664d817e9e881500cc2631ef8"
|
||||||
}
|
}
|
||||||
// #endif
|
// #endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue