pull/2/head
parent
f7667b9361
commit
532b9f1d47
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
// let domain = process.env.APP_BASE_URL
|
let domain = process.env.APP_BASE_URL
|
||||||
let domain = 'http://192.168.1.188:48080'
|
// let domain = 'http://192.168.1.188:48080'
|
||||||
// let domain = 'http://api.cyywl.top'
|
// let domain = 'http://api.cyywl.top'
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<template>
|
<template>
|
||||||
<view class="container">
|
<view class="container">
|
||||||
<view class="navbar">
|
<view class="navbar">
|
||||||
<view class="goback"></view>
|
<view class="goback" @tap="goBack"></view>
|
||||||
<view class="search">
|
<view class="search">
|
||||||
<view class="icon"></view>
|
<view class="icon"></view>
|
||||||
<view class="input">
|
<view class="input">
|
||||||
<u--input placeholder="搜索我的订单" v-model="value" @change="change"></u--input>
|
<u--input placeholder="搜索我的订单" v-model="value"></u--input>
|
||||||
</view>
|
</view>
|
||||||
<view class="button">搜索</view>
|
<view class="button">搜索</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="tabs">
|
<view class="tabs">
|
||||||
<u-tabs :list="list1" @tap="click" lineWidth="60rpx" lineHeight="9rpx"></u-tabs>
|
<u-tabs :current="getTabVal()" :list="list1" @tap="click" lineWidth="60rpx" lineHeight="9rpx"></u-tabs>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- <view class="item" @tap="goOrderDetails(123)">
|
<!-- <view class="item" @tap="goOrderDetails(123)">
|
||||||
|
@ -93,6 +93,7 @@
|
||||||
// #endif
|
// #endif
|
||||||
import emptyPage from '@/components/emptyPage.vue'
|
import emptyPage from '@/components/emptyPage.vue'
|
||||||
export default {
|
export default {
|
||||||
|
// props:['status'],
|
||||||
components: {
|
components: {
|
||||||
payment,
|
payment,
|
||||||
home,
|
home,
|
||||||
|
@ -110,6 +111,7 @@
|
||||||
orderData: {}, //订单详细统计
|
orderData: {}, //订单详细统计
|
||||||
orderStatus: 0, //订单状态
|
orderStatus: 0, //订单状态
|
||||||
page: 1,
|
page: 1,
|
||||||
|
tabVal: '',
|
||||||
list1: [{
|
list1: [{
|
||||||
name: '全部',
|
name: '全部',
|
||||||
value: '99'
|
value: '99'
|
||||||
|
@ -157,10 +159,11 @@
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: mapGetters(['isLogin', 'userInfo']),
|
computed: mapGetters(['isLogin', 'userInfo']),
|
||||||
onLoad(option) {
|
onLoad() {
|
||||||
this.loadmore()
|
this.loadmore()
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
|
this.tabVal = this.$route.query.status
|
||||||
if (this.isLogin) {
|
if (this.isLogin) {
|
||||||
this.loadend = false;
|
this.loadend = false;
|
||||||
this.page = 1;
|
this.page = 1;
|
||||||
|
@ -175,6 +178,21 @@
|
||||||
// }
|
// }
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
// 返回上一级
|
||||||
|
goBack(){
|
||||||
|
uni.navigateBack({
|
||||||
|
delta: 1
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
// 获取对应标签
|
||||||
|
getTabVal(){
|
||||||
|
for(let i in this.list1){
|
||||||
|
if(this.list1[i].value == this.tabVal){
|
||||||
|
return i
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
getStatus(val) {
|
getStatus(val) {
|
||||||
if (val == '0') {
|
if (val == '0') {
|
||||||
return '待发货'
|
return '待发货'
|
||||||
|
|
Loading…
Reference in New Issue