2 Commits

  1. 1
      src/subpackage/order/pages/booking_card/modules/refund_modal.vue
  2. 4
      src/subpackage/order/pages/booking_card/order_info.vue
  3. 7
      src/subpackage/order/pages/booking_card/order_list.vue
  4. BIN
      src/subpackage/party/static/index/p-arrow.png
  5. BIN
      src/subpackage/party/static/index/p-bg-1.png
  6. BIN
      src/subpackage/party/static/index/p-bg-2.png
  7. BIN
      src/subpackage/party/static/index/p-bg-3.png
  8. BIN
      src/subpackage/party/static/index/p-bg-s-1.png
  9. BIN
      src/subpackage/party/static/index/p-bg-s-2.png
  10. BIN
      src/subpackage/party/static/index/p-bg-s-3.png
  11. BIN
      src/subpackage/party/static/index/qr-img.png
  12. BIN
      src/subpackage/party/static/login/kuang.png
  13. BIN
      src/subpackage/party/static/login/logo.png
  14. BIN
      src/subpackage/party/static/login/slogn.png
  15. BIN
      src/subpackage/party/static/miniapp/can_auth_bg.png
  16. BIN
      src/subpackage/party/static/miniapp/no_can_auth_bg.png
  17. BIN
      src/subpackage/party/static/miniapp/regular_success.png
  18. BIN
      src/subpackage/party/static/regist/camera.png
  19. BIN
      src/subpackage/party/static/regist/daojishi.png
  20. BIN
      src/subpackage/party/static/upload/icon-camera.png

1
src/subpackage/order/pages/booking_card/modules/refund_modal.vue

@ -51,7 +51,6 @@
<input
class="or-ipt" type="digit"
v-model="iptInfo.refund_time"
:disabled="refundInfo.refund_times > 0"
:class="{ 'or-disabled': refundInfo.refund_times > 0 }"
/>
<view class="or-tip">可扣减时间{{ refundInfo.refundable_hours || 0 }}小时</view>

4
src/subpackage/order/pages/booking_card/order_info.vue

@ -47,7 +47,7 @@
<view class="bb-content">
<kv-line label="支付方式:">{{ orderInfo.pay_type_text || '-' }}</kv-line>
<kv-line label="支付时间:">{{ orderInfo.pay_time || '-' }}</kv-line>
<kv-line label="微信交易号:" v-if="orderInfo.trade_no">{{ orderInfo.trade_no || '-' }}</kv-line>
<kv-line label="交易号:" v-if="orderInfo.trade_no">{{ orderInfo.trade_no || '-' }}</kv-line>
</view>
</view>
<!-- 退款列表 -->
@ -62,7 +62,7 @@
></order-refund-info>
</view>
<view class="bc-fixed" v-if="refunds.length < 2 && orderInfo.pay_amount > 0">
<view class="bc-fixed" v-if="refunds.length < 2 && extension.refundable_amount > 0">
<view class="bf-btn" @click="refundBtn">退款</view>
</view>

7
src/subpackage/order/pages/booking_card/order_list.vue

@ -8,6 +8,8 @@
@click:search="searchOrder"
:start-time="condition.start"
:end-time="condition.end"
:success-count="lsInfo.success_count"
:refund-count="lsInfo.refund_count"
></order-list-header>
<view class="bc-list">
<block v-for="(e, i) in orderLs" :key="i">
@ -62,6 +64,7 @@ export default {
},
orderLs: [],
page: 1,
lsInfo: {}
}
},
watch: {
@ -161,7 +164,9 @@ export default {
hideLoad();
let _data = res?.data || {};
if(_data.code === 0){
let _ls = _data?.data?.list || [];
let { list, ..._lsInfo } = _data?.data || {};
let _ls = list || [];
this.lsInfo = _lsInfo;
if(page === 1)return this.orderLs = _ls;
if(_ls.length <= 0)return showNone('没有更多!');
this.orderLs = [...this.orderLs, ..._ls];

BIN
src/subpackage/party/static/index/p-arrow.png

Before

Width: 24  |  Height: 25  |  Size: 1.1 KiB

After

Width: 24  |  Height: 25  |  Size: 960 B

BIN
src/subpackage/party/static/index/p-bg-1.png

Before

Width: 160  |  Height: 88  |  Size: 7.0 KiB

After

Width: 160  |  Height: 88  |  Size: 4.9 KiB

BIN
src/subpackage/party/static/index/p-bg-2.png

Before

Width: 160  |  Height: 88  |  Size: 7.9 KiB

After

Width: 160  |  Height: 88  |  Size: 5.5 KiB

BIN
src/subpackage/party/static/index/p-bg-3.png

Before

Width: 335  |  Height: 88  |  Size: 13 KiB

After

Width: 335  |  Height: 88  |  Size: 7.5 KiB

BIN
src/subpackage/party/static/index/p-bg-s-1.png

Before

Width: 88  |  Height: 88  |  Size: 4.7 KiB

After

Width: 88  |  Height: 88  |  Size: 3.6 KiB

BIN
src/subpackage/party/static/index/p-bg-s-2.png

Before

Width: 88  |  Height: 88  |  Size: 4.8 KiB

After

Width: 88  |  Height: 88  |  Size: 3.3 KiB

BIN
src/subpackage/party/static/index/p-bg-s-3.png

Before

Width: 88  |  Height: 88  |  Size: 4.6 KiB

After

Width: 88  |  Height: 88  |  Size: 3.4 KiB

BIN
src/subpackage/party/static/index/qr-img.png

Before

Width: 424  |  Height: 434  |  Size: 26 KiB

After

Width: 424  |  Height: 434  |  Size: 13 KiB

BIN
src/subpackage/party/static/login/kuang.png

Before

Width: 40  |  Height: 40  |  Size: 437 B

After

Width: 40  |  Height: 40  |  Size: 341 B

BIN
src/subpackage/party/static/login/logo.png

Before

Width: 112  |  Height: 112  |  Size: 6.4 KiB

After

Width: 112  |  Height: 112  |  Size: 3.7 KiB

BIN
src/subpackage/party/static/login/slogn.png

Before

Width: 700  |  Height: 550  |  Size: 130 KiB

After

Width: 700  |  Height: 550  |  Size: 65 KiB

BIN
src/subpackage/party/static/miniapp/can_auth_bg.png

Before

Width: 670  |  Height: 176  |  Size: 56 KiB

After

Width: 670  |  Height: 176  |  Size: 24 KiB

BIN
src/subpackage/party/static/miniapp/no_can_auth_bg.png

Before

Width: 670  |  Height: 176  |  Size: 66 KiB

After

Width: 670  |  Height: 176  |  Size: 25 KiB

BIN
src/subpackage/party/static/miniapp/regular_success.png

Before

Width: 100  |  Height: 102  |  Size: 3.6 KiB

After

Width: 100  |  Height: 102  |  Size: 2.7 KiB

BIN
src/subpackage/party/static/regist/camera.png

Before

Width: 48  |  Height: 40  |  Size: 780 B

After

Width: 48  |  Height: 40  |  Size: 640 B

BIN
src/subpackage/party/static/regist/daojishi.png

Before

Width: 100  |  Height: 100  |  Size: 3.5 KiB

After

Width: 100  |  Height: 100  |  Size: 2.5 KiB

BIN
src/subpackage/party/static/upload/icon-camera.png

Before

Width: 24  |  Height: 20  |  Size: 445 B

After

Width: 24  |  Height: 20  |  Size: 381 B

Loading…
Cancel
Save