合并
This commit is contained in:
parent
a7fdfeadd7
commit
31efd8ef6c
|
@ -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
|
||||
|
|
|
@ -4,7 +4,16 @@ export const dealResult = (res) => {
|
|||
uni.showModal({
|
||||
title: '提示',
|
||||
content: response.message,
|
||||
showCancel: false
|
||||
showCancel: false,
|
||||
success: (res) => {
|
||||
if(response.code === 40100) {
|
||||
if(res.confirm) {
|
||||
uni.redirectTo({
|
||||
url: '/pages/login/login'
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
return false
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<rich-text :nodes="obj.richText"></rich-text>
|
||||
</view>
|
||||
<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>
|
||||
|
||||
|
|
|
@ -60,11 +60,11 @@ import { homeUrl,bkgPubilcPath } from '../../common/globalImagesUrl';
|
|||
const bkgUrl = ref(homeUrl + '/bkg.png')
|
||||
onShow(() => {
|
||||
uni.removeStorageSync('businessId')
|
||||
getMyUser()
|
||||
})
|
||||
onLoad(()=>{
|
||||
getFonts()
|
||||
getZSFont()
|
||||
getMyUser()
|
||||
})
|
||||
const getMyUser = async () =>{
|
||||
const res = await uni.request({
|
||||
|
@ -76,15 +76,15 @@ const getMyUser = async () =>{
|
|||
}
|
||||
})
|
||||
console.log('获取用户信息==>',res.data)
|
||||
// if( res.data.code === 40100 ) {
|
||||
// uni.navigateTo({
|
||||
// url: '/pages/login/login'
|
||||
// })
|
||||
// uni.showToast({
|
||||
// icon: 'loading',
|
||||
// title: "请登录"
|
||||
// })
|
||||
// }
|
||||
if( res.data.code === 40100 ) {
|
||||
// uni.navigateTo({
|
||||
// url: '/pages/login/login'
|
||||
// })
|
||||
uni.showToast({
|
||||
icon: 'error',
|
||||
title: "未登录"
|
||||
})
|
||||
}
|
||||
}
|
||||
const jump_xiezhen =()=>{ //跳转写真预约
|
||||
uni.navigateTo({
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
</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-row justify-between relative" @click="jump_addressList">
|
||||
<image class="image_3" :src="mineUrl + '/main/address.png'" />
|
||||
|
@ -96,6 +96,16 @@
|
|||
</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>
|
||||
</template>
|
||||
|
||||
|
@ -122,10 +132,21 @@
|
|||
}, 1000)
|
||||
})
|
||||
|
||||
onShow( async ()=>{
|
||||
await getMyUser()
|
||||
})
|
||||
|
||||
|
||||
onLoad(() => {
|
||||
getFonts() //启动使从服务器下载字体
|
||||
})
|
||||
|
||||
const gotoLogin = () => {
|
||||
uni.redirectTo({
|
||||
url: '/pages/login/login'
|
||||
})
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
getMyUser()
|
||||
})
|
||||
|
@ -284,7 +305,7 @@
|
|||
if(res.data.code === 40100) {
|
||||
nickName.value = '未登录'
|
||||
uni.showToast({
|
||||
icon: 'fail',
|
||||
icon: 'error',
|
||||
title: '未登录'
|
||||
})
|
||||
} else if(res.data.code === 1) {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<view class="flex-col page" :style="{ backgroundImage: 'url(' + bkgUrl + ')' }">
|
||||
<view class="flex-col page" :style="{ backgroundImage: 'url(' + bkgPubilcPath + ')' }">
|
||||
<!-- <image
|
||||
mode="aspectFit"
|
||||
class="self-stretch image"
|
||||
|
@ -42,7 +42,7 @@
|
|||
</view>
|
||||
</view>
|
||||
|
||||
<view>
|
||||
<view class="book-selected">
|
||||
<rich-text :nodes="richTextcontent"></rich-text>
|
||||
</view>
|
||||
|
||||
|
@ -96,8 +96,10 @@ import { baseUrl } from '../../../api/request';
|
|||
import emitter from '../../../utils/emitter'
|
||||
import addProduct from '../../Shopping-cart/component/addProduct.vue';
|
||||
import { dealResult } from '../../../common/globalFunction';
|
||||
import { storeHomeUrl } from '../../../common/globalImagesUrl';
|
||||
import { storeHomeUrl,bkgPubilcPath } from '../../../common/globalImagesUrl';
|
||||
import { publicPath } from '../../../common/globalImagesUrl';
|
||||
|
||||
|
||||
const popup = ref(null) //弹窗对象
|
||||
const goodObject = ref({}) //商品对象
|
||||
const idInfo = ref(0) //发送到下一页的商品id
|
||||
|
@ -215,6 +217,17 @@ const checkGeneralGood = async () => {
|
|||
</script>
|
||||
|
||||
<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 {
|
||||
border: none;
|
||||
}
|
||||
|
@ -245,6 +258,8 @@ button::after {
|
|||
padding-top: 19.2rpx;
|
||||
background-color: #ffffff;
|
||||
border-radius: 18.75rpx;
|
||||
margin: 0 auto;
|
||||
width: 736rpx;
|
||||
}
|
||||
.group {
|
||||
margin-left: 14.16rpx;
|
||||
|
@ -296,7 +311,7 @@ button::after {
|
|||
margin-top: 18.28rpx;
|
||||
}
|
||||
.group_4 {
|
||||
padding: 10.56rpx 0 32.04rpx;
|
||||
padding: 10.56rpx 1rpx 32.04rpx 0;
|
||||
}
|
||||
.font_2 {
|
||||
font-size: 26.25rpx;
|
||||
|
|
Loading…
Reference in New Issue
Block a user