Merge branch 'master' of http://154.8.193.216:3030/admin1/jiangchengfeiyi-xiaochengxu
# Conflicts: # unpackage/dist/dev/mp-weixin/project.config.json
This commit is contained in:
commit
42f2d8d6b5
pages/mine/mineorders
unpackage/dist/dev/mp-weixin
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<view class="flex-row relative page">
|
||||
<!-- <view class="flex-row relative page">
|
||||
<view class="aaa">
|
||||
<view class="bbb">
|
||||
<view class="ccc"
|
||||
|
@ -27,7 +27,34 @@
|
|||
:src="add_img" />
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view> -->
|
||||
<template>
|
||||
<!-- <view v-for="zhuangtai in Status.orders" :key="zhuangtai.id">
|
||||
{{zhuangtai.orderStatus}}
|
||||
</view> -->
|
||||
<view class="container">
|
||||
<view class="order-tabs">
|
||||
<view class="tab-item" :class="{active: orderStatus === '全部'}" @click="changeTab('全部')">全部</view>
|
||||
<view class="tab-item" :class="{active: orderStatus === '代支付'}" @click="changeTab('代支付')">代支付</view>
|
||||
<view class="tab-item" :class="{active: orderStatus === '代发货'}" @click="changeTab('代发货')">代发货</view>
|
||||
<view class="tab-item" :class="{active: orderStatus === '已发货'}" @click="changeTab('已发货')">已发货</view>
|
||||
<view class="tab-item" :class="{active: orderStatus === '售后'}" @click="changeTab('售后')">售后</view>
|
||||
</view>
|
||||
<view class="order-list">
|
||||
<view v-for="order in Status.orders" :key="order.id" class="order-item">
|
||||
<view v-for="item in order.orderItemList" :key="item.id">
|
||||
{{ item.goodSnapshot.name }}
|
||||
</view>
|
||||
<view v-for="item in order.orderItemList" :key="item.id">
|
||||
{{ item.goodSnapshot.type }}
|
||||
</view>
|
||||
<view v-for="item in order.orderItemList" :key="item.id">
|
||||
{{ item.goodSnapshot.price }}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
@ -51,7 +78,71 @@ const productList = ref([{}]) //类别下对应的商品
|
|||
onMounted( async () => {
|
||||
await Getsort()
|
||||
await changeTypes( sort.value[0] , 0 )
|
||||
await Getorder()
|
||||
Status.displayedOrders = Status.orders;
|
||||
})
|
||||
const userInfo=ref({
|
||||
userInfo:wx.getStorageSync('userInfo')
|
||||
})
|
||||
const Getorder = async () => {
|
||||
const res = await uni.request({
|
||||
url: baseUrl + '/order/list',
|
||||
method: 'POST',
|
||||
data: {
|
||||
// id:userInfo.value.userInfo.id ,
|
||||
id:215
|
||||
}
|
||||
})
|
||||
if (res.data.code === 1) {
|
||||
Status.value.orders=res.data.data;
|
||||
for(let key in res.data.data){
|
||||
Status.value.orders[key]=res.data.data[key]
|
||||
}
|
||||
console.log(Status.value.orders[0].orderStatus)//待支付
|
||||
console.log(res.data.data[0].orderStatus)//待支付
|
||||
}else{
|
||||
console.log("没拿到用户数据")
|
||||
}
|
||||
};
|
||||
//订单类别
|
||||
const Status =ref({
|
||||
orderStatus: '全部',
|
||||
orders:[
|
||||
{
|
||||
|
||||
}
|
||||
],
|
||||
|
||||
displayedOrders: []
|
||||
})
|
||||
const changeTab = (tab) => {
|
||||
// for(let key in Status.value.orders){
|
||||
// tab[key]={
|
||||
// Status.value.orders[key].orderStatus
|
||||
// }
|
||||
// }
|
||||
// Status.value.orders.orderStatus = tab;
|
||||
if (tab === '全部') {
|
||||
Status.value.displayedOrders = Status.value.orders;
|
||||
} else {
|
||||
Status.value.displayedOrders = Status.value.orders.filter(order => {
|
||||
switch (tab) {
|
||||
case '待支付':
|
||||
return order.orderStatus === '代支付';
|
||||
case '代发货':
|
||||
return order.orderStatus === '代发货';
|
||||
case '已发货':
|
||||
return order.orderStatus === '已发货';
|
||||
case '售后':
|
||||
return order.orderStatus === '售后';
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
//console.log(userInfo.value.userInfo.id)//216
|
||||
//获取商品分类
|
||||
const Getsort = async ()=>{
|
||||
const res = await uni.request({
|
||||
|
@ -112,199 +203,229 @@ const goToProduct = (item) => {
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.navbar {
|
||||
background-color: #333;
|
||||
color: #fff;
|
||||
padding: 10px;
|
||||
}
|
||||
.bbb {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.ccc {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin: 20rpx;
|
||||
}
|
||||
.eee {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
.ddd {
|
||||
font-size: 14px;
|
||||
}
|
||||
.flex-row {
|
||||
display: flex;
|
||||
}
|
||||
.flex-item {
|
||||
flex: 1;
|
||||
}
|
||||
.ml-15 {
|
||||
margin-left: 28.13rpx;
|
||||
}
|
||||
.ml-3 {
|
||||
margin-left: 5.63rpx;
|
||||
}
|
||||
.mt-3 {
|
||||
margin-top: 5.63rpx;
|
||||
text-align: center;
|
||||
}
|
||||
.mt-13 {
|
||||
margin-top: 17.38rpx;
|
||||
}
|
||||
.mt-5 {
|
||||
margin-top: 9.38rpx;
|
||||
}
|
||||
.page {
|
||||
background-color: #f5f5dc;
|
||||
// height: 1413.75rpx;
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
}
|
||||
.section {
|
||||
padding: 22.5rpx 39.28rpx 16.88rpx;
|
||||
background-color: #f7de98;
|
||||
}
|
||||
.pos_8 {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
}
|
||||
.text {
|
||||
color: #c1651a;
|
||||
font-size: 37.5rpx;
|
||||
font-family: STFangsong;
|
||||
line-height: 36.19rpx;
|
||||
}
|
||||
.section_2 {
|
||||
padding: 5.63rpx 15rpx 8.44rpx;
|
||||
background-color: #ffffff;
|
||||
border-radius: 28.13rpx;
|
||||
height: 63.75rpx;
|
||||
width: 500.69rpx;
|
||||
}
|
||||
.image {
|
||||
width: 50.63rpx;
|
||||
height: 50.63rpx;
|
||||
}
|
||||
.text-wrapper {
|
||||
margin-right: 17.42rpx;
|
||||
}
|
||||
.font {
|
||||
font-size: 26.25rpx;
|
||||
font-family: STFangsong;
|
||||
line-height: 18rpx;
|
||||
color: #ff0000;
|
||||
}
|
||||
.image-wrapper {
|
||||
background-color: #ffffff;
|
||||
border-radius: 28.13rpx;
|
||||
overflow: hidden;
|
||||
border: solid 9.38rpx #ffffff;
|
||||
}
|
||||
.pos_1 {
|
||||
position: absolute;
|
||||
left: 22.5rpx;
|
||||
right: 24.38rpx;
|
||||
top: 118.13rpx;
|
||||
}
|
||||
.image_2 {
|
||||
width: 91.25vw;
|
||||
height: 37.5vw;
|
||||
// .navbar {
|
||||
// background-color: #333;
|
||||
// color: #fff;
|
||||
// padding: 10px;
|
||||
// }
|
||||
// .bbb {
|
||||
// display: flex;
|
||||
// align-items: center;
|
||||
// }
|
||||
// .ccc {
|
||||
// display: flex;
|
||||
// flex-direction: column;
|
||||
// align-items: center;
|
||||
// margin: 20rpx;
|
||||
// }
|
||||
// .eee {
|
||||
// width: 30px;
|
||||
// height: 30px;
|
||||
// }
|
||||
// .ddd {
|
||||
// font-size: 14px;
|
||||
// }
|
||||
// .flex-row {
|
||||
// display: flex;
|
||||
// }
|
||||
// .flex-item {
|
||||
// flex: 1;
|
||||
// }
|
||||
// .ml-15 {
|
||||
// margin-left: 28.13rpx;
|
||||
// }
|
||||
// .ml-3 {
|
||||
// margin-left: 5.63rpx;
|
||||
// }
|
||||
// .mt-3 {
|
||||
// margin-top: 5.63rpx;
|
||||
// text-align: center;
|
||||
// }
|
||||
// .mt-13 {
|
||||
// margin-top: 17.38rpx;
|
||||
// }
|
||||
// .mt-5 {
|
||||
// margin-top: 9.38rpx;
|
||||
// }
|
||||
// .page {
|
||||
// background-color: #f5f5dc;
|
||||
// // height: 1413.75rpx;
|
||||
// width: 100%;
|
||||
// overflow-y: auto;
|
||||
// overflow-x: hidden;
|
||||
// height: 100vh;
|
||||
// overflow: hidden;
|
||||
// }
|
||||
// .section {
|
||||
// padding: 22.5rpx 39.28rpx 16.88rpx;
|
||||
// background-color: #f7de98;
|
||||
// }
|
||||
// .pos_8 {
|
||||
// position: absolute;
|
||||
// left: 0;
|
||||
// right: 0;
|
||||
// top: 0;
|
||||
// }
|
||||
// .text {
|
||||
// color: #c1651a;
|
||||
// font-size: 37.5rpx;
|
||||
// font-family: STFangsong;
|
||||
// line-height: 36.19rpx;
|
||||
// }
|
||||
// .section_2 {
|
||||
// padding: 5.63rpx 15rpx 8.44rpx;
|
||||
// background-color: #ffffff;
|
||||
// border-radius: 28.13rpx;
|
||||
// height: 63.75rpx;
|
||||
// width: 500.69rpx;
|
||||
// }
|
||||
// .image {
|
||||
// width: 50.63rpx;
|
||||
// height: 50.63rpx;
|
||||
// }
|
||||
// .text-wrapper {
|
||||
// margin-right: 17.42rpx;
|
||||
// }
|
||||
// .font {
|
||||
// font-size: 26.25rpx;
|
||||
// font-family: STFangsong;
|
||||
// line-height: 18rpx;
|
||||
// color: #ff0000;
|
||||
// }
|
||||
// .image-wrapper {
|
||||
// background-color: #ffffff;
|
||||
// border-radius: 28.13rpx;
|
||||
// overflow: hidden;
|
||||
// border: solid 9.38rpx #ffffff;
|
||||
// }
|
||||
// .pos_1 {
|
||||
// position: absolute;
|
||||
// left: 22.5rpx;
|
||||
// right: 24.38rpx;
|
||||
// top: 118.13rpx;
|
||||
// }
|
||||
// .image_2 {
|
||||
// width: 91.25vw;
|
||||
// height: 37.5vw;
|
||||
// }
|
||||
|
||||
// .group {
|
||||
// margin: auto;
|
||||
// width: 137.81rpx;
|
||||
// }
|
||||
// //类别列表
|
||||
// .list-item {
|
||||
// padding: 11.25rpx 0 9.94rpx;
|
||||
// background-color: #fffef8;
|
||||
// border-radius: 9.38rpx;
|
||||
// }
|
||||
// .list-item:first-child {
|
||||
// margin-top: 0;
|
||||
// }
|
||||
// .image_3 {
|
||||
// border-radius: 0rpx 9.38rpx 9.38rpx 0rpx;
|
||||
// width: 60rpx;
|
||||
// height: 60rpx;
|
||||
// }
|
||||
// .font_4 {
|
||||
// font-size: 25rpx;
|
||||
// font-family: STFangsong;
|
||||
// line-height: 28.26rpx;
|
||||
// color: #c1651a;
|
||||
// }
|
||||
// .section_4 {
|
||||
// padding-bottom: 879.38rpx;
|
||||
// background-color: #f8e8c1;
|
||||
// border-radius: 0rpx 18.75rpx 0rpx 0rpx;
|
||||
// width: 600.13rpx;
|
||||
// }
|
||||
// .pos_4 {
|
||||
// position: absolute;
|
||||
// right: 0;
|
||||
// top: 440.63rpx;
|
||||
// }
|
||||
// .section_5 {
|
||||
// padding: 18.06rpx 16.24rpx 14.94rpx;
|
||||
// background-color: #fffef8;
|
||||
// border-radius: 0rpx 18.75rpx 0rpx 0rpx;
|
||||
// width: 598.13rpx;
|
||||
// }
|
||||
// .font_2 {
|
||||
// font-size: 30rpx;
|
||||
// font-family: STFangsong;
|
||||
// line-height: 28.26rpx;
|
||||
// color: #000000;
|
||||
// }
|
||||
// .font_3 {
|
||||
// font-size: 22.5rpx;
|
||||
// font-family: STFangsong;
|
||||
// line-height: 21.56rpx;
|
||||
// color: #727272;
|
||||
// }
|
||||
// .text_3 {
|
||||
// line-height: 21.15rpx;
|
||||
// }
|
||||
// .pos_5 {
|
||||
// position: absolute;
|
||||
// top: 120rpx;
|
||||
// width: 95%;
|
||||
// margin: 2.5%;
|
||||
// }
|
||||
// .section_9 {
|
||||
// padding: 20.63rpx 22.88rpx 22.5rpx;
|
||||
// background-color: #fffef8;
|
||||
// border-radius: 9.38rpx;
|
||||
// right: 13.13rpx;
|
||||
// }
|
||||
// .list-item_2:first-child {
|
||||
// margin-top: 0;
|
||||
// }
|
||||
// .image_4 {
|
||||
// border-radius: 9.38rpx;
|
||||
// width: 131.25rpx;
|
||||
// height: 131.25rpx;
|
||||
// }
|
||||
// .group_3 {
|
||||
// margin-left: 24.84rpx;
|
||||
// }
|
||||
// .text_5 {
|
||||
// line-height: 28.65rpx;
|
||||
// }
|
||||
// .image_5 {
|
||||
// margin: 75rpx 5.63rpx 0 107.96rpx;
|
||||
// border-radius: 9.38rpx;
|
||||
// width: 56.25rpx;
|
||||
// height: 56.25rpx;
|
||||
// }
|
||||
.container {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.group {
|
||||
margin: auto;
|
||||
width: 137.81rpx;
|
||||
.order-tabs {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
background-color: #f5f5f5;
|
||||
padding: 10px 0;
|
||||
}
|
||||
//类别列表
|
||||
.list-item {
|
||||
padding: 11.25rpx 0 9.94rpx;
|
||||
background-color: #fffef8;
|
||||
border-radius: 9.38rpx;
|
||||
|
||||
.tab-item {
|
||||
cursor: pointer;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
.list-item:first-child {
|
||||
margin-top: 0;
|
||||
|
||||
.tab-item.active {
|
||||
color: blue;
|
||||
border-bottom: 2px solid blue;
|
||||
}
|
||||
.image_3 {
|
||||
border-radius: 0rpx 9.38rpx 9.38rpx 0rpx;
|
||||
width: 60rpx;
|
||||
height: 60rpx;
|
||||
|
||||
.order-list {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.font_4 {
|
||||
font-size: 25rpx;
|
||||
font-family: STFangsong;
|
||||
line-height: 28.26rpx;
|
||||
color: #c1651a;
|
||||
}
|
||||
.section_4 {
|
||||
padding-bottom: 879.38rpx;
|
||||
background-color: #f8e8c1;
|
||||
border-radius: 0rpx 18.75rpx 0rpx 0rpx;
|
||||
width: 600.13rpx;
|
||||
}
|
||||
.pos_4 {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 440.63rpx;
|
||||
}
|
||||
.section_5 {
|
||||
padding: 18.06rpx 16.24rpx 14.94rpx;
|
||||
background-color: #fffef8;
|
||||
border-radius: 0rpx 18.75rpx 0rpx 0rpx;
|
||||
width: 598.13rpx;
|
||||
}
|
||||
.font_2 {
|
||||
font-size: 30rpx;
|
||||
font-family: STFangsong;
|
||||
line-height: 28.26rpx;
|
||||
color: #000000;
|
||||
}
|
||||
.font_3 {
|
||||
font-size: 22.5rpx;
|
||||
font-family: STFangsong;
|
||||
line-height: 21.56rpx;
|
||||
color: #727272;
|
||||
}
|
||||
.text_3 {
|
||||
line-height: 21.15rpx;
|
||||
}
|
||||
.pos_5 {
|
||||
position: absolute;
|
||||
top: 120rpx;
|
||||
width: 95%;
|
||||
margin: 2.5%;
|
||||
}
|
||||
.section_9 {
|
||||
padding: 20.63rpx 22.88rpx 22.5rpx;
|
||||
background-color: #fffef8;
|
||||
border-radius: 9.38rpx;
|
||||
right: 13.13rpx;
|
||||
}
|
||||
.list-item_2:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
.image_4 {
|
||||
border-radius: 9.38rpx;
|
||||
width: 131.25rpx;
|
||||
height: 131.25rpx;
|
||||
}
|
||||
.group_3 {
|
||||
margin-left: 24.84rpx;
|
||||
}
|
||||
.text_5 {
|
||||
line-height: 28.65rpx;
|
||||
}
|
||||
.image_5 {
|
||||
margin: 75rpx 5.63rpx 0 107.96rpx;
|
||||
border-radius: 9.38rpx;
|
||||
width: 56.25rpx;
|
||||
height: 56.25rpx;
|
||||
|
||||
.order-item {
|
||||
border: 1px solid #ccc;
|
||||
padding: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
@import url(../../../common/css/global.css);
|
||||
</style>
|
|
@ -54,5 +54,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-e4e4508d"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-e4e4508d"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/login/login.vue"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../../common/vendor.js");
|
||||
const api_request = require("../../../api/request.js");
|
||||
const common_assets = require("../../../common/assets.js");
|
||||
if (!Array) {
|
||||
const _component_template = common_vendor.resolveComponent("template");
|
||||
_component_template();
|
||||
}
|
||||
const _sfc_main = {
|
||||
__name: "mineorders",
|
||||
setup(__props) {
|
||||
|
@ -12,7 +15,59 @@ const _sfc_main = {
|
|||
common_vendor.onMounted(async () => {
|
||||
await Getsort();
|
||||
await changeTypes(sort.value[0], 0);
|
||||
await Getorder();
|
||||
Status.displayedOrders = Status.orders;
|
||||
});
|
||||
common_vendor.ref({
|
||||
userInfo: common_vendor.wx$1.getStorageSync("userInfo")
|
||||
});
|
||||
const Getorder = async () => {
|
||||
const res = await common_vendor.index.request({
|
||||
url: api_request.baseUrl + "/order/list",
|
||||
method: "POST",
|
||||
data: {
|
||||
// id:userInfo.value.userInfo.id ,
|
||||
id: 215
|
||||
}
|
||||
});
|
||||
if (res.data.code === 1) {
|
||||
Status.value.orders = res.data.data;
|
||||
for (let key in res.data.data) {
|
||||
Status.value.orders[key] = res.data.data[key];
|
||||
}
|
||||
console.log(Status.value.orders[0].orderStatus);
|
||||
console.log(res.data.data[0].orderStatus);
|
||||
} else {
|
||||
console.log("没拿到用户数据");
|
||||
}
|
||||
};
|
||||
const Status = common_vendor.ref({
|
||||
orderStatus: "全部",
|
||||
orders: [
|
||||
{}
|
||||
],
|
||||
displayedOrders: []
|
||||
});
|
||||
const changeTab = (tab) => {
|
||||
if (tab === "全部") {
|
||||
Status.value.displayedOrders = Status.value.orders;
|
||||
} else {
|
||||
Status.value.displayedOrders = Status.value.orders.filter((order) => {
|
||||
switch (tab) {
|
||||
case "待支付":
|
||||
return order.orderStatus === "代支付";
|
||||
case "代发货":
|
||||
return order.orderStatus === "代发货";
|
||||
case "已发货":
|
||||
return order.orderStatus === "已发货";
|
||||
case "售后":
|
||||
return order.orderStatus === "售后";
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
const Getsort = async () => {
|
||||
const res = await common_vendor.index.request({
|
||||
url: api_request.testUrl + "/category/list",
|
||||
|
@ -60,37 +115,41 @@ const _sfc_main = {
|
|||
});
|
||||
}
|
||||
};
|
||||
const getBoxStyle = (index) => ({
|
||||
backgroundColor: currentColor.value === index ? "brown" : "#fffef8"
|
||||
});
|
||||
const goToProduct = (item) => {
|
||||
console.log(item, 123);
|
||||
common_vendor.index.navigateTo({
|
||||
url: "../../../pages/store-home/ProductDetails/ProductDetails?info=" + JSON.stringify(item)
|
||||
});
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.f(sort.value, (item, index, i0) => {
|
||||
a: _ctx.orderStatus === "全部" ? 1 : "",
|
||||
b: common_vendor.o(($event) => changeTab("全部")),
|
||||
c: _ctx.orderStatus === "代支付" ? 1 : "",
|
||||
d: common_vendor.o(($event) => changeTab("代支付")),
|
||||
e: _ctx.orderStatus === "代发货" ? 1 : "",
|
||||
f: common_vendor.o(($event) => changeTab("代发货")),
|
||||
g: _ctx.orderStatus === "已发货" ? 1 : "",
|
||||
h: common_vendor.o(($event) => changeTab("已发货")),
|
||||
i: _ctx.orderStatus === "售后" ? 1 : "",
|
||||
j: common_vendor.o(($event) => changeTab("售后")),
|
||||
k: common_vendor.f(Status.value.orders, (order, k0, i0) => {
|
||||
return {
|
||||
a: item.imgurl,
|
||||
b: common_vendor.t(item.name),
|
||||
c: index,
|
||||
d: common_vendor.s(getBoxStyle(index)),
|
||||
e: common_vendor.o(($event) => changeTypes(item, index), index)
|
||||
a: common_vendor.f(order.orderItemList, (item, k1, i1) => {
|
||||
return {
|
||||
a: common_vendor.t(item.goodSnapshot.name),
|
||||
b: item.id
|
||||
};
|
||||
}),
|
||||
b: common_vendor.f(order.orderItemList, (item, k1, i1) => {
|
||||
return {
|
||||
a: common_vendor.t(item.goodSnapshot.type),
|
||||
b: item.id
|
||||
};
|
||||
}),
|
||||
c: common_vendor.f(order.orderItemList, (item, k1, i1) => {
|
||||
return {
|
||||
a: common_vendor.t(item.goodSnapshot.price),
|
||||
b: item.id
|
||||
};
|
||||
}),
|
||||
d: order.id
|
||||
};
|
||||
}),
|
||||
b: common_vendor.f(productList.value, (item, index, i0) => {
|
||||
return {
|
||||
a: item.goodImg,
|
||||
b: common_vendor.t(item.name),
|
||||
c: common_vendor.t(item.intro),
|
||||
d: common_vendor.t(item.price),
|
||||
e: index,
|
||||
f: common_vendor.o(($event) => goToProduct(item), index)
|
||||
};
|
||||
}),
|
||||
c: common_vendor.unref(common_assets.add_img)
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
<view class="flex-row relative page data-v-7d0f2622"><view class="aaa data-v-7d0f2622"><view class="bbb data-v-7d0f2622"><view wx:for="{{a}}" wx:for-item="item" wx:key="c" class="ccc data-v-7d0f2622" style="{{item.d}}" bindtap="{{item.e}}"><image class="eee data-v-7d0f2622" src="{{item.a}}"/><text class="ddd data-v-7d0f2622">{{item.b}}</text></view></view></view><view class="pos_5 data-v-7d0f2622"><view wx:for="{{b}}" wx:for-item="item" wx:key="e" class="flex-row section_9 list-item_2 mt-5 data-v-7d0f2622" bindtap="{{item.f}}"><image class="self-center image_4 data-v-7d0f2622" src="{{item.a}}"/><view style="width:220rpx" class="flex-col items-start self-center group_3 data-v-7d0f2622"><text class="font_2 text_5 data-v-7d0f2622">{{item.b}}</text><text class="font_3 mt-13 data-v-7d0f2622">{{item.c}}</text><text class="font mt-13 data-v-7d0f2622">¥{{item.d}}</text></view><image class="self-start image_5 data-v-7d0f2622" src="{{c}}"/></view></view></view>
|
||||
<block class="data-v-7d0f2622" u-s="{{['d']}}"><view class="container data-v-7d0f2622"><view class="order-tabs data-v-7d0f2622"><view class="{{['tab-item', 'data-v-7d0f2622', a && 'active']}}" bindtap="{{b}}">全部</view><view class="{{['tab-item', 'data-v-7d0f2622', c && 'active']}}" bindtap="{{d}}">代支付</view><view class="{{['tab-item', 'data-v-7d0f2622', e && 'active']}}" bindtap="{{f}}">代发货</view><view class="{{['tab-item', 'data-v-7d0f2622', g && 'active']}}" bindtap="{{h}}">已发货</view><view class="{{['tab-item', 'data-v-7d0f2622', i && 'active']}}" bindtap="{{j}}">售后</view></view><view class="order-list data-v-7d0f2622"><view wx:for="{{k}}" wx:for-item="order" wx:key="d" class="order-item data-v-7d0f2622"><view wx:for="{{order.a}}" wx:for-item="item" wx:key="b" class="data-v-7d0f2622">{{item.a}}</view><view wx:for="{{order.b}}" wx:for-item="item" wx:key="b" class="data-v-7d0f2622">{{item.a}}</view><view wx:for="{{order.c}}" wx:for-item="item" wx:key="b" class="data-v-7d0f2622">{{item.a}}</view></view></view></view></block>
|
|
@ -401,194 +401,28 @@ text.data-v-7d0f2622 {
|
|||
.mt-100.data-v-7d0f2622 {
|
||||
margin-top: 187.5rpx;
|
||||
}
|
||||
.navbar.data-v-7d0f2622 {
|
||||
background-color: #333;
|
||||
color: #fff;
|
||||
.container.data-v-7d0f2622 {
|
||||
padding: 20px;
|
||||
}
|
||||
.order-tabs.data-v-7d0f2622 {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
background-color: #f5f5f5;
|
||||
padding: 10px 0;
|
||||
}
|
||||
.tab-item.data-v-7d0f2622 {
|
||||
cursor: pointer;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
.tab-item.active.data-v-7d0f2622 {
|
||||
color: blue;
|
||||
border-bottom: 2px solid blue;
|
||||
}
|
||||
.order-list.data-v-7d0f2622 {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.order-item.data-v-7d0f2622 {
|
||||
border: 1px solid #ccc;
|
||||
padding: 10px;
|
||||
}
|
||||
.bbb.data-v-7d0f2622 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.ccc.data-v-7d0f2622 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin: 20rpx;
|
||||
}
|
||||
.eee.data-v-7d0f2622 {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
.ddd.data-v-7d0f2622 {
|
||||
font-size: 14px;
|
||||
}
|
||||
.flex-row.data-v-7d0f2622 {
|
||||
display: flex;
|
||||
}
|
||||
.flex-item.data-v-7d0f2622 {
|
||||
flex: 1;
|
||||
}
|
||||
.ml-15.data-v-7d0f2622 {
|
||||
margin-left: 28.13rpx;
|
||||
}
|
||||
.ml-3.data-v-7d0f2622 {
|
||||
margin-left: 5.63rpx;
|
||||
}
|
||||
.mt-3.data-v-7d0f2622 {
|
||||
margin-top: 5.63rpx;
|
||||
text-align: center;
|
||||
}
|
||||
.mt-13.data-v-7d0f2622 {
|
||||
margin-top: 17.38rpx;
|
||||
}
|
||||
.mt-5.data-v-7d0f2622 {
|
||||
margin-top: 9.38rpx;
|
||||
}
|
||||
.page.data-v-7d0f2622 {
|
||||
background-color: #f5f5dc;
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
}
|
||||
.section.data-v-7d0f2622 {
|
||||
padding: 22.5rpx 39.28rpx 16.88rpx;
|
||||
background-color: #f7de98;
|
||||
}
|
||||
.pos_8.data-v-7d0f2622 {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
}
|
||||
.text.data-v-7d0f2622 {
|
||||
color: #c1651a;
|
||||
font-size: 37.5rpx;
|
||||
font-family: STFangsong;
|
||||
line-height: 36.19rpx;
|
||||
}
|
||||
.section_2.data-v-7d0f2622 {
|
||||
padding: 5.63rpx 15rpx 8.44rpx;
|
||||
background-color: #ffffff;
|
||||
border-radius: 28.13rpx;
|
||||
height: 63.75rpx;
|
||||
width: 500.69rpx;
|
||||
}
|
||||
.image.data-v-7d0f2622 {
|
||||
width: 50.63rpx;
|
||||
height: 50.63rpx;
|
||||
}
|
||||
.text-wrapper.data-v-7d0f2622 {
|
||||
margin-right: 17.42rpx;
|
||||
}
|
||||
.font.data-v-7d0f2622 {
|
||||
font-size: 26.25rpx;
|
||||
font-family: STFangsong;
|
||||
line-height: 18rpx;
|
||||
color: #ff0000;
|
||||
}
|
||||
.image-wrapper.data-v-7d0f2622 {
|
||||
background-color: #ffffff;
|
||||
border-radius: 28.13rpx;
|
||||
overflow: hidden;
|
||||
border: solid 9.38rpx #ffffff;
|
||||
}
|
||||
.pos_1.data-v-7d0f2622 {
|
||||
position: absolute;
|
||||
left: 22.5rpx;
|
||||
right: 24.38rpx;
|
||||
top: 118.13rpx;
|
||||
}
|
||||
.image_2.data-v-7d0f2622 {
|
||||
width: 91.25vw;
|
||||
height: 37.5vw;
|
||||
}
|
||||
.group.data-v-7d0f2622 {
|
||||
margin: auto;
|
||||
width: 137.81rpx;
|
||||
}
|
||||
.list-item.data-v-7d0f2622 {
|
||||
padding: 11.25rpx 0 9.94rpx;
|
||||
background-color: #fffef8;
|
||||
border-radius: 9.38rpx;
|
||||
}
|
||||
.list-item.data-v-7d0f2622:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
.image_3.data-v-7d0f2622 {
|
||||
border-radius: 0rpx 9.38rpx 9.38rpx 0rpx;
|
||||
width: 60rpx;
|
||||
height: 60rpx;
|
||||
}
|
||||
.font_4.data-v-7d0f2622 {
|
||||
font-size: 25rpx;
|
||||
font-family: STFangsong;
|
||||
line-height: 28.26rpx;
|
||||
color: #c1651a;
|
||||
}
|
||||
.section_4.data-v-7d0f2622 {
|
||||
padding-bottom: 879.38rpx;
|
||||
background-color: #f8e8c1;
|
||||
border-radius: 0rpx 18.75rpx 0rpx 0rpx;
|
||||
width: 600.13rpx;
|
||||
}
|
||||
.pos_4.data-v-7d0f2622 {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 440.63rpx;
|
||||
}
|
||||
.section_5.data-v-7d0f2622 {
|
||||
padding: 18.06rpx 16.24rpx 14.94rpx;
|
||||
background-color: #fffef8;
|
||||
border-radius: 0rpx 18.75rpx 0rpx 0rpx;
|
||||
width: 598.13rpx;
|
||||
}
|
||||
.font_2.data-v-7d0f2622 {
|
||||
font-size: 30rpx;
|
||||
font-family: STFangsong;
|
||||
line-height: 28.26rpx;
|
||||
color: #000000;
|
||||
}
|
||||
.font_3.data-v-7d0f2622 {
|
||||
font-size: 22.5rpx;
|
||||
font-family: STFangsong;
|
||||
line-height: 21.56rpx;
|
||||
color: #727272;
|
||||
}
|
||||
.text_3.data-v-7d0f2622 {
|
||||
line-height: 21.15rpx;
|
||||
}
|
||||
.pos_5.data-v-7d0f2622 {
|
||||
position: absolute;
|
||||
top: 120rpx;
|
||||
width: 95%;
|
||||
margin: 2.5%;
|
||||
}
|
||||
.section_9.data-v-7d0f2622 {
|
||||
padding: 20.63rpx 22.88rpx 22.5rpx;
|
||||
background-color: #fffef8;
|
||||
border-radius: 9.38rpx;
|
||||
right: 13.13rpx;
|
||||
}
|
||||
.list-item_2.data-v-7d0f2622:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
.image_4.data-v-7d0f2622 {
|
||||
border-radius: 9.38rpx;
|
||||
width: 131.25rpx;
|
||||
height: 131.25rpx;
|
||||
}
|
||||
.group_3.data-v-7d0f2622 {
|
||||
margin-left: 24.84rpx;
|
||||
}
|
||||
.text_5.data-v-7d0f2622 {
|
||||
line-height: 28.65rpx;
|
||||
}
|
||||
.image_5.data-v-7d0f2622 {
|
||||
margin: 75rpx 5.63rpx 0 107.96rpx;
|
||||
border-radius: 9.38rpx;
|
||||
width: 56.25rpx;
|
||||
height: 56.25rpx;
|
||||
margin-bottom: 10px;
|
||||
}
|
|
@ -18,7 +18,11 @@
|
|||
}
|
||||
},
|
||||
"compileType": "miniprogram",
|
||||
<<<<<<< HEAD
|
||||
"libVersion": "3.6.0",
|
||||
=======
|
||||
"libVersion": "3.6.2",
|
||||
>>>>>>> 0584de58dc4182dc4f7032910db8372d1de43d10
|
||||
"appid": "wx3f968a09e31d6bed",
|
||||
"projectname": "FeiYi",
|
||||
"condition": {
|
||||
|
|
|
@ -7,6 +7,13 @@
|
|||
"condition": {
|
||||
"miniprogram": {
|
||||
"list": [
|
||||
{
|
||||
"name": "pages/mine/mineorders/mineorders",
|
||||
"pathName": "pages/mine/mineorders/mineorders",
|
||||
"query": "",
|
||||
"launchMode": "default",
|
||||
"scene": null
|
||||
},
|
||||
{
|
||||
"name": "pages/mine/mineorders/mineorders",
|
||||
"pathName": "pages/mine/mineorders/mineorders",
|
||||
|
|
Loading…
Reference in New Issue
Block a user