This commit is contained in:
SelfRidicule 2024-08-19 14:16:18 +08:00
parent 668f0aa01d
commit 5f490cb581
9 changed files with 101 additions and 29 deletions

View File

@ -6,13 +6,13 @@ App({
// parkId : '26', // 园区id // parkId : '26', // 园区id
// parkName : '长阳智会云控', // 园区名称 // parkName : '长阳智会云控', // 园区名称
// 本地测试 // 本地测试
DOMAIN_NAME_PREFIX: 'http://192.168.0.30', DOMAIN_NAME_PREFIX: 'http://192.168.0.30:9227',
DOMAIN_NAME: 'http://192.168.0.30:9227', //接口域名 DOMAIN_NAME: 'http://192.168.0.30:9227', //接口域名
IMG_NAME: 'http://192.168.0.30:9227', IMG_NAME: 'http://192.168.0.30:9227',
// 生产 // 生产
// DOMAIN_NAME_PREFIX: 'https://www.chuangzhikj.com', // DOMAIN_NAME_PREFIX: 'https://company.haxy.com.cn:4443/shoot-hand',
// DOMAIN_NAME: 'https://www.chuangzhikj.com/saas-ics', //接口域名 // DOMAIN_NAME: 'https://company.haxy.com.cn:4443/shoot-hand', //接口域名
// IMG_NAME: 'https://www.chuangzhikj.com/saas-ics', // IMG_NAME: 'https://company.haxy.com.cn:4443/shoot-hand',
globals: { globals: {
refreshMyPages: false, refreshMyPages: false,
homedata: {}, homedata: {},

View File

@ -84,7 +84,8 @@
"pages/reportRepair/assign/nullify/nullify", "pages/reportRepair/assign/nullify/nullify",
"pages/reportRepair/assign/evaluate/evaluate", "pages/reportRepair/assign/evaluate/evaluate",
"pages/reportRepair/repair/index/index", "pages/reportRepair/repair/index/index",
"pages/reportRepair/repair/case/case" "pages/reportRepair/repair/case/case",
"pages/my/info/info"
], ],
"window": { "window": {
"backgroundTextStyle": "light", "backgroundTextStyle": "light",

View File

@ -26,7 +26,7 @@
</view> </view>
<!-- 消息通知 --> <!-- 消息通知 -->
<!-- <view class="itemTitleView"> <view class="itemTitleView">
<view class="title">消息通知</view> <view class="title">消息通知</view>
<view class="more">更多</view> <view class="more">更多</view>
</view> </view>
@ -37,9 +37,9 @@
<view class="msg ellipsisFont">您的工单《空调》已受理,正在处理中正在处理中正在处理中正在处理中</view> <view class="msg ellipsisFont">您的工单《空调》已受理,正在处理中正在处理中正在处理中正在处理中</view>
<view class="time">2024-08-16 13:49:11</view> <view class="time">2024-08-16 13:49:11</view>
</view> </view>
<van-icon class="arrow" name="arrow" color="#c3c3c3" size="40rpx"/> <!-- <van-icon class="arrow" name="arrow" color="#c3c3c3" size="40rpx"/> -->
</view> </view>
</view> --> </view>
<!-- tabBar --> <!-- tabBar -->
<view class="tab-bar"> <view class="tab-bar">

View File

@ -1,8 +1,10 @@
<view class='container'> <view class='container'>
<image class="bgImg" src="{{IMG_NAME + '/profile/static/shanghai_changyang/login/bg.png'}}" mode="aspectFill"></image> <image class="bgImg" src="{{IMG_NAME + '/profile/static/login/bg.png'}}" mode="aspectFill"></image>
<view class="title">随手拍</view>
<view class="bottomView"> <view class="bottomView">
<image class="loginBtnImg" src="{{IMG_NAME + '/profile/static/login/loginBtn.png'}}" mode="aspectFill"></image> 授权登录
<button wx:if="{{getUserDataType == 'getUserInfo'}}" class="loginBtn" open-type="getUserInfo" bindgetuserinfo="authorLogin"></button> <button wx:if="{{getUserDataType == 'getUserInfo'}}" class="loginBtn" open-type="getUserInfo" bindgetuserinfo="authorLogin"></button>
<button wx:if="{{getUserDataType == 'getPhoneNumber'}}" class="loginBtn" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber"></button> <button wx:if="{{getUserDataType == 'getPhoneNumber'}}" class="loginBtn" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber"></button>
</view> </view>

View File

@ -7,32 +7,29 @@
height: 100vh; height: 100vh;
} }
.titleImg{ .title{
display: block;
position: absolute; position: absolute;
top: 296rpx;
left: 50%; left: 50%;
margin-left: -325rpx; top: 110rpx;
width: 649rpx; transform: translateX(-50%);
height: 256rpx; font-size: 32rpx;
font-weight: bold;
color: white;
} }
.bottomView{ .bottomView{
border-radius: 10rpx;
position: absolute; position: absolute;
left: 50%; left: 50%;
bottom: 129rpx; bottom: 180rpx;
margin-left: -310rpx; transform: translateX(-50%);
width: 620rpx; width: 80%;
height: 150rpx; padding: 30rpx 0;
} font-size: 38rpx;
font-weight: bold;
.loginBtnImg{ text-align: center;
width: 100%; color: #44587e;
height: 100%; background: white;
position: absolute;
z-index: 1;
left: 0;
top: 0;
} }
.loginBtn{ .loginBtn{

View File

@ -0,0 +1,66 @@
// pages/my/info/info.js
Page({
/**
* 页面的初始数据
*/
data: {
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady() {
},
/**
* 生命周期函数--监听页面显示
*/
onShow() {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide() {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload() {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh() {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom() {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage() {
}
})

View File

@ -0,0 +1,3 @@
{
"usingComponents": {}
}

View File

@ -0,0 +1,2 @@
<!--pages/my/info/info.wxml-->
<text>pages/my/info/info.wxml</text>

View File

@ -0,0 +1 @@
/* pages/my/info/info.wxss */