|
@@ -3,7 +3,8 @@
|
|
<view class="snapshotList">
|
|
<view class="snapshotList">
|
|
<scroll-view scroll-y @scrolltolower="scrollGet" class="info-max-box">
|
|
<scroll-view scroll-y @scrolltolower="scrollGet" class="info-max-box">
|
|
<view class="tabTitle" v-if="userType==0">
|
|
<view class="tabTitle" v-if="userType==0">
|
|
- <view :class="tabIndex==index?'tab-A':'tab-B'" v-for="(item,index) in tabList" :key='index' @click="tabClick(index)">
|
|
|
|
|
|
+ <view :class="tabIndex==index?'tab-A':'tab-B'" v-for="(item,index) in tabList" :key='index'
|
|
|
|
+ @click="tabClick(index)">
|
|
{{item}}
|
|
{{item}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -13,35 +14,19 @@
|
|
</view>
|
|
</view>
|
|
<view v-if="pageType==0">
|
|
<view v-if="pageType==0">
|
|
<view class="list">
|
|
<view class="list">
|
|
- <view class="list-li srearch">
|
|
|
|
- <view>{{form.subName?form.subName:'实验室名称'}}({{form.subRoom?form.subRoom:'房间号'}})</view>
|
|
|
|
- <view>
|
|
|
|
- <view class="srearch-l" @click="popupClick(1)">
|
|
|
|
- <img src="@/pages_safetyCheck/images/icon_aqjc_ss.png">
|
|
|
|
- </view>
|
|
|
|
- <view class="srearch-r" @click="saoCode()">
|
|
|
|
- <img src="@/pages_safetyCheck/images/icon_aqjc_sm.png">
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
|
|
+ <view class="list-li srearch" @click="laboratoryClick()">
|
|
|
|
+ <view class="srearch-l">{{form.subName?form.subName:'实验室名称'}}</view>
|
|
|
|
+ <img class="srearch-r" src="@/pages_safetyCheck/images/icon_wd_gd@1x.png">
|
|
</view>
|
|
</view>
|
|
- <view class="list-li">
|
|
|
|
|
|
+ <view class="list-li" style="margin-bottom: 20rpx;border:none;">
|
|
<view>学院单位名称</view>
|
|
<view>学院单位名称</view>
|
|
<view>{{form.deptName}}</view>
|
|
<view>{{form.deptName}}</view>
|
|
</view>
|
|
</view>
|
|
- <view class="list-li">
|
|
|
|
- <view>检查项目</view>
|
|
|
|
- <view @click="inspectionItemsClick()">
|
|
|
|
- {{form.hazardCheckCode?form.hazardCheckCode:''}}{{form.hazardCheckName?form.hazardCheckName:'模糊搜索检查项'}}
|
|
|
|
- <img src="@/pages_safetyCheck/images/icon_wd_gd@1x.png">
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="list-li">
|
|
|
|
- <view>隐患描述</view>
|
|
|
|
|
|
+ <view class="list-li" v-if="form.imgDtoList[0]">
|
|
|
|
+ <view>现场照片</view>
|
|
<view></view>
|
|
<view></view>
|
|
</view>
|
|
</view>
|
|
- <textarea class="describe" type="text" v-model="form.hazardDescribe" maxlength="200"
|
|
|
|
- placeholder="请填写隐患描述" placeholder-style="font-size:24rpx;color:#999;"></textarea>
|
|
|
|
- <view class="check-for-img-max-box">
|
|
|
|
|
|
+ <view class="check-for-img-max-box" v-if="form.imgDtoList[0]">
|
|
<view class="left-title-p"></view>
|
|
<view class="left-title-p"></view>
|
|
<view class="right-img-box">
|
|
<view class="right-img-box">
|
|
<view class="img-box" v-for="(imgUrl,imgIndex) in form.imgDtoList" :key="imgIndex">
|
|
<view class="img-box" v-for="(imgUrl,imgIndex) in form.imgDtoList" :key="imgIndex">
|
|
@@ -49,19 +34,42 @@
|
|
<img class="position-img" src="@/pages_safetyCheck/images/icon_ssp_closure.png"
|
|
<img class="position-img" src="@/pages_safetyCheck/images/icon_ssp_closure.png"
|
|
@click="delImg(imgIndex)">
|
|
@click="delImg(imgIndex)">
|
|
</view>
|
|
</view>
|
|
- <img class="add-button" src="@/pages_safetyCheck/images/img_ssp_pz@1x.png"
|
|
|
|
- @click="selectImage()" v-if="form.imgDtoList.length<5">
|
|
|
|
|
|
+ <!-- <img class="add-button" src="@/pages_safetyCheck/images/img_ssp_pz@1x.png"
|
|
|
|
+ @click="selectImage()" v-if="form.imgDtoList.length<5"> -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
+ <picker @change="bindPickerChange" :value="pickerIndex" :range="pickerList" range-key="name">
|
|
|
|
+ <view class="list-li">
|
|
|
|
+ <view>安全类别</view>
|
|
|
|
+ <view>
|
|
|
|
+ {{pickerList[pickerIndex].name}}
|
|
|
|
+ <img src="@/pages_safetyCheck/images/icon_wd_gd@1x.png">
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ </picker>
|
|
|
|
+
|
|
|
|
+ <view class="list-li">
|
|
|
|
+ <view>隐患描述</view>
|
|
|
|
+ <view></view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="describe">
|
|
|
|
+ <textarea class="describe-n" type="text" v-model="form.hazardDescribe" maxlength="200"
|
|
|
|
+ placeholder="请填写隐患描述" placeholder-style="font-size:24rpx;color:#999;"></textarea>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="subBtn">
|
|
|
|
+ <img class="subBtn-l" @click="saoCode()" src="@/pages_safetyCheck/images/icon_aqjc_saoma.png">
|
|
|
|
+ <img class="subBtn-c" @click="selectImage()" src="@/pages_safetyCheck/images/icon_aqjc_paizhao.png">
|
|
|
|
+ <img class="subBtn-r" @click="submitForm" src="@/pages_safetyCheck/images/icon_aqjc_tijiao.png">
|
|
</view>
|
|
</view>
|
|
- <view class="subBtn" @click="submitForm">提交</view>
|
|
|
|
</view>
|
|
</view>
|
|
<!-- 上报记录 -->
|
|
<!-- 上报记录 -->
|
|
<view class="escalation" v-if="pageType==1">
|
|
<view class="escalation" v-if="pageType==1">
|
|
<view class="escalation-li" @click="recordClick(item)" v-for="(item,index) in dataList">
|
|
<view class="escalation-li" @click="recordClick(item)" v-for="(item,index) in dataList">
|
|
<view class="escalation-li-t">
|
|
<view class="escalation-li-t">
|
|
<view>{{item.subName}} ({{item.subRoom}})</view>
|
|
<view>{{item.subName}} ({{item.subRoom}})</view>
|
|
- <view :id="item.rectifyStatus==0?'color-A':(item.rectifyStatus==1?'color-B':(item.rectifyStatus==2?'color-C':''))">
|
|
|
|
|
|
+ <view
|
|
|
|
+ :id="item.rectifyStatus==0?'color-A':(item.rectifyStatus==1?'color-B':(item.rectifyStatus==2?'color-C':''))">
|
|
{{item.rectifyStatus==0?'待整改':(item.rectifyStatus==1?'已整改':(item.rectifyStatus==2?'暂无法整改':''))}}
|
|
{{item.rectifyStatus==0?'待整改':(item.rectifyStatus==1?'已整改':(item.rectifyStatus==2?'暂无法整改':''))}}
|
|
<img src="@/pages_safetyCheck/images/icon_wd_gd@1x.png">
|
|
<img src="@/pages_safetyCheck/images/icon_wd_gd@1x.png">
|
|
</view>
|
|
</view>
|
|
@@ -84,6 +92,7 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="get-data-null-p" v-if="getDataType">- 没有更多数据 -</view>
|
|
<view class="get-data-null-p" v-if="getDataType">- 没有更多数据 -</view>
|
|
|
|
+
|
|
</scroll-view>
|
|
</scroll-view>
|
|
<view class="popup-max-box" v-if="popupType">
|
|
<view class="popup-max-box" v-if="popupType">
|
|
<view class="popup-null" @click="popupClick(2)"></view>
|
|
<view class="popup-null" @click="popupClick(2)"></view>
|
|
@@ -114,6 +123,7 @@
|
|
securityAppCheckPhotoMyAdd,
|
|
securityAppCheckPhotoMyAdd,
|
|
securityAppCheckPhotoMyList,
|
|
securityAppCheckPhotoMyList,
|
|
securityAppCheckPhotoRectifyList,
|
|
securityAppCheckPhotoRectifyList,
|
|
|
|
+ securityCheckOptionList,
|
|
} from '@/pages_safetyCheck/api/index.js'
|
|
} from '@/pages_safetyCheck/api/index.js'
|
|
export default {
|
|
export default {
|
|
name: "snapshotList",
|
|
name: "snapshotList",
|
|
@@ -147,7 +157,9 @@
|
|
pageSize: 20,
|
|
pageSize: 20,
|
|
},
|
|
},
|
|
total: 0,
|
|
total: 0,
|
|
- dataList:[],
|
|
|
|
|
|
+ dataList: [],
|
|
|
|
+ pickerIndex: 0,
|
|
|
|
+ pickerList: [],
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onLoad(option) {
|
|
onLoad(option) {
|
|
@@ -160,7 +172,7 @@
|
|
|
|
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
-
|
|
|
|
|
|
+ this.treeselect();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
//滚动事件
|
|
//滚动事件
|
|
@@ -171,9 +183,9 @@
|
|
} else {
|
|
} else {
|
|
this.queryParams.page += 1;
|
|
this.queryParams.page += 1;
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
- if(this.pageType==1){
|
|
|
|
|
|
+ if (this.pageType == 1) {
|
|
this.getList();
|
|
this.getList();
|
|
- }else if(this.pageType==2){
|
|
|
|
|
|
+ } else if (this.pageType == 2) {
|
|
this.getListTow();
|
|
this.getListTow();
|
|
}
|
|
}
|
|
})
|
|
})
|
|
@@ -215,38 +227,70 @@
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ //实验室
|
|
|
|
+ laboratoryClick(row){
|
|
|
|
+ let infoData = row;
|
|
|
|
+ uni.navigateTo({
|
|
|
|
+ url: '/pages_safetyCheck/views/snapshotManage/laboratorySearch?infoData=' + encodeURIComponent(
|
|
|
|
+ JSON.stringify(infoData))
|
|
|
|
+ });
|
|
|
|
+ },
|
|
//上报记录跳转详情
|
|
//上报记录跳转详情
|
|
- recordClick(row){
|
|
|
|
- let infoData=row;
|
|
|
|
|
|
+ recordClick(row) {
|
|
|
|
+ let infoData = row;
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url: '/pages_safetyCheck/views/snapshotManage/snapshotDetail?infoData=' + encodeURIComponent(JSON.stringify(infoData))
|
|
|
|
|
|
+ url: '/pages_safetyCheck/views/snapshotManage/snapshotDetail?infoData=' + encodeURIComponent(
|
|
|
|
+ JSON.stringify(infoData))
|
|
});
|
|
});
|
|
},
|
|
},
|
|
//隐患整改跳转详情
|
|
//隐患整改跳转详情
|
|
- hiddenClick(row){
|
|
|
|
- let infoData=row;
|
|
|
|
- infoData.pageType=2;
|
|
|
|
|
|
+ hiddenClick(row) {
|
|
|
|
+ let infoData = row;
|
|
|
|
+ infoData.pageType = 2;
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url: '/pages_safetyCheck/views/snapshotManage/snapshotItems?infoData=' + encodeURIComponent(JSON.stringify(infoData))
|
|
|
|
|
|
+ url: '/pages_safetyCheck/views/snapshotManage/snapshotItems?infoData=' + encodeURIComponent(
|
|
|
|
+ JSON.stringify(infoData))
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
+ //安全类别
|
|
|
|
+ bindPickerChange(data) {
|
|
|
|
+ this.pickerIndex = data.detail.value;
|
|
|
|
+ this.form.hazardCheckName = this.pickerList[data.detail.value].name
|
|
|
|
+ console.log(data)
|
|
|
|
+ },
|
|
|
|
+ //隐患项
|
|
|
|
+ async treeselect() {
|
|
|
|
+ let self = this;
|
|
|
|
+ const {
|
|
|
|
+ data
|
|
|
|
+ } = await securityCheckOptionList({
|
|
|
|
+ searchValue: this.searchValue
|
|
|
|
+ });
|
|
|
|
+ if (data.code == 200) {
|
|
|
|
+ let list = [];
|
|
|
|
+ data.data.forEach(function(item) {
|
|
|
|
+ list.push(item)
|
|
|
|
+ })
|
|
|
|
+ this.pickerList = list
|
|
|
|
+ }
|
|
|
|
+ },
|
|
tabClick(index) {
|
|
tabClick(index) {
|
|
this.tabIndex = index;
|
|
this.tabIndex = index;
|
|
this.pageType = index;
|
|
this.pageType = index;
|
|
- this.dataList=[];
|
|
|
|
- if(index==1){
|
|
|
|
|
|
+ this.dataList = [];
|
|
|
|
+ if (index == 1) {
|
|
this.getList();
|
|
this.getList();
|
|
- }else if(index==2){
|
|
|
|
|
|
+ } else if (index == 2) {
|
|
this.getListTow();
|
|
this.getListTow();
|
|
}
|
|
}
|
|
},
|
|
},
|
|
tabClickTow(index) {
|
|
tabClickTow(index) {
|
|
this.tabIndexTow = index;
|
|
this.tabIndexTow = index;
|
|
this.pageType = index;
|
|
this.pageType = index;
|
|
- this.dataList=[];
|
|
|
|
- if(index==1){
|
|
|
|
|
|
+ this.dataList = [];
|
|
|
|
+ if (index == 1) {
|
|
this.getList();
|
|
this.getList();
|
|
- }else if(index==2){
|
|
|
|
|
|
+ } else if (index == 2) {
|
|
this.getListTow();
|
|
this.getListTow();
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -267,13 +311,13 @@
|
|
sizeType: ["original", "compressed"],
|
|
sizeType: ["original", "compressed"],
|
|
sourceType: ["album", "camera"],
|
|
sourceType: ["album", "camera"],
|
|
success: function(res) {
|
|
success: function(res) {
|
|
- if(res.tempFilePaths[0]){
|
|
|
|
- res.tempFilePaths.forEach(function(item,index){
|
|
|
|
- self.uploadImg(item);
|
|
|
|
|
|
+ if (res.tempFilePaths[0]) {
|
|
|
|
+ res.tempFilePaths.forEach(function(item, index) {
|
|
|
|
+ self.uploadImg(item);
|
|
})
|
|
})
|
|
}
|
|
}
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+
|
|
}
|
|
}
|
|
});
|
|
});
|
|
},
|
|
},
|
|
@@ -338,7 +382,7 @@
|
|
data
|
|
data
|
|
} = await laboratorySubRelInfoGetRelList({
|
|
} = await laboratorySubRelInfoGetRelList({
|
|
'searchValue': this.form.searchValue,
|
|
'searchValue': this.form.searchValue,
|
|
- 'subId':this.form.subId,
|
|
|
|
|
|
+ 'subId': this.form.subId,
|
|
});
|
|
});
|
|
if (data.code == 200) {
|
|
if (data.code == 200) {
|
|
if (data.data[0]) {
|
|
if (data.data[0]) {
|
|
@@ -399,14 +443,7 @@
|
|
}
|
|
}
|
|
});
|
|
});
|
|
},
|
|
},
|
|
- //搜索项跳转
|
|
|
|
- inspectionItemsClick() {
|
|
|
|
- this.form.pageType=1;//1随手拍检查项
|
|
|
|
- uni.navigateTo({
|
|
|
|
- url: '/pages_safetyCheck/views/itemsManage/hiddenDangerItemsSearch?form=' + encodeURIComponent(
|
|
|
|
- JSON.stringify(this.form))
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
|
|
+
|
|
//上报
|
|
//上报
|
|
async submitForm() {
|
|
async submitForm() {
|
|
let self = this;
|
|
let self = this;
|
|
@@ -428,7 +465,7 @@
|
|
});
|
|
});
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (this.form.imgDtoList.length<=0) {
|
|
|
|
|
|
+ if (this.form.imgDtoList.length <= 0) {
|
|
uni.showToast({
|
|
uni.showToast({
|
|
title: '请选择现场照片!',
|
|
title: '请选择现场照片!',
|
|
icon: "none",
|
|
icon: "none",
|
|
@@ -447,13 +484,14 @@
|
|
mask: true,
|
|
mask: true,
|
|
duration: 2000
|
|
duration: 2000
|
|
});
|
|
});
|
|
- let infoData={
|
|
|
|
- photoId:data.data
|
|
|
|
|
|
+ let infoData = {
|
|
|
|
+ photoId: data.data
|
|
};
|
|
};
|
|
uni.navigateTo({
|
|
uni.navigateTo({
|
|
- url: '/pages_safetyCheck/views/snapshotManage/snapshotDetail?infoData=' + encodeURIComponent(JSON.stringify(infoData))
|
|
|
|
|
|
+ url: '/pages_safetyCheck/views/snapshotManage/snapshotDetail?infoData=' +
|
|
|
|
+ encodeURIComponent(JSON.stringify(infoData))
|
|
});
|
|
});
|
|
-
|
|
|
|
|
|
+
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|
|
@@ -547,39 +585,39 @@
|
|
|
|
|
|
|
|
|
|
.list {
|
|
.list {
|
|
- width: 690rpx;
|
|
|
|
|
|
+ width: 750rpx;
|
|
min-height: 765rpx;
|
|
min-height: 765rpx;
|
|
- background: #FFFFFF;
|
|
|
|
- border-radius: 20rpx 20rpx 20rpx 20rpx;
|
|
|
|
- margin: 20rpx 0 0 30rpx;
|
|
|
|
|
|
+ margin: 20rpx 0 0 0;
|
|
|
|
|
|
.list-li {
|
|
.list-li {
|
|
|
|
+ height: 100rpx;
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
border-bottom: 1rpx solid #E0E0E0;
|
|
border-bottom: 1rpx solid #E0E0E0;
|
|
- padding: 0 22rpx 0 28rpx;
|
|
|
|
|
|
+ padding: 0 30rpx;
|
|
box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
|
|
+ background: #FFFFFF;
|
|
|
|
|
|
>view:nth-of-type(1) {
|
|
>view:nth-of-type(1) {
|
|
font-size: 30rpx;
|
|
font-size: 30rpx;
|
|
color: #333333;
|
|
color: #333333;
|
|
- line-height: 80rpx;
|
|
|
|
|
|
+ line-height: 100rpx;
|
|
text-align: left;
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
|
|
>view:nth-of-type(2) {
|
|
>view:nth-of-type(2) {
|
|
font-size: 28rpx;
|
|
font-size: 28rpx;
|
|
color: #666666;
|
|
color: #666666;
|
|
- line-height: 80rpx;
|
|
|
|
|
|
+ line-height: 100rpx;
|
|
text-align: left;
|
|
text-align: left;
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
align-items: center;
|
|
|
|
|
|
>img {
|
|
>img {
|
|
- width: 24rpx;
|
|
|
|
- height: 24rpx;
|
|
|
|
- margin-left: 8rpx;
|
|
|
|
|
|
+ width: 30rpx;
|
|
|
|
+ height: 30rpx;
|
|
|
|
+ margin-left: 16rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -597,42 +635,46 @@
|
|
}
|
|
}
|
|
|
|
|
|
.srearch {
|
|
.srearch {
|
|
- .srearch-l {
|
|
|
|
- width: 60rpx;
|
|
|
|
- height: 60rpx;
|
|
|
|
- margin-right: 40rpx;
|
|
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+ align-items: center;
|
|
|
|
|
|
- >img {
|
|
|
|
- width: 30rpx;
|
|
|
|
- height: 30rpx;
|
|
|
|
- margin: 15rpx 0 0 15rpx;
|
|
|
|
- }
|
|
|
|
|
|
+ .srearch-l {
|
|
|
|
+ font-size: 30rpx;
|
|
|
|
+ color: #333333;
|
|
|
|
+ line-height: 100rpx;
|
|
|
|
+ text-align: left;
|
|
}
|
|
}
|
|
|
|
|
|
.srearch-r {
|
|
.srearch-r {
|
|
- width: 60rpx;
|
|
|
|
- height: 60rpx;
|
|
|
|
-
|
|
|
|
- >img {
|
|
|
|
- width: 30rpx;
|
|
|
|
- height: 30rpx;
|
|
|
|
- margin: 15rpx 0 0 15rpx;
|
|
|
|
- }
|
|
|
|
|
|
+ width: 30rpx;
|
|
|
|
+ height: 30rpx;
|
|
|
|
+ margin-right: 0rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.describe {
|
|
.describe {
|
|
- width: 636rpx;
|
|
|
|
- height: 120rpx;
|
|
|
|
- border-radius: 10rpx 10rpx 10rpx 10rpx;
|
|
|
|
- border: 1rpx solid #E0E0E0;
|
|
|
|
- margin: 20rpx 0 0 28rpx;
|
|
|
|
- padding: 12rpx 16rpx;
|
|
|
|
- box-sizing: border-box;
|
|
|
|
|
|
+ width: 750rpx;
|
|
|
|
+ background: #fff;
|
|
|
|
+ overflow: hidden;
|
|
|
|
+
|
|
|
|
+ .describe-n {
|
|
|
|
+ width: 690rpx;
|
|
|
|
+ min-height: 180rpx;
|
|
|
|
+ border-radius: 10rpx 10rpx 10rpx 10rpx;
|
|
|
|
+ border: 1rpx solid #E0E0E0;
|
|
|
|
+ margin: 40rpx;
|
|
|
|
+ padding: 22rpx;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ background: #F5F5F5;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
.check-for-img-max-box {
|
|
.check-for-img-max-box {
|
|
- margin: 20px 28rpx;
|
|
|
|
|
|
+ padding: 20px 28rpx;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ background: #fff;
|
|
|
|
+ border-bottom: 1rpx solid #E0E0E0;
|
|
|
|
|
|
.left-title-p {
|
|
.left-title-p {
|
|
width: 100%;
|
|
width: 100%;
|
|
@@ -767,18 +809,18 @@
|
|
}
|
|
}
|
|
|
|
|
|
.subBtn {
|
|
.subBtn {
|
|
- width: 690rpx;
|
|
|
|
- height: 100rpx;
|
|
|
|
- background: #0183FA;
|
|
|
|
- border-radius: 50rpx 50rpx 50rpx 50rpx;
|
|
|
|
- font-weight: 400;
|
|
|
|
- font-size: 30rpx;
|
|
|
|
- color: #FFFFFF;
|
|
|
|
- line-height: 100rpx;
|
|
|
|
- text-align: center;
|
|
|
|
|
|
+ width: 750rpx;
|
|
position: fixed;
|
|
position: fixed;
|
|
- left: 30rpx;
|
|
|
|
- bottom: 10rpx;
|
|
|
|
|
|
+ bottom: 30rpx;
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+ padding: 0 50rpx;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+
|
|
|
|
+ >img {
|
|
|
|
+ width: 130rpx;
|
|
|
|
+ height: 130rpx;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
/* 上报记录 */
|
|
/* 上报记录 */
|
|
@@ -912,15 +954,16 @@
|
|
}
|
|
}
|
|
|
|
|
|
#color-C {
|
|
#color-C {
|
|
-
|
|
|
|
|
|
+
|
|
color: #FF8C00;
|
|
color: #FF8C00;
|
|
}
|
|
}
|
|
|
|
+
|
|
.get-data-null-p {
|
|
.get-data-null-p {
|
|
text-align: center;
|
|
text-align: center;
|
|
height: 100rpx;
|
|
height: 100rpx;
|
|
line-height: 100rpx;
|
|
line-height: 100rpx;
|
|
color: #999;
|
|
color: #999;
|
|
- padding-bottom:200rpx;
|
|
|
|
|
|
+ padding-bottom: 200rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|