This commit is contained in:
yuanteng0011 2025-03-25 08:28:12 +08:00
parent ff4a81dd1a
commit c560083ae6
2 changed files with 11 additions and 2 deletions

View File

@ -4,7 +4,6 @@ export const dealResult = (res) => {
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
content: response.message, content: response.message,
showCancel: false,
success: (res) => { success: (res) => {
if(response.code === 40100) { if(response.code === 40100) {
if(res.confirm) { if(res.confirm) {

View File

@ -57,6 +57,8 @@
import { publicPath } from '../../../common/globalImagesUrl'; import { publicPath } from '../../../common/globalImagesUrl';
import { getFonts } from '../../../common/globalFont'; import { getFonts } from '../../../common/globalFont';
import { baseUrl } from '../../../api/request'; import { baseUrl } from '../../../api/request';
import { dealResult } from '../../../common/globalFunction';
const cookie = wx.getStorageSync('cookie')
const clothesInfo = ref({}) const clothesInfo = ref({})
const cnt = ref(1) const cnt = ref(1)
let singleAmount = 0 let singleAmount = 0
@ -84,7 +86,15 @@
totalAmount.value = singleAmount * cnt.value 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({ uni.navigateTo({
url: '/pages/clothesRent/clothesRentSubmitOrder/clothesRentSubmitOrder?id=' + clothesInfo.value.id + '&period=' + cnt.value url: '/pages/clothesRent/clothesRentSubmitOrder/clothesRentSubmitOrder?id=' + clothesInfo.value.id + '&period=' + cnt.value
}) })