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 })