This commit is contained in:
yuanteng0011 2025-03-24 22:42:31 +08:00
parent a7fdfeadd7
commit 31efd8ef6c
6 changed files with 64 additions and 19 deletions

View File

@ -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 myIp = 'http://8.130.119.119:9092/api'
export const nwct = 'https://winning-mouse-internally.ngrok-free.app/api' export const nwct = 'https://winning-mouse-internally.ngrok-free.app/api'
export const suiUrl = '' export const suiUrl = ''
export const baseUrl = Url export const baseUrl = domain

View File

@ -4,7 +4,16 @@ export const dealResult = (res) => {
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
content: response.message, content: response.message,
showCancel: false showCancel: false,
success: (res) => {
if(response.code === 40100) {
if(res.confirm) {
uni.redirectTo({
url: '/pages/login/login'
})
}
}
}
}) })
return false return false
} }

View File

@ -15,7 +15,7 @@
<rich-text :nodes="obj.richText"></rich-text> <rich-text :nodes="obj.richText"></rich-text>
</view> </view>
<view class="flex-col justify-start items-center section_4 pos_4"> <view class="flex-col justify-start items-center section_4 pos_4">
<view class="flex-col justify-start items-center text-wrapper" @click="openPopup"><text class="text_3">立即租赁</text></view> <view class="flex-col justify-start items-center text-wrapper" @click="openPopup"><text class="text_3">立即预约</text></view>
</view> </view>
</view> </view>

View File

@ -60,11 +60,11 @@ import { homeUrl,bkgPubilcPath } from '../../common/globalImagesUrl';
const bkgUrl = ref(homeUrl + '/bkg.png') const bkgUrl = ref(homeUrl + '/bkg.png')
onShow(() => { onShow(() => {
uni.removeStorageSync('businessId') uni.removeStorageSync('businessId')
getMyUser()
}) })
onLoad(()=>{ onLoad(()=>{
getFonts() getFonts()
getZSFont() getZSFont()
getMyUser()
}) })
const getMyUser = async () =>{ const getMyUser = async () =>{
const res = await uni.request({ const res = await uni.request({
@ -76,15 +76,15 @@ const getMyUser = async () =>{
} }
}) })
console.log('获取用户信息==>',res.data) console.log('获取用户信息==>',res.data)
// if( res.data.code === 40100 ) { if( res.data.code === 40100 ) {
// uni.navigateTo({ // uni.navigateTo({
// url: '/pages/login/login' // url: '/pages/login/login'
// }) // })
// uni.showToast({ uni.showToast({
// icon: 'loading', icon: 'error',
// title: "" title: "未登录"
// }) })
// } }
} }
const jump_xiezhen =()=>{ // const jump_xiezhen =()=>{ //
uni.navigateTo({ uni.navigateTo({

View File

@ -42,7 +42,7 @@
</view> </view>
</view> </view>
</view> </view>
<view class="flex-col mt-20"> <view class="flex-col mt-20" v-if="nickName != '未登录'">
<view class="flex-col group_3"> <view class="flex-col group_3">
<view class="flex-row justify-between relative" @click="jump_addressList"> <view class="flex-row justify-between relative" @click="jump_addressList">
<image class="image_3" :src="mineUrl + '/main/address.png'" /> <image class="image_3" :src="mineUrl + '/main/address.png'" />
@ -96,6 +96,16 @@
</view> </view>
</view> </view>
</view> </view>
<view class="flex-col mt-20" v-if="nickName === '未登录'">
<view class="flex-col group_3">
<view class="flex-row justify-between relative" @click="gotoLogin">
<image class="image_3" :src="mineUrl + '/main/logout.png'" />
<image class="self-start image_4 image_5" :src="mineUrl + '/main/yjt.png'" />
<text class="font_2 text_8 pos"> </text>
<!-- <view class="divider pos_2"></view> -->
</view>
</view>
</view>
</view> </view>
</template> </template>
@ -121,10 +131,21 @@
uni.stopPullDownRefresh() // uni.stopPullDownRefresh() //
}, 1000) }, 1000)
}) })
onShow( async ()=>{
await getMyUser()
})
onLoad(() => { onLoad(() => {
getFonts() //使 getFonts() //使
}) })
const gotoLogin = () => {
uni.redirectTo({
url: '/pages/login/login'
})
}
onMounted(() => { onMounted(() => {
getMyUser() getMyUser()
@ -284,7 +305,7 @@
if(res.data.code === 40100) { if(res.data.code === 40100) {
nickName.value = '未登录' nickName.value = '未登录'
uni.showToast({ uni.showToast({
icon: 'fail', icon: 'error',
title: '未登录' title: '未登录'
}) })
} else if(res.data.code === 1) { } else if(res.data.code === 1) {

View File

@ -1,5 +1,5 @@
<template> <template>
<view class="flex-col page" :style="{ backgroundImage: 'url(' + bkgUrl + ')' }"> <view class="flex-col page" :style="{ backgroundImage: 'url(' + bkgPubilcPath + ')' }">
<!-- <image <!-- <image
mode="aspectFit" mode="aspectFit"
class="self-stretch image" class="self-stretch image"
@ -42,7 +42,7 @@
</view> </view>
</view> </view>
<view> <view class="book-selected">
<rich-text :nodes="richTextcontent"></rich-text> <rich-text :nodes="richTextcontent"></rich-text>
</view> </view>
@ -96,8 +96,10 @@ import { baseUrl } from '../../../api/request';
import emitter from '../../../utils/emitter' import emitter from '../../../utils/emitter'
import addProduct from '../../Shopping-cart/component/addProduct.vue'; import addProduct from '../../Shopping-cart/component/addProduct.vue';
import { dealResult } from '../../../common/globalFunction'; import { dealResult } from '../../../common/globalFunction';
import { storeHomeUrl } from '../../../common/globalImagesUrl'; import { storeHomeUrl,bkgPubilcPath } from '../../../common/globalImagesUrl';
import { publicPath } from '../../../common/globalImagesUrl'; import { publicPath } from '../../../common/globalImagesUrl';
const popup = ref(null) // const popup = ref(null) //
const goodObject = ref({}) // const goodObject = ref({}) //
const idInfo = ref(0) //id const idInfo = ref(0) //id
@ -215,6 +217,17 @@ const checkGeneralGood = async () => {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.book-selected {
height: 1100rpx;
justify-content: center;
background-color: #fff;
border-radius: 20rpx 20rpx 0 0;
padding: 20rpx;
margin: 36rpx auto;
width: 736rpx;
}
button::after { button::after {
border: none; border: none;
} }
@ -245,6 +258,8 @@ button::after {
padding-top: 19.2rpx; padding-top: 19.2rpx;
background-color: #ffffff; background-color: #ffffff;
border-radius: 18.75rpx; border-radius: 18.75rpx;
margin: 0 auto;
width: 736rpx;
} }
.group { .group {
margin-left: 14.16rpx; margin-left: 14.16rpx;
@ -296,7 +311,7 @@ button::after {
margin-top: 18.28rpx; margin-top: 18.28rpx;
} }
.group_4 { .group_4 {
padding: 10.56rpx 0 32.04rpx; padding: 10.56rpx 1rpx 32.04rpx 0;
} }
.font_2 { .font_2 {
font-size: 26.25rpx; font-size: 26.25rpx;