|
@@ -7,7 +7,7 @@
|
|
|
<view class="left">
|
|
|
<image style="width: 116rpx;height: 116rpx;border-radius: 50%;" src="" mode=""></image>
|
|
|
<view class="" style="margin-left: 22rpx;padding: 20rpx 0 0 0 ;">
|
|
|
- <text class="login">登录/注册</text>
|
|
|
+ <text class="login" @click="tologin">登录/注册</text>
|
|
|
<view class="look">登录后可使用全部功能</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -25,33 +25,33 @@
|
|
|
<view class="order">
|
|
|
<view class="u-flex u-row-between">
|
|
|
<text class="order_text">我的订单</text>
|
|
|
- <view class="u-flex " @click="toorder">
|
|
|
- <text class="order_all">全部订单</text>
|
|
|
+ <view class="u-flex " @click="toorder(0)">
|
|
|
+ <text class="order_all">全部订单</text>
|
|
|
<u-icon name="arrow-right" color='#999999;' size="16"></u-icon>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="icon u-flex u-row-around">
|
|
|
- <view class="u-flex-col u-col-center ">
|
|
|
+ <view class="u-flex-col u-col-center " @click='toorder(1)'>
|
|
|
<image style="height: 50rpx;width: 50rpx;" src="/static/images/dfk.png" mode=""></image>
|
|
|
<text class="icon_text">待付款</text>
|
|
|
</view>
|
|
|
- <view class="u-flex-col u-col-center ">
|
|
|
+ <view class="u-flex-col u-col-center " @click='toorder(2)'>
|
|
|
<image style="height: 50rpx;width: 50rpx;" src="/static/images/dfh.png" mode=""></image>
|
|
|
<text class="icon_text">待发货</text>
|
|
|
</view>
|
|
|
- <view class="u-flex-col u-col-center ">
|
|
|
+ <view class="u-flex-col u-col-center " @click='toorder(3)'>
|
|
|
<image style="height: 50rpx;width: 50rpx;" src="/static/images/ywc.png" mode=""></image>
|
|
|
<text class="icon_text">待收货</text>
|
|
|
</view>
|
|
|
- <view class="u-flex-col u-col-center ">
|
|
|
+ <view class="u-flex-col u-col-center " @click='toorder(4)'>
|
|
|
<image style="height: 50rpx;width: 50rpx;" src="" mode=""></image>
|
|
|
<text class="icon_text">待评价</text>
|
|
|
</view>
|
|
|
- <view class="u-flex-col u-col-center ">
|
|
|
+ <view class="u-flex-col u-col-center " @click='toorder(5)'>
|
|
|
<image style="height: 50rpx;width: 50rpx;" src="/static/images/ywc.png" mode=""></image>
|
|
|
<text class="icon_text">已完成</text>
|
|
|
</view>
|
|
|
- <view class="u-flex-col u-col-center ">
|
|
|
+ <view class="u-flex-col u-col-center " @click='toorder(6)'>
|
|
|
<image style="height: 50rpx;width: 50rpx;" src="" mode=""></image>
|
|
|
<text class="icon_text">售后</text>
|
|
|
</view>
|
|
@@ -102,7 +102,9 @@
|
|
|
<view class="order_all">优惠提前知道</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <button class="u-flex bor" type="default" style="background-color: rgba(0, 0, 0, 0);padding: 0;margin: 0;line-height: 0;margin-left: 0;text-align: left;border: 0rpx solid rgba(0, 0, 0, 0);" open-type="contact" >
|
|
|
+ <button class="u-flex bor" type="default"
|
|
|
+ style="background-color: rgba(0, 0, 0, 0);padding: 0;margin: 0;line-height: 0;margin-left: 0;text-align: left;border: 0rpx solid rgba(0, 0, 0, 0);"
|
|
|
+ open-type="contact">
|
|
|
<image style="width: 84rpx;height: 84rpx;" src="/static/images/kefu.png" mode=""></image>
|
|
|
<view class="" style="margin-left: 24rpx;">
|
|
|
<text class="order_text">我的客服</text>
|
|
@@ -168,9 +170,14 @@
|
|
|
|
|
|
},
|
|
|
methods: {
|
|
|
- toorder() {
|
|
|
+ tologin() {
|
|
|
+ uni.reLaunch({
|
|
|
+ url: '/pages/login/login'
|
|
|
+ })
|
|
|
+ },
|
|
|
+ toorder(current) {
|
|
|
uni.navigateTo({
|
|
|
- url: '/pageA/orderinfo'
|
|
|
+ url: '/pageA/orderinfo?current=' + current
|
|
|
})
|
|
|
},
|
|
|
toduihuan() {
|
|
@@ -193,9 +200,10 @@
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
|
- .bor::after{
|
|
|
- border:none
|
|
|
+ .bor::after {
|
|
|
+ border: none
|
|
|
}
|
|
|
+
|
|
|
.page {
|
|
|
min-height: 100vh;
|
|
|
padding: 0 24rpx;
|