细节修改

version/0412
fanfan 1 year ago
parent 3d7573ab8f
commit 136a64eae4
  1. 11
      pages/news/recycling/recoveryList.vue
  2. 579
      pages/news/user/report.vue
  3. 32
      pages/news3/addressList.vue
  4. 4
      pages/news3/sendOutGoods.vue
  5. 25
      pages/news3/shopOrder.vue
  6. 15
      pages/news3/updatePrice.vue
  7. 11
      pages/order/index.vue
  8. 12
      pages/user/index.vue

@ -157,7 +157,10 @@
uni.showToast({ uni.showToast({
title: "完成成功" title: "完成成功"
}) })
this.getList(1) this.classifyShow = 2
this.pageNum = 1;
this.goodsList = []
this.getOrderList(1)
} }
}, },
// //
@ -173,7 +176,9 @@
uni.showToast({ uni.showToast({
title: "取消成功" title: "取消成功"
}) })
this.classifyShow = 2 this.pageNum = 1;
this.goodsList = []
this.classifyShow = 3
this.getOrderList(1) this.getOrderList(1)
} }
}, },
@ -188,6 +193,8 @@
} = await newFunApi.orderStatus({}); } = await newFunApi.orderStatus({});
if (status == 200) { if (status == 200) {
this.classList = data.list this.classList = data.list
this.pageNum = 1;
this.goodsList = []
this.getOrderList(); this.getOrderList();
} }
}, },

@ -1,7 +1,8 @@
<template> <template>
<view class="report"> <view class="report">
<view class="report-tab"> <view class="report-tab">
<u-tabs :list="list" height="110" font-size="32" active-color="#F34A40" inactive-color="#686868" :is-scroll="false" v-model="tabIndex" @change="change"></u-tabs> <u-tabs :list="list" height="110" font-size="32" active-color="#F34A40" inactive-color="#686868"
:is-scroll="false" v-model="tabIndex"></u-tabs>
</view> </view>
<view class="report-bd" v-if="tabIndex == 0"> <view class="report-bd" v-if="tabIndex == 0">
<view class="module1"> <view class="module1">
@ -61,22 +62,19 @@
</view> </view>
<view class="export" v-if="tabIndex == 1"> <view class="export" v-if="tabIndex == 1">
<view class="a"> <view class="a">
<view class="item">昨日</view> <view @click="activeTab(index)" class="item" :class="dateIndex==index?'itemActive':''"
<view class="item">近7日</view> v-for="(item,index) in dateList" :key="index">{{item}}
<view class="item">近15日</view> </view>
<view class="item">近30日</view>
</view> </view>
<view class="b"> <view class="b">
<picker mode="date" :value="date1" :start="startDate" :end="endDate" @change="bindDateChange"> <view class="start timer" @click="isShow=true">{{startTime?startTime:'开始时间'}}</view>
<view class="start timer">{{date1?date1:'开始时间'}}</view>
</picker>
<view class="or">-</view> <view class="or">-</view>
<picker mode="date" :value="date2" :start="startDate" :end="endDate" @change="bindDateChange"> <view class="end timer" @click="isShow=true">{{endTime?endTime:'结束时间'}}</view>
<view class="end timer">{{date2?date2:'结束时间'}}</view>
</picker>
</view> </view>
<view class="c">导出</view> <view class="c" :style="{'opacity': (startTime||dateIndex>-1)?1:0.6 }" @click="quantityFilter">筛选</view>
</view> </view>
<u-calendar v-model="isShow" mode="range" @change="getTime" range-color='#F34A40' range-bg-color='#FFBDBA'
active-bg-color='#F34A40'></u-calendar>
<view class="report-bd" v-if="tabIndex == 1"> <view class="report-bd" v-if="tabIndex == 1">
<view class="module1"> <view class="module1">
<view class="title">订单数据</view> <view class="title">订单数据</view>
@ -144,274 +142,363 @@
</view> </view>
</view> </view>
</view> </view>
</view> </view>
</template> </template>
<script> <script>
export default { import * as newFunApi from '@/api/newFun'
data() { export default {
data() {
return { return {
list: [{ dateList: ['昨日', '近7日', '近15日', '近30日'],
name: '今日数据' dateIndex: -1,
}, { list: [{
name: '历史数据' name: '今日数据'
}, {
name: '历史数据'
}], }],
date1: "", tabIndex: 0,
date2: "", isShow: false,
tabIndex: 0 startTime: '',
} endTime: '',
}, recentDate: ''
computed: {
startDate() {
return this.getDate('start');
},
endDate() {
return this.getDate('end');
} }
}, },
onLoad() {
this.getNumberPages()
var yesterday = this.getDay(-1)
var th_7 = this.getDay(-7);
var th_15 = this.getDay(-15)
var th_30 = this.getDay(-30)
console.log(yesterday, th_7, th_15, th_30)
},
methods: { methods: {
change() { activeTab(index) {
this.dateIndex = index;
}, let day = ''
tabItem(index){ if (this.dateIndex == 0) {
day = -1
}
if (this.dateIndex == 1) {
day = -7
}
if (this.dateIndex == 2) {
day = -15
}
if (this.dateIndex == 3) {
day = -30
}
this.recentDate = this.getDay(day);
console.log(this.recentDate)
},
quantityFilter() {},
getTime(e) {
this.startTime = e.startDate;
this.endTime = e.endDate;
},
tabItem(index) {
this.dateIndex = -1;
this.startTime = '';
this.endTime = '';
this.tabIndex = index this.tabIndex = index
}, },
bindDateChange1: function(e) { getNumberPages() {
this.date1 = e.detail.value const that = this
return new Promise((resolve, reject) => {
newFunApi.addressList({
user_id: 10006
})
.then(result => {
console.log(result)
})
.catch(reject)
})
}, },
bindDateChange2: function(e) { getDay(day) {
this.date2 = e.detail.value var today = new Date();
var targetday_milliseconds = today.getTime() + 1000 * 60 * 60 * 24 * day;
today.setTime(targetday_milliseconds); //
var tYear = today.getFullYear();
var tMonth = today.getMonth();
var tDate = today.getDate();
tMonth = this.doHandleMonth(tMonth + 1);
tDate = this.doHandleMonth(tDate);
return tYear + "-" + tMonth + "-" + tDate;
}, },
getDate(type) { doHandleMonth(month) {
const date = new Date(); var m = month;
let year = date.getFullYear(); if (month.toString().length == 1) {
let month = date.getMonth() + 1; m = "0" + month;
let day = date.getDate();
if (type === 'start') {
year = year - 60;
} else if (type === 'end') {
year = year + 2;
} }
month = month > 9 ? month : '0' + month; return m;
day = day > 9 ? day : '0' + day; },
return `${year}-${month}-${day}`; // getDate(type) {
} // const date = new Date();
} // let year = date.getFullYear();
} // let month = date.getMonth() + 1;
</script> // let day = date.getDate();
// if (type === 'start') {
<style lang="scss" scoped> // year = year - 60;
.report{ // } else if (type === 'end') {
overflow: hidden; // year = year + 2;
&-tab{ // }
margin-top: 20rpx; // month = month > 9 ? month : '0' + month;
overflow: hidden; // day = day > 9 ? day : '0' + day;
} // return `${year}-${month}-${day}`;
.export{ // }
width: 100%;
height: 312rpx;
background: #FFFFFF;
margin-top: 20rpx;
padding: 0 40rpx;
box-sizing: border-box;
.a{
overflow: hidden;
.item{
width: 156rpx;
line-height: 64rpx;
background: #FFF6F5;
border-radius: 4rpx;
text-align: center;
font-size: 28rpx;
font-weight: 400;
color: #3B3B3B;
float: left;
margin-top: 20rpx;
margin-left: 15rpx;
&:first-child{
margin-left: 0;
}
}
}
.b{
overflow: hidden;
.timer{
width: 288rpx;
line-height: 64rpx;
background: #FFF6F5;
border-radius: 4rpx;
text-align: center;
font-size: 28rpx;
font-weight: 400;
color: #3B3B3B;
float: left;
margin-top: 20rpx;
}
.or{
width: 93rpx;
height: 64rpx;
display: flex;
margin-top: 20rpx;
align-items: center;
justify-content: center;
float: left;
text-align: center;
font-size: 60rpx;
}
}
.c{
width: 100%;
line-height: 88rpx;
background: #FFAAA4;
border-radius: 88rpx;
font-size: 28rpx;
font-weight: 500;
color: #FFFFFF;
margin-top: 26rpx;
text-align: center;
} }
} }
&-bd{ </script>
padding: 0 20rpx 20rpx;
<style lang="scss" scoped>
::v-deep .u-btn--primary {
background-color: #FC3E27 !important;
border-color: #FC3E27;
}
.report {
overflow: hidden; overflow: hidden;
margin-top: 20rpx;
&-tab {
.module1{ margin-top: 20rpx;
overflow: hidden;
}
.export {
width: 100%; width: 100%;
height: 504rpx; height: 312rpx;
background: linear-gradient(180deg, #FEF4F3 0%, #FFFFFF 100%); background: #FFFFFF;
border-radius: 10rpx; margin-top: 20rpx;
padding: 25rpx 20rpx; padding: 0 40rpx;
box-sizing: border-box; box-sizing: border-box;
.title{
position: relative; .a {
font-size: 28rpx; overflow: hidden;
font-family: PingFang SC, PingFang SC;
font-weight: 500; .item {
color: #3B3B3B; width: 156rpx;
border-left: 3px solid #FF6257; line-height: 64rpx;
padding-left: 30rpx; background: #FFF6F5;
border-radius: 4rpx;
text-align: center;
font-size: 28rpx;
font-weight: 400;
color: #3B3B3B;
float: left;
margin-top: 20rpx;
margin-left: 15rpx;
&:first-child {
margin-left: 0;
}
}
.itemActive {
color: #fff;
background: #FF6F5F;
}
} }
.item{
width: 33.3%; .b {
float: left; overflow: hidden;
padding: 25rpx 0;
text-align: center; .timer {
font-size: 24rpx; width: 288rpx;
font-weight: 400; line-height: 64rpx;
color: #ABABAB; background: #FFF6F5;
text{ border-radius: 4rpx;
display: block; text-align: center;
font-size: 32rpx; font-size: 28rpx;
font-weight: 500; font-weight: 400;
color: #3B3B3B; color: #3B3B3B;
float: left;
margin-top: 20rpx; margin-top: 20rpx;
height: 64rpx;
}
.or {
width: 93rpx;
height: 64rpx;
display: flex;
margin-top: 20rpx;
align-items: center;
justify-content: center;
float: left;
text-align: center;
font-size: 60rpx;
} }
} }
}
.module2{ .c {
width: 100%; width: 100%;
height: 246rpx; line-height: 88rpx;
margin-top: 20rpx; background: #F34A40;
background: linear-gradient(180deg, #FEF4F3 0%, #FFFFFF 100%); border-radius: 88rpx;
border-radius: 10rpx;
padding: 25rpx 20rpx;
box-sizing: border-box;
.title{
position: relative;
font-size: 28rpx; font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500; font-weight: 500;
color: #3B3B3B; color: #FFFFFF;
border-left: 3px solid #FF6257; margin-top: 26rpx;
padding-left: 30rpx;
}
.item{
width: 33.3%;
float: left;
padding: 25rpx 0;
text-align: center; text-align: center;
font-size: 24rpx;
font-weight: 400;
color: #ABABAB;
text{
display: block;
font-size: 32rpx;
font-weight: 500;
color: #3B3B3B;
margin-top: 20rpx;
}
} }
} }
.module3{
width: 100%; &-bd {
height: 246rpx; padding: 0 20rpx 20rpx;
overflow: hidden;
margin-top: 20rpx; margin-top: 20rpx;
background: linear-gradient(180deg, #FEF4F3 0%, #FFFFFF 100%);
border-radius: 10rpx; .module1 {
padding: 25rpx 20rpx; width: 100%;
box-sizing: border-box; height: 504rpx;
.title{ background: linear-gradient(180deg, #FEF4F3 0%, #FFFFFF 100%);
position: relative; border-radius: 10rpx;
font-size: 28rpx; padding: 25rpx 20rpx;
font-family: PingFang SC, PingFang SC; box-sizing: border-box;
font-weight: 500;
color: #3B3B3B; .title {
border-left: 3px solid #FF6257; position: relative;
padding-left: 30rpx; font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #3B3B3B;
border-left: 3px solid #FF6257;
padding-left: 30rpx;
}
.item {
width: 33.3%;
float: left;
padding: 25rpx 0;
text-align: center;
font-size: 24rpx;
font-weight: 400;
color: #ABABAB;
text {
display: block;
font-size: 32rpx;
font-weight: 500;
color: #3B3B3B;
margin-top: 20rpx;
}
}
} }
.item{
width: 33.3%; .module2 {
float: left; width: 100%;
padding: 25rpx 0; height: 246rpx;
text-align: center; margin-top: 20rpx;
font-size: 24rpx; background: linear-gradient(180deg, #FEF4F3 0%, #FFFFFF 100%);
font-weight: 400; border-radius: 10rpx;
color: #ABABAB; padding: 25rpx 20rpx;
text{ box-sizing: border-box;
display: block;
font-size: 32rpx; .title {
position: relative;
font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500; font-weight: 500;
color: #3B3B3B; color: #3B3B3B;
margin-top: 20rpx; border-left: 3px solid #FF6257;
padding-left: 30rpx;
}
.item {
width: 33.3%;
float: left;
padding: 25rpx 0;
text-align: center;
font-size: 24rpx;
font-weight: 400;
color: #ABABAB;
text {
display: block;
font-size: 32rpx;
font-weight: 500;
color: #3B3B3B;
margin-top: 20rpx;
}
} }
} }
}
.module4{ .module3 {
width: 100%; width: 100%;
height: 246rpx; height: 246rpx;
margin-top: 20rpx; margin-top: 20rpx;
background: linear-gradient(180deg, #FEF4F3 0%, #FFFFFF 100%); background: linear-gradient(180deg, #FEF4F3 0%, #FFFFFF 100%);
border-radius: 10rpx; border-radius: 10rpx;
padding: 25rpx 20rpx; padding: 25rpx 20rpx;
box-sizing: border-box; box-sizing: border-box;
.title{
position: relative; .title {
font-size: 28rpx; position: relative;
font-family: PingFang SC, PingFang SC; font-size: 28rpx;
font-weight: 500; font-family: PingFang SC, PingFang SC;
color: #3B3B3B; font-weight: 500;
border-left: 3px solid #FF6257; color: #3B3B3B;
padding-left: 30rpx; border-left: 3px solid #FF6257;
padding-left: 30rpx;
}
.item {
width: 33.3%;
float: left;
padding: 25rpx 0;
text-align: center;
font-size: 24rpx;
font-weight: 400;
color: #ABABAB;
text {
display: block;
font-size: 32rpx;
font-weight: 500;
color: #3B3B3B;
margin-top: 20rpx;
}
}
} }
.item{
width: 33.3%; .module4 {
float: left; width: 100%;
padding: 25rpx 0; height: 246rpx;
text-align: center; margin-top: 20rpx;
font-size: 24rpx; background: linear-gradient(180deg, #FEF4F3 0%, #FFFFFF 100%);
font-weight: 400; border-radius: 10rpx;
color: #ABABAB; padding: 25rpx 20rpx;
text{ box-sizing: border-box;
display: block;
font-size: 32rpx; .title {
position: relative;
font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500; font-weight: 500;
color: #3B3B3B; color: #3B3B3B;
margin-top: 20rpx; border-left: 3px solid #FF6257;
padding-left: 30rpx;
}
.item {
width: 33.3%;
float: left;
padding: 25rpx 0;
text-align: center;
font-size: 24rpx;
font-weight: 400;
color: #ABABAB;
text {
display: block;
font-size: 32rpx;
font-weight: 500;
color: #3B3B3B;
margin-top: 20rpx;
}
} }
} }
} }
} }
}
</style> </style>

@ -9,7 +9,8 @@
<view class="d"> <view class="d">
{{item.detail}} {{item.detail}}
</view> </view>
<u-icon @click="changeAdd(item)" name="checkbox-mark" :color="addIndex==item.address_id?'#F34A40':'#979797'" size="42"></u-icon> <u-icon @click="changeAdd(item)" name="checkbox-mark"
:color="addIndex==item.address_id?'#F34A40':'#979797'" size="42"></u-icon>
</view> </view>
</view> </view>
</view> </view>
@ -42,39 +43,40 @@
} }
}], }],
addressId: '', addressId: '',
addIndex:'' addIndex: ''
}; };
}, },
onShow() { onShow() {
this.getAddressList() this.getAddressList()
}, },
methods: { methods: {
changeAdd(item){ changeAdd(item) {
this.addressData=item this.addressData = item
this.addIndex=item.address_id this.addIndex = item.address_id
}, },
getAddressList() { getAddressList() {
let userInfo =uni.getStorageSync('userInfo')
const that = this const that = this
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
newFunApi.addressList({ newFunApi.addressList({
user_id: 10006 user_id: userInfo.user_id
}) })
.then(result => { .then(result => {
this.addressData=result.data.list[0] this.addressData = result.data.list[0]
that.addIndex=result.data.list[0].address_id that.addIndex = result.data.list[0].address_id
that.addList = result.data.list that.addList = result.data.list
}) })
.catch(reject) .catch(reject)
}) })
}, },
addAddress() { addAddress() {
let pages = getCurrentPages()// let pages = getCurrentPages() //
let nowPage = pages[ pages.length - 1 ] // let nowPage = pages[pages.length - 1] //
let prevPage = pages[ pages.length - 2 ] // let prevPage = pages[pages.length - 2] //
prevPage.$vm.addressData = this.addressData // prevPage.$vm.addressData = this.addressData //
uni.navigateBack({ uni.navigateBack({
delta:1 // delta: 1 //
}) })
}, },
} }
} }

@ -179,6 +179,10 @@
background-color: #F7F8FA; background-color: #F7F8FA;
} }
::v-deep .uni-input-wrapper {
text-align: left !important;
}
.orderNum { .orderNum {
font-size: 28upx; font-size: 28upx;

@ -153,7 +153,8 @@
</u-upload> --> </u-upload> -->
<view class="tuiAdderss" v-if="audit_status==10"> <view class="tuiAdderss" v-if="audit_status==10">
<text>退货地址:</text> <text>退货地址:</text>
<view class="" @click="goJump('/pages/news3/addressList','',0)"><text :style="{'color': addressData?'#303030':'#EAEAEA'}"></text> <view class="" @click="goJump('/pages/news3/addressList','',0)"><text
:style="{'color': addressData?'#303030':'#EAEAEA'}"></text>
{{addressData?addressData.name+addressData.phone:'请选择退货地址'}} {{addressData?addressData.name+addressData.phone:'请选择退货地址'}}
<u-icon name="arrow-right" color="#979797" size="28"></u-icon> <u-icon name="arrow-right" color="#979797" size="28"></u-icon>
</view> </view>
@ -261,7 +262,6 @@
pageNum: 1, pageNum: 1,
keyword: "", keyword: "",
total: 1, total: 1,
pageNum: 1,
action: '', action: '',
header: '', header: '',
refund_image_id: '', refund_image_id: '',
@ -280,11 +280,24 @@
'Access-Token': uni.getStorageSync('AccessToken'), 'Access-Token': uni.getStorageSync('AccessToken'),
'platform': "MP-WEIXIN", 'platform': "MP-WEIXIN",
} }
this.getList()
}, },
onLoad(option) { onLoad(option) {
this.classifyShow=option.dataType
this.delivery_type = option.delivery_type || ''; this.delivery_type = option.delivery_type || '';
this.user_id = option.user_id || '' this.user_id = option.user_id || '';
this.getList()
},
onShow() {
let that = this
uni.$on('refreshData', function(res) {
that.pageNum = 1
that.goodShopsList = [];
that.getList()
})
},
onUnload() {
//
uni.$off('refreshData');
}, },
methods: { methods: {
reset() { reset() {
@ -411,7 +424,7 @@
this.afterSale = true; this.afterSale = true;
}, },
async submitRefund() { async submitRefund() {
if(this.audit_status==10 &&!this.addressData){ if (this.audit_status == 10 && !this.addressData) {
return that.$toast('请选择退货地址') return that.$toast('请选择退货地址')
} }
let params = { let params = {
@ -429,8 +442,8 @@
data data
} = await newFunApi.audit(params); } = await newFunApi.audit(params);
if (status == 200) { if (status == 200) {
that.$toast(message)
this.afterSale = false this.afterSale = false
uni.hideLoading();
this.pageNum = 1 this.pageNum = 1
this.goodShopsList = []; this.goodShopsList = [];
this.getList() this.getList()

@ -141,11 +141,6 @@
background-color: #F7F8FA; background-color: #F7F8FA;
} }
::v-deep .u-input {
width: 300rpx !important;
text-align: right !important;
}
.updatePrice { .updatePrice {
margin-bottom: 200rpx; margin-bottom: 200rpx;
} }
@ -237,6 +232,11 @@
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
::v-deep .u-input {
width: 300rpx !important;
text-align: right !important;
}
.left { .left {
font-size: 28upx; font-size: 28upx;
@ -298,6 +298,11 @@
.modifyInfo { .modifyInfo {
padding: 34upx; padding: 34upx;
::v-deep .u-input {
width: 300rpx !important;
text-align: left !important;
}
.filterTitle { .filterTitle {
font-size: 32upx; font-size: 32upx;
font-family: PingFang SC, PingFang SC; font-family: PingFang SC, PingFang SC;

@ -7,7 +7,7 @@
</view> </view>
</view> </view>
<!-- tab栏 --> <!-- tab栏 -->
<u-tabs :list="tabs" bg-color="#fafafa" :is-scroll="true" height="120" font-size="32" :current="curTab" <u-tabs :list="tabs" bg-color="#fafafa" :is-scroll="true" height="120" font-size="32" :current="current"
bar-width="56" bar-height="6" active-color="#3B3B3B" :show-bar='true' :duration="0.2" bar-width="56" bar-height="6" active-color="#3B3B3B" :show-bar='true' :duration="0.2"
@change="onChangeTab" /> @change="onChangeTab" />
<!-- 订单列表 --> <!-- 订单列表 -->
@ -203,7 +203,7 @@
// tab // tab
tabs, tabs,
// //
curTab: 0, current: 0,
// //
list: [], list: [],
keyWords: '', keyWords: '',
@ -271,7 +271,8 @@
const app = this const app = this
if (options.dataType) { if (options.dataType) {
const index = app.tabs.findIndex(item => item.value == options.dataType) const index = app.tabs.findIndex(item => item.value == options.dataType)
app.curTab = index > -1 ? index : 0 app.current = index > -1 ? index : 0
console.log(app.current,'KKKKKKK')
} }
}, },
@ -300,7 +301,7 @@
// //
getTabValue() { getTabValue() {
return this.tabs[this.curTab].value return this.tabs[this.current].value
}, },
// //
@ -308,7 +309,7 @@
const app = this const app = this
app.list = [] app.list = []
// //
app.curTab = index app.current = index
if (index == 6) { if (index == 6) {
uni.navigateTo({ uni.navigateTo({
url: '/pages/refund/index' url: '/pages/refund/index'

@ -168,11 +168,11 @@
<view class="manageTitle"> <view class="manageTitle">
<text lines="1" class="text_5 titleLeft">商品订单</text> <text lines="1" class="text_5 titleLeft">商品订单</text>
<text lines="1" class="text_6 titleRight" <text lines="1" class="text_6 titleRight"
@click="goJump(userInfo.user_type == 40?'/pages/news3/shopOrder':'/pages/order/index')">查看全部</text> @click="goGoodsOrder('all')">查看全部</text>
<u-icon style="margin-left: 5rpx; color: #909090; margin-top: -5rpx;" name="arrow-right"></u-icon> <u-icon style="margin-left: 5rpx; color: #909090; margin-top: -5rpx;" name="arrow-right"></u-icon>
</view> </view>
<view class="grounding goodsOrder"> <view class="grounding goodsOrder">
<view class="image-text_21" @click="goGoodsOrder('payment')"> <view class="image-text_21" @click="goGoodsOrder('pay')">
<image :src="$picUrl+'/static/user/unpay.png'" class="label_11"></image> <image :src="$picUrl+'/static/user/unpay.png'" class="label_11"></image>
<view class="text-group_21"> <view class="text-group_21">
<text class="text_71" <text class="text_71"
@ -188,7 +188,7 @@
<text class="text_81">待发货</text> <text class="text_81">待发货</text>
</view> </view>
</view> </view>
<view class="image-text_21" @click="goGoodsOrder('received')"> <view class="image-text_21" @click="goGoodsOrder('receipt')">
<image :src="$picUrl+'/static/user/untake.png'" class="label_11"></image> <image :src="$picUrl+'/static/user/untake.png'" class="label_11"></image>
<view class="text-group_21"> <view class="text-group_21">
<text class="text_71" <text class="text_71"
@ -196,7 +196,7 @@
<text class="text_81">待收货</text> <text class="text_81">待收货</text>
</view> </view>
</view> </view>
<view class="image-text_21" @click="goGoodsOrder('received')"> <view class="image-text_21" @click="goGoodsOrder('complete')">
<image :src="$picUrl+'/static/user/over.png'" class="label_11"></image> <image :src="$picUrl+'/static/user/over.png'" class="label_11"></image>
<view class="text-group_21"> <view class="text-group_21">
<text class="text_71" <text class="text_71"
@ -250,7 +250,7 @@
<view class="goodsManage"> <view class="goodsManage">
<view class="manageTitle"> <view class="manageTitle">
<text lines="1" class="text_5 titleLeft">回收订单</text> <text lines="1" class="text_5 titleLeft">回收订单</text>
<text lines="1" class="text_6 titleRight" @click="toRecovery(0)">查看全部</text> <text lines="1" class="text_6 titleRight" @click="toRecovery('')">查看全部</text>
<u-icon style="margin-left: 5rpx; color: #909090; margin-top: -5rpx;" name="arrow-right"></u-icon> <u-icon style="margin-left: 5rpx; color: #909090; margin-top: -5rpx;" name="arrow-right"></u-icon>
</view> </view>
<view class="grounding goodsOrder"> <view class="grounding goodsOrder">
@ -803,7 +803,7 @@
// //
if (this.userInfo.user_type == 40) { if (this.userInfo.user_type == 40) {
uni.navigateTo({ uni.navigateTo({
url: '/pages/news3/shopOrder' url: '/pages/news3/shopOrder?dataType='+val
}) })
} else { } else {
uni.navigateTo({ uni.navigateTo({

Loading…
Cancel
Save