This commit is contained in:
parent
f61a83731f
commit
11dc76d765
|
|
@ -1,7 +1,7 @@
|
||||||
/* components/ImageInfo/index.wxss */
|
/* components/ImageInfo/index.wxss */
|
||||||
.info_contanier {
|
.info_contanier {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-top: 10rpx;
|
margin-top: 15rpx;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
@ -9,5 +9,5 @@
|
||||||
.info_item {
|
.info_item {
|
||||||
width: 200rpx;
|
width: 200rpx;
|
||||||
height: 200rpx;
|
height: 200rpx;
|
||||||
margin-right: 10rpx;
|
margin-right: 20rpx;
|
||||||
}
|
}
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
const __request_base_url__ = {
|
const __request_base_url__ = {
|
||||||
develop: "https://apifangke.t-aaron.com/api",
|
// develop: "https://apifangke.t-aaron.com:18063/api",
|
||||||
trial: "https://apifangke.t-aaron.com/api",
|
develop: "http://192.168.11.241:18061/api",
|
||||||
release: "https://apifangke.t-aaron.com/api"
|
trial: "https://apifangke-test.t-aaron.com:18062/api",
|
||||||
|
release: "https://apifangke.t-aaron.com:18063/api"
|
||||||
}
|
}
|
||||||
const platform = wx.getSystemInfoSync().platform
|
const platform = wx.getSystemInfoSync().platform
|
||||||
const envVersion = wx.getAccountInfoSync().miniProgram.envVersion
|
const envVersion = wx.getAccountInfoSync().miniProgram.envVersion
|
||||||
|
|
|
||||||
|
|
@ -53,9 +53,11 @@ Page({
|
||||||
// 图片预览
|
// 图片预览
|
||||||
previewImage(e) {
|
previewImage(e) {
|
||||||
let type = e.currentTarget.dataset.type
|
let type = e.currentTarget.dataset.type
|
||||||
|
let item = e.currentTarget.dataset.item
|
||||||
let str = type + 'List'
|
let str = type + 'List'
|
||||||
wx.previewImage({
|
wx.previewImage({
|
||||||
urls: this.data[str],
|
urls: this.data[str],
|
||||||
|
current: item
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
validate(name) {
|
validate(name) {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<!--pages/login/login.wxml-->
|
<!--pages/login/login.wxml-->
|
||||||
<view class="login_box">
|
<view class="login_box">
|
||||||
<view class="login_head">
|
<view class="login_head">
|
||||||
<text>空港疫情防控</text>
|
<text>空港畅行通</text>
|
||||||
<!-- <image src="../../assets/img/login_bg.png" style="width: 100%;" mode="widthFix"></image> -->
|
<!-- <image src="../../assets/img/login_bg.png" style="width: 100%;" mode="widthFix"></image> -->
|
||||||
</view>
|
</view>
|
||||||
<form class="form_box" bindsubmit="submitForm">
|
<form class="form_box" bindsubmit="submitForm">
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,9 @@
|
||||||
<view class="mine_head">
|
<view class="mine_head">
|
||||||
<view class="user_box">
|
<view class="user_box">
|
||||||
<view class="company_box">
|
<view class="company_box">
|
||||||
<text class="user_name" style="font-size: 36;font-weight: bolder;">{{userInfo.name}}</text>
|
<text class="user_name" style="font-size: 36;font-weight: bolder;">{{userInfo.name || ''}}</text>
|
||||||
<text class="user_name" style="margin: 20rpx 0;">防疫负责人:{{userInfo.contactsName}}</text>
|
<text class="user_name" style="margin: 20rpx 0;">防疫负责人:{{userInfo.contactsName || ''}}</text>
|
||||||
<text class="user_name">联系方式:{{userInfo.contactsPhone}}</text>
|
<text class="user_name">联系方式:{{userInfo.contactsPhone || ''}}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue