Commit 0e9dc5431300740bee1ef0861266e6ae6c7ba14d

Authored by tianwu
1 parent 98321197

左侧返回按钮和注释掉去付款

project-wl-kuaidiyuan-uniapp-vue3/src/components/uni-nav/index.vue
1 1 <template>
2 2 <uni-nav-bar :title="title" statusBar="true" fixed="true" v-if="isLeftText"></uni-nav-bar>
3   - <uni-nav-bar v-else @clickLeft="goBack" left-icon="back" leftIcon="arrowleft" :title="title" statusBar="true" fixed="true" :right-text="rithtText" @clickRight="handleAll"></uni-nav-bar>
  3 + <uni-nav-bar v-else @clickLeft="goBack" :title="title" statusBar="true" fixed="true" :right-text="rithtText" @clickRight="handleAll">
  4 + <template #left>
  5 + <image src="/static/back-filled.png" class="left-image"></image>
  6 + </template>
  7 + </uni-nav-bar>
4 8 </template>
5 9  
6 10 <script setup>
... ... @@ -32,3 +36,9 @@ const handleAll = ()=&gt;{
32 36 emit('handleAll')
33 37 }
34 38 </script>
  39 +<style lang="scss" scoped>
  40 +.left-image {
  41 + height: 64rpx;
  42 + width: 32rpx;
  43 +}
  44 +</style>
35 45 \ No newline at end of file
... ...
project-wl-kuaidiyuan-uniapp-vue3/src/pages/history/commponents/delivery.vue
... ... @@ -38,7 +38,7 @@
38 38 v-if="item.status === 1"
39 39 ><button class="uni-btn btn-default">去派件</button></text
40 40 >
41   - <text
  41 + <!-- <text
42 42 @click.stop="handleDetails($event, item)"
43 43 class="delete"
44 44 v-else-if="
... ... @@ -48,7 +48,7 @@
48 48 item.signStatus !== 2
49 49 "
50 50 ><button class="uni-btn btn-default">去收款</button></text
51   - >
  51 + > -->
52 52 <text @click.stop="handleOpen($event, item.id)" class="delete" v-else
53 53 ><button class="uni-btn concelBtn">删除</button></text
54 54 >
... ...
project-wl-kuaidiyuan-uniapp-vue3/src/pages/history/commponents/pickup.vue
... ... @@ -37,7 +37,7 @@
37 37 v-if="item.status === 1"
38 38 ><button class="uni-btn btn-default">去取件</button></text
39 39 >
40   - <text
  40 + <!-- <text
41 41 @click.stop="handleDetails($event, item)"
42 42 class="delete"
43 43 v-else-if="
... ... @@ -46,7 +46,7 @@
46 46 item.paymentMethod === 1
47 47 "
48 48 ><button class="uni-btn btn-default">去收款</button></text
49   - >
  49 + > -->
50 50 <text @click.stop="handleOpen($event, item.id)" class="delete" v-else
51 51 ><button class="uni-btn concelBtn">删除</button></text
52 52 >
... ...
project-wl-kuaidiyuan-uniapp-vue3/src/pages/pay/index.vue
... ... @@ -10,22 +10,22 @@
10 10 <icon></icon>
11 11 <view>{{ users.isDelivery ? "签收成功" : "取件成功" }}</view>
12 12 <view class="btnBox" v-if="users.isDelivery">
13   - <navigator
  13 + <!-- <navigator
14 14 url="/pages/pay/scanPay?pay=true"
15 15 open-type="redirect"
16 16 v-if="type === '2'"
17 17 >去收款</navigator
18   - >
19   - <view class="navigator-wrap" v-else @click="handleBack">返回主页</view>
  18 + > -->
  19 + <view class="navigator-wrap" @click="handleBack">返回主页</view>
20 20 </view>
21 21 <view class="btnBox" v-else>
22   - <navigator
  22 + <!-- <navigator
23 23 url="/pages/pay/scanPay?pay=true"
24 24 open-type="redirect"
25 25 v-if="type === '1'"
26 26 >去收款</navigator
27   - >
28   - <view class="navigator-wrap" v-else @click="handleBack">返回主页</view>
  27 + > -->
  28 + <view class="navigator-wrap" @click="handleBack">返回主页</view>
29 29 </view>
30 30 </view>
31 31 </template>
... ...
project-wl-kuaidiyuan-uniapp-vue3/src/pages/pickup/components/components/alreadyParcel.vue
... ... @@ -18,9 +18,9 @@
18 18 <view class="address">取件地址:{{ item.address }}</view>
19 19 <view class="time">取件时间:{{ item.taskTime }}</view>
20 20 <view class="time" v-if="item.amount > 0 && item.status === 2 && item.paymentMethod === 1">运费:{{ item.amount }}元</view>
21   - <text @click.stop="handleDetails($event, item)" class="delete" v-if="item.status === 2 && item.paymentStatus === 1 && item.paymentMethod === 1">
  21 + <!-- <text @click.stop="handleDetails($event, item)" class="delete" v-if="item.status === 2 && item.paymentStatus === 1 && item.paymentMethod === 1">
22 22 <button class="uni-btn btn-default">去收款</button>
23   - </text>
  23 + </text> -->
24 24 </view>
25 25 </view>
26 26 </view>
... ...
project-wl-kuaidiyuan-uniapp-vue3/src/pages/search/components/Accomplish.vue
... ... @@ -8,7 +8,7 @@
8 8 <view class="time" v-if="item.amount > 0 && item.status === 2"
9 9 >运费:{{ item.amount }}元</view
10 10 >
11   - <text
  11 + <!-- <text
12 12 @click.stop="handleDetails($event, item)"
13 13 class="delete"
14 14 v-if="
... ... @@ -18,7 +18,7 @@
18 18 "
19 19 >
20 20 <button class="uni-btn btn-default">去收款</button>
21   - </text>
  21 + </text> -->
22 22 </view>
23 23 </template>
24 24 <script setup>
... ...
project-wl-kuaidiyuan-uniapp-vue3/src/pages/search/components/AlreadyPicUp.vue
... ... @@ -10,7 +10,7 @@
10 10 v-if="item.amount > 0 && item.status === 2 && item.paymentMethod === 1"
11 11 >运费:{{ item.amount }}元</view
12 12 >
13   - <text
  13 + <!-- <text
14 14 @click.stop="handleDetails($event, item)"
15 15 class="delete"
16 16 v-if="
... ... @@ -20,7 +20,7 @@
20 20 "
21 21 >
22 22 <button class="uni-btn btn-default">去收款</button>
23   - </text>
  23 + </text> -->
24 24 </view>
25 25 </template>
26 26 <script setup>
... ...
project-wl-kuaidiyuan-uniapp-vue3/src/pages/search/components/SignFor.vue
... ... @@ -8,7 +8,7 @@
8 8 <view class="time" v-if="item.amount > 0 && item.status === 2"
9 9 >运费:{{ item.amount }}元</view
10 10 >
11   - <text
  11 + <!-- <text
12 12 @click.stop="handleDetails($event, item)"
13 13 class="delete"
14 14 v-if="
... ... @@ -18,7 +18,7 @@
18 18 "
19 19 >
20 20 <button class="uni-btn btn-default">去收款</button>
21   - </text>
  21 + </text> -->
22 22 </view>
23 23 </template>
24 24 <script setup>
... ...
project-wl-kuaidiyuan-uniapp-vue3/src/pages/search/components/StayPicUp.vue
... ... @@ -15,7 +15,7 @@
15 15 {{ overTimeFormat(item.estimatedEndTime) }}</view
16 16 >
17 17 <view class="time" v-else>运单号:{{ item.transportOrderId }}</view>
18   - <text
  18 + <!-- <text
19 19 @click.stop="handleDetails($event, item)"
20 20 class="delete"
21 21 v-if="
... ... @@ -26,7 +26,7 @@
26 26 "
27 27 >
28 28 <button class="uni-btn btn-default">去收款</button>
29   - </text>
  29 + </text> -->
30 30 </view>
31 31 </template>
32 32 <script setup>
... ...
project-wl-kuaidiyuan-uniapp-vue3/src/static/back-filled.png 0 → 100644

210 Bytes