pull/2/head
js199000126 2023-05-26 17:58:32 +08:00
parent f7667b9361
commit 532b9f1d47
2 changed files with 24 additions and 6 deletions

View File

@ -1,6 +1,6 @@
// let domain = process.env.APP_BASE_URL
let domain = 'http://192.168.1.188:48080'
let domain = process.env.APP_BASE_URL
// let domain = 'http://192.168.1.188:48080'
// let domain = 'http://api.cyywl.top'
module.exports = {

View File

@ -1,11 +1,11 @@
<template>
<view class="container">
<view class="navbar">
<view class="goback"></view>
<view class="goback" @tap="goBack"></view>
<view class="search">
<view class="icon"></view>
<view class="input">
<u--input placeholder="搜索我的订单" v-model="value" @change="change"></u--input>
<u--input placeholder="搜索我的订单" v-model="value"></u--input>
</view>
<view class="button">搜索</view>
</view>
@ -14,7 +14,7 @@
</view>
</view>
<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 class="item" @tap="goOrderDetails(123)">
@ -93,6 +93,7 @@
// #endif
import emptyPage from '@/components/emptyPage.vue'
export default {
// props:['status'],
components: {
payment,
home,
@ -110,6 +111,7 @@
orderData: {}, //
orderStatus: 0, //
page: 1,
tabVal: '',
list1: [{
name: '全部',
value: '99'
@ -157,10 +159,11 @@
};
},
computed: mapGetters(['isLogin', 'userInfo']),
onLoad(option) {
onLoad() {
this.loadmore()
},
onShow() {
this.tabVal = this.$route.query.status
if (this.isLogin) {
this.loadend = false;
this.page = 1;
@ -175,6 +178,21 @@
// }
},
methods: {
//
goBack(){
uni.navigateBack({
delta: 1
});
},
//
getTabVal(){
for(let i in this.list1){
if(this.list1[i].value == this.tabVal){
return i
}
}
},
getStatus(val) {
if (val == '0') {
return '待发货'