描述:修改基础信息

This commit is contained in:
SelfRidicule 2024-08-05 10:04:26 +08:00
parent 96be658cd9
commit dbb94e8b40
7 changed files with 43 additions and 17 deletions

View File

@ -14,7 +14,7 @@ export function loginRq(data) {
// 注册用户 // 注册用户
export function registerPhone(data) { export function registerPhone(data) {
return request({ return request({
url: '/changyang_user_login/login', url: '/social_user_login/login',
method: "post", method: "post",
data data
}); });

View File

@ -18,9 +18,13 @@ export function request(params) {
header["Authorization"] = 'Bearer ' + wx.getStorageSync('token'); header["Authorization"] = 'Bearer ' + wx.getStorageSync('token');
} }
// 地区id // 地区id
data.tenantId = app.tenantId if (wx.getStorageSync('tenantId')) {
data.tenantId = wx.getStorageSync('tenantId')
}
// 园区id // 园区id
data.parkId = app.parkId if (wx.getStorageSync('parkId')) {
data.parkId = wx.getStorageSync('parkId')
}
// 加载中 // 加载中
wx.showLoading({ wx.showLoading({

View File

@ -1,18 +1,18 @@
App({ App({
// 配置信息 // 配置信息
APPID: 'wx5582a07c1fbbcf06', APPID: 'wx5582a07c1fbbcf06',
APPSECRET: 'e0ef2bac28df376d8855d04ee8828d73', APPSECRET: 'ad24130a8919c613efd9538f69abafd3',
tenantId : '12', // 地区 // tenantId : '12', // 地区
parkId : '26', // 园区id // parkId : '26', // 园区id
parkName : '长阳智会云控', // 园区名称 // parkName : '长阳智会云控', // 园区名称
// 本地测试 // 本地测试
// DOMAIN_NAME_PREFIX: 'http://192.168.0.11', DOMAIN_NAME_PREFIX: 'http://192.168.0.30',
// DOMAIN_NAME: 'http://192.168.0.11:9227', //接口域名 DOMAIN_NAME: 'http://192.168.0.30:9227', //接口域名
// IMG_NAME: 'http://192.168.0.11:9227', IMG_NAME: 'http://192.168.0.30:9227',
// 生产 // 生产
DOMAIN_NAME_PREFIX: 'https://www.chuangzhikj.com', // DOMAIN_NAME_PREFIX: 'https://www.chuangzhikj.com',
DOMAIN_NAME: 'https://www.chuangzhikj.com/saas-ics', //接口域名 // DOMAIN_NAME: 'https://www.chuangzhikj.com/saas-ics', //接口域名
IMG_NAME: 'https://www.chuangzhikj.com/saas-ics', // IMG_NAME: 'https://www.chuangzhikj.com/saas-ics',
globals: { globals: {
refreshMyPages: false, refreshMyPages: false,
homedata: {}, homedata: {},

View File

@ -200,14 +200,11 @@ Page({
wx.setStorageSync('openid', userDetail.openid) wx.setStorageSync('openid', userDetail.openid)
wx.setStorageSync('user', userDetail) wx.setStorageSync('user', userDetail)
wx.setStorageSync('userId', userDetail.id) wx.setStorageSync('userId', userDetail.id)
wx.setStorageSync('tenantId', app.tenantId)
wx.setStorageSync('parkId', app.parkId)
wx.setStorageSync('parkName', app.parkName)
_this.setData({ _this.setData({
userDetail userDetail
}) })
// 查询轮播图 // 查询轮播图
getParkRq(app.parkId).then(res => { getParkRq(userDetail.parkId).then(res => {
console.log('getParkRq', res); console.log('getParkRq', res);
let bannerList = res.bannerImages.map(item => item.url) let bannerList = res.bannerImages.map(item => item.url)
_this.setData({ _this.setData({

View File

@ -76,6 +76,7 @@ Page({
wx.setStorageSync('user', user) wx.setStorageSync('user', user)
wx.setStorageSync('userId', user.id) wx.setStorageSync('userId', user.id)
wx.setStorageSync('token', token) wx.setStorageSync('token', token)
wx.setStorageSync('tenantId', user.tenantId)
wx.setStorageSync('parkId', user.parkId) wx.setStorageSync('parkId', user.parkId)
wx.setStorageSync('parkName', user.parkName) wx.setStorageSync('parkName', user.parkName)

View File

@ -12,8 +12,14 @@
<view class="line"></view> <view class="line"></view>
<view class="point activity"> <view class="point activity">
<view class="msgView activity">派单信息</view> <view class="msgView activity">派单信息</view>
<view class="time">2022-11-15 10:25:23</view>
</view> </view>
</view> </view>
<view class="personMsgView">
报修人电话19883286522
</view>
</view> </view>

View File

@ -77,4 +77,22 @@
top: 100%; top: 100%;
left: 50%; left: 50%;
transform: translateX(-50%); transform: translateX(-50%);
}
.topHead .progressView .point .time {
position: absolute;
top: calc(100% + 20rpx);
left: 50%;
transform: translateX(-50%);
width: 140rpx;
word-break: break-all;
font-size: 24rpx;
color: #cccccc;
text-align: center;
}
.topHead .personMsgView{
border: 1rpx solid red;
} }