From eafbc58bc08a1d594ea8c7614fba475181674483 Mon Sep 17 00:00:00 2001 From: aihe <961836564@qq.com> Date: Wed, 31 Jul 2024 23:37:10 +0800 Subject: [PATCH] uu --- common/api/url.js | 2 +- common/custom.scss | 16 ++++++++++++++++ components/buns-edit-sheet/buns-edit-sheet.vue | 13 +++++++++++-- .../bpd-send-reciever-tmp.vue | 13 +++++++++++-- .../bpe-bindedpost-tmp.vue | 4 ++-- .../bpe-gooditem-edit-tmp.vue | 15 +++++++-------- .../bpe-gooditem-filed-edit-tmp.vue | 8 ++++---- .../bpe-gooditemsize-tmp.vue | 17 ++++------------- components/tpx-tags/tpx-tags.vue | 4 ++-- components/tpx-text-item/tpx-text-item.vue | 6 ++++++ pages/post/post.vue | 8 ++++---- pages/post/query.vue | 6 +++--- pages/tabBar/mine/mine.vue | 14 +++++++------- 13 files changed, 78 insertions(+), 48 deletions(-) diff --git a/common/api/url.js b/common/api/url.js index 07e9b0b..6579bf2 100644 --- a/common/api/url.js +++ b/common/api/url.js @@ -39,7 +39,7 @@ export default { warehouseInList: `/oms2c/emisWarehouseIn/listSimple`, // 下单-进仓单列表 getOrderList: `/oms2c/emisWaybill/listSimple`, // 订单列表 -- DONE getOrderDetail: `/oms2c/emisWaybill/getWaybillDetail`, // 订单详情 -- DONE - cancelOrder: `/emis/emisWaybill/cancelOrder`, // 取消订单 -- DONE + cancelOrder: `/oms2c/emisWaybill/cancelOrder`, // 取消订单 -- DONE sendBindMonthPayCode: `/oms2c/emisWaybill/bindMonthPayCode`, // 绑月结卡-发送邮件验证码 -- DONE verifyBindMonthPayCode: `/oms2c/emisWaybill/verifyBindMonthPayCode`, // 确认绑定月结卡 -- DONE scanRecord: `/oms2c/emisTmsScanRecord/scan`, // 扫描- 揽收 diff --git a/common/custom.scss b/common/custom.scss index 3d15e04..8014d71 100644 --- a/common/custom.scss +++ b/common/custom.scss @@ -57,6 +57,22 @@ display: none; } } +.lbRequiredDot{ + position: relative; + &::after{ + height: 26rpx; + line-height: 26rpx; + display: block; + content: '*'; + position: absolute; + color: red; + top: 50%; + margin-top: -10rpx; + left: -16rpx; + font-size: 30rpx; + font-weight: bold; + } +} .smp-tag{ margin: 0 20rpx 20rpx 0; display: inline-block; } diff --git a/components/buns-edit-sheet/buns-edit-sheet.vue b/components/buns-edit-sheet/buns-edit-sheet.vue index 03c1165..b08975e 100644 --- a/components/buns-edit-sheet/buns-edit-sheet.vue +++ b/components/buns-edit-sheet/buns-edit-sheet.vue @@ -1,9 +1,13 @@ diff --git a/components/tpx-tags/tpx-tags.vue b/components/tpx-tags/tpx-tags.vue index 7c998e4..bd6b04a 100644 --- a/components/tpx-tags/tpx-tags.vue +++ b/components/tpx-tags/tpx-tags.vue @@ -72,8 +72,8 @@ handleoItemClick({ curItem }) { this.$emit('onItemClick', curItem) }, - handleChange(val) { - this.$emit('onChange', val) + handleChange(val, text, checkedList) { + this.$emit('onChange', val, text, checkedList) this.$emit('update:value', val) } } diff --git a/components/tpx-text-item/tpx-text-item.vue b/components/tpx-text-item/tpx-text-item.vue index cba404a..801cbe4 100644 --- a/components/tpx-text-item/tpx-text-item.vue +++ b/components/tpx-text-item/tpx-text-item.vue @@ -1,6 +1,7 @@