From c560083ae62815912bc6d268dde09bff75c1afec Mon Sep 17 00:00:00 2001 From: yuanteng0011 <1876787513@qq.com> Date: Tue, 25 Mar 2025 08:28:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/globalFunction.js | 1 - pages/clothesRent/component/clothesAttribute.vue | 12 +++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/common/globalFunction.js b/common/globalFunction.js index 9f48605..1f14631 100644 --- a/common/globalFunction.js +++ b/common/globalFunction.js @@ -4,7 +4,6 @@ export const dealResult = (res) => { uni.showModal({ title: '提示', content: response.message, - showCancel: false, success: (res) => { if(response.code === 40100) { if(res.confirm) { diff --git a/pages/clothesRent/component/clothesAttribute.vue b/pages/clothesRent/component/clothesAttribute.vue index 0dbc6eb..a692310 100644 --- a/pages/clothesRent/component/clothesAttribute.vue +++ b/pages/clothesRent/component/clothesAttribute.vue @@ -57,6 +57,8 @@ import { publicPath } from '../../../common/globalImagesUrl'; import { getFonts } from '../../../common/globalFont'; import { baseUrl } from '../../../api/request'; +import { dealResult } from '../../../common/globalFunction'; + const cookie = wx.getStorageSync('cookie') const clothesInfo = ref({}) const cnt = ref(1) let singleAmount = 0 @@ -84,7 +86,15 @@ totalAmount.value = singleAmount * cnt.value } - const gotoSubmitOrder = () => { + const gotoSubmitOrder = async () => { + const res = await uni.request({ + url: baseUrl + '/user/get/login', + method: 'GET', + header: { + cookie + } + }) + if(!dealResult(res)) return uni.navigateTo({ url: '/pages/clothesRent/clothesRentSubmitOrder/clothesRentSubmitOrder?id=' + clothesInfo.value.id + '&period=' + cnt.value })