From 786d862308608db4c21bb2cb8e64a9c6b807dfa4 Mon Sep 17 00:00:00 2001 From: chen-xin-zhi <3588068430@qq.com> Date: Sat, 22 Mar 2025 11:18:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=AE=8C=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/request.ts | 2 +- common/globalImagesUrl.js | 3 +- pages.json | 42 +++ pages/activity/activityMain/activityMain.vue | 6 + .../clotherRentOrderList.vue | 354 ++++++++++++++++++ .../clothesRentOrderDetail.vue | 317 ++++++++++++++++ .../clothesRentSubmitOrder.vue | 211 +++++++++++ .../component/clothesAttribute.vue | 192 ++++++++++ .../component/clothesAttributePlus.vue | 244 ++++++++++++ pages/coupon/CouponMall/CouponMall.vue | 1 - pages/coupon/component/couponPopup.vue | 6 +- pages/mine/component/contactPop.vue | 2 +- .../order/product-waitpay/product-waitpay.vue | 1 - pages/order/serviceWaitPay/serviceWaitPay.vue | 1 - .../order/singleGoodOrder/singleGoodOrder.vue | 1 - .../singleServiceWait/singleServiceWait.vue | 1 - pages/testPage/testPage.vue | 4 +- 17 files changed, 1375 insertions(+), 13 deletions(-) create mode 100644 pages/clothesRent/clotherRentOrderList/clotherRentOrderList.vue create mode 100644 pages/clothesRent/clothesRentOrderDetail/clothesRentOrderDetail.vue create mode 100644 pages/clothesRent/clothesRentSubmitOrder/clothesRentSubmitOrder.vue create mode 100644 pages/clothesRent/component/clothesAttribute.vue create mode 100644 pages/clothesRent/component/clothesAttributePlus.vue diff --git a/api/request.ts b/api/request.ts index 07f68f1..e4616ea 100644 --- a/api/request.ts +++ b/api/request.ts @@ -6,4 +6,4 @@ export const domain = 'https://www.carboner.cn:8888/api' export const myIp = 'http://8.130.119.119:9092/api' export const nwct = 'https://winning-mouse-internally.ngrok-free.app/api' export const suiUrl = '' -export const baseUrl = Url +export const baseUrl = domain diff --git a/common/globalImagesUrl.js b/common/globalImagesUrl.js index 152e28a..b4beced 100644 --- a/common/globalImagesUrl.js +++ b/common/globalImagesUrl.js @@ -11,4 +11,5 @@ export const homeUrl = publicPath + subPath + '/home' export const loginUrl = publicPath + subPath + '/login' export const orderUrl = publicPath + subPath + '/order' export const storeHomeUrl = publicPath + subPath + '/store-home' -export const mineUrl = publicPath + subPath + '/mine' \ No newline at end of file +export const mineUrl = publicPath + subPath + '/mine' +export const clothesRentUrl = publicPath + subPath + '/clothesRent' \ No newline at end of file diff --git a/pages.json b/pages.json index 0a64c74..ad4fff8 100644 --- a/pages.json +++ b/pages.json @@ -262,6 +262,48 @@ { "navigationBarTitleText" : "" } + }, + { + "path" : "pages/clothesRent/clotherRentOrderList/clotherRentOrderList", + "style" : + { + "navigationBarTitleText" : "" + } + }, + { + "path" : "pages/clothesRent/clothesRentSubmitOrder/clothesRentSubmitOrder", + "style" : + { + "navigationBarTitleText" : "" + } + }, + { + "path" : "pages/book/myPhotoProductsOrderDetail/myPhotoProductsOrderDetail", + "style" : + { + "navigationBarTitleText" : "" + } + }, + { + "path" : "pages/book/myPhotoProductDetail/myPhotoProductDetail", + "style" : + { + "navigationBarTitleText" : "" + } + }, + { + "path" : "pages/book/myPhotoProducts/myPhotoProducts", + "style" : + { + "navigationBarTitleText" : "" + } + }, + { + "path" : "pages/clothesRent/clothesRentOrderDetail/clothesRentOrderDetail", + "style" : + { + "navigationBarTitleText" : "" + } } ], "plugins" : { diff --git a/pages/activity/activityMain/activityMain.vue b/pages/activity/activityMain/activityMain.vue index baed949..7fa9154 100644 --- a/pages/activity/activityMain/activityMain.vue +++ b/pages/activity/activityMain/activityMain.vue @@ -22,10 +22,16 @@ import { homeUrl } from '../../../common/globalImagesUrl'; import { baseUrl } from '../../../api/request'; import { publicPath } from '../../../common/globalImagesUrl'; + import { getFZXZFont } from '../../../common/globalFont'; + import { onLoad } from "@dcloudio/uni-app"; const bkgUrl = ref(homeUrl + '/bkg.png') const articleList = ref([]) const cookie = wx.getStorageSync('cookie') + onLoad(() => { + getFZXZFont() + }) + onMounted(() => { getArticle() }) diff --git a/pages/clothesRent/clotherRentOrderList/clotherRentOrderList.vue b/pages/clothesRent/clotherRentOrderList/clotherRentOrderList.vue new file mode 100644 index 0000000..33ac745 --- /dev/null +++ b/pages/clothesRent/clotherRentOrderList/clotherRentOrderList.vue @@ -0,0 +1,354 @@ + + + + + diff --git a/pages/clothesRent/clothesRentOrderDetail/clothesRentOrderDetail.vue b/pages/clothesRent/clothesRentOrderDetail/clothesRentOrderDetail.vue new file mode 100644 index 0000000..d5f2992 --- /dev/null +++ b/pages/clothesRent/clothesRentOrderDetail/clothesRentOrderDetail.vue @@ -0,0 +1,317 @@ + + + + + + \ No newline at end of file diff --git a/pages/clothesRent/clothesRentSubmitOrder/clothesRentSubmitOrder.vue b/pages/clothesRent/clothesRentSubmitOrder/clothesRentSubmitOrder.vue new file mode 100644 index 0000000..d8fd77c --- /dev/null +++ b/pages/clothesRent/clothesRentSubmitOrder/clothesRentSubmitOrder.vue @@ -0,0 +1,211 @@ + + + + + diff --git a/pages/clothesRent/component/clothesAttribute.vue b/pages/clothesRent/component/clothesAttribute.vue new file mode 100644 index 0000000..3cebbec --- /dev/null +++ b/pages/clothesRent/component/clothesAttribute.vue @@ -0,0 +1,192 @@ + + + + + \ No newline at end of file diff --git a/pages/clothesRent/component/clothesAttributePlus.vue b/pages/clothesRent/component/clothesAttributePlus.vue new file mode 100644 index 0000000..a11e5d8 --- /dev/null +++ b/pages/clothesRent/component/clothesAttributePlus.vue @@ -0,0 +1,244 @@ + + + + + \ No newline at end of file diff --git a/pages/coupon/CouponMall/CouponMall.vue b/pages/coupon/CouponMall/CouponMall.vue index 65d7ffd..b6c0558 100644 --- a/pages/coupon/CouponMall/CouponMall.vue +++ b/pages/coupon/CouponMall/CouponMall.vue @@ -88,7 +88,6 @@ }) onUnmounted(() => { - emitter.emit('flushCouponList') emitter.off('closeConfirmPopup', closeConfirmPopupHandler) diff --git a/pages/coupon/component/couponPopup.vue b/pages/coupon/component/couponPopup.vue index ff4a578..48868a0 100644 --- a/pages/coupon/component/couponPopup.vue +++ b/pages/coupon/component/couponPopup.vue @@ -111,7 +111,7 @@ }) onUnmounted(() => { - uni.removeStorageSync('couponMap') + // uni.removeStorageSync('couponMap') emitter.off('getTotalPrice', getTotalPriceHandler) // emitter.off('flushCouponList', flushCouponListHandler) }) @@ -150,7 +150,7 @@ } const confirm = () => { - if (idx.value !== -1) { + if (idx.value !== -1 && isShow.value) { emitter.emit('getCouponObj', myCouponList.value[idx.value]) } emitter.emit('closeCoupon') @@ -193,7 +193,7 @@ const jumpToMall = () => { - uni.removeStorageSync('couponMap') + // uni.removeStorageSync('couponMap') uni.navigateTo({ url: '/pages/coupon/CouponMall/CouponMall' }) diff --git a/pages/mine/component/contactPop.vue b/pages/mine/component/contactPop.vue index 292a6ee..9bca8fa 100644 --- a/pages/mine/component/contactPop.vue +++ b/pages/mine/component/contactPop.vue @@ -10,7 +10,7 @@ 手机号码 - + 设为默认联系人 diff --git a/pages/order/product-waitpay/product-waitpay.vue b/pages/order/product-waitpay/product-waitpay.vue index 93e9077..61d0bfe 100644 --- a/pages/order/product-waitpay/product-waitpay.vue +++ b/pages/order/product-waitpay/product-waitpay.vue @@ -413,7 +413,6 @@ const wxPay = async( oid )=> { //传入订单id showLoading() debounceTimer = setTimeout(async () => { await getMyCouponList() - emitter.emit('flushCouponListHandler') hideLoading() }, 1000) } diff --git a/pages/order/serviceWaitPay/serviceWaitPay.vue b/pages/order/serviceWaitPay/serviceWaitPay.vue index 4ca7593..f358187 100644 --- a/pages/order/serviceWaitPay/serviceWaitPay.vue +++ b/pages/order/serviceWaitPay/serviceWaitPay.vue @@ -455,7 +455,6 @@ showLoading() debounceTimer = setTimeout(async () => { await getMyCouponList() - emitter.emit('flushCouponList') hideLoading() }, 1000) } diff --git a/pages/order/singleGoodOrder/singleGoodOrder.vue b/pages/order/singleGoodOrder/singleGoodOrder.vue index 0eef641..8681772 100644 --- a/pages/order/singleGoodOrder/singleGoodOrder.vue +++ b/pages/order/singleGoodOrder/singleGoodOrder.vue @@ -310,7 +310,6 @@ const updateAddressHandler = (val) => { showLoading() debounceTimer = setTimeout(async () => { await getMyCouponList() - emitter.emit('flushCouponList') hideLoading() }, 1000) } diff --git a/pages/order/singleServiceWait/singleServiceWait.vue b/pages/order/singleServiceWait/singleServiceWait.vue index df863d7..86a4dda 100644 --- a/pages/order/singleServiceWait/singleServiceWait.vue +++ b/pages/order/singleServiceWait/singleServiceWait.vue @@ -452,7 +452,6 @@ showLoading() debounceTimer = setTimeout(async () => { await getMyCouponList() - // emitter.emit('flushCouponList') hideLoading() }, 1000) } diff --git a/pages/testPage/testPage.vue b/pages/testPage/testPage.vue index fbbd35b..f16ade9 100644 --- a/pages/testPage/testPage.vue +++ b/pages/testPage/testPage.vue @@ -1,10 +1,10 @@