样式更新
This commit is contained in:
parent
b92fce8071
commit
9ee7ff809b
|
|
@ -128,7 +128,7 @@
|
|||
</view>
|
||||
<view class="jccontent" style="margin-top: 51rpx;" v-if="qxList.length != 0">
|
||||
<view class="titles">
|
||||
水五常监测监测
|
||||
水质监测常规五项
|
||||
</view>
|
||||
<view class="botcontent">
|
||||
<view class="botcontent_left" v-for="(item,index) in qxList" :key="index" @click="tosjdetail(item,index)">
|
||||
|
|
|
|||
|
|
@ -95,8 +95,8 @@
|
|||
<scroll-view style="height: 530rpx;" scroll-y="true" class="scroll-Y" @scrolltolower="lower">
|
||||
<view class="lists_item" v-for="(item,index) in list" :key="index">
|
||||
<block>
|
||||
<view class="jczbs" v-if="item.stationName">
|
||||
{{item.stationName}}
|
||||
<view class="jczbs" v-if="item.fullDeviceName">
|
||||
{{item.fullDeviceName}}
|
||||
</view>
|
||||
<view class="jczbs" v-else></view>
|
||||
</block>
|
||||
|
|
@ -259,23 +259,23 @@
|
|||
getazsurvMulchRecord() {
|
||||
this.array = []
|
||||
this.arrays = []
|
||||
this.array1 = ['全部监测站点', ]
|
||||
this.array1 = ['全部监测设备', ]
|
||||
this.arrays1 = [{
|
||||
label: '全部监测站点',
|
||||
label: '全部监测设备',
|
||||
value: ''
|
||||
}]
|
||||
this.$http.get('/applet/survStationInfo/list').then(res => {
|
||||
this.$http.get('/applet/survDeviceDeploy/survDeviceList').then(res => {
|
||||
for (var i = 0; i < res.data.data.length; i++) {
|
||||
this.arrays.push({
|
||||
label: res.data.data[i].stationName,
|
||||
value: res.data.data[i].stationCode
|
||||
label: res.data.data[i].fullDeviceName,
|
||||
value: res.data.data[i].id
|
||||
})
|
||||
this.arrays1.push({
|
||||
label: res.data.data[i].stationName,
|
||||
value: res.data.data[i].stationCode
|
||||
label: res.data.data[i].fullDeviceName,
|
||||
value: res.data.data[i].id
|
||||
})
|
||||
this.array.push(res.data.data[i].stationName)
|
||||
this.array1.push(res.data.data[i].stationName)
|
||||
this.array.push(res.data.data[i].fullDeviceName)
|
||||
this.array1.push(res.data.data[i].fullDeviceName)
|
||||
}
|
||||
})
|
||||
},
|
||||
|
|
@ -284,7 +284,7 @@
|
|||
let params = {}
|
||||
params.pageNo = this.pageNo
|
||||
params.pageSize = this.pageSize
|
||||
params.stationCode = this.stationCode1
|
||||
params.deployId = this.stationCode1
|
||||
params.yearStr = this.yearStr
|
||||
uni.showLoading({
|
||||
title: '加载中'
|
||||
|
|
@ -350,7 +350,7 @@
|
|||
let params = {}
|
||||
params.pageNo = this.pageNo
|
||||
params.pageSize = this.pageSize
|
||||
params.stationCode = this.stationCode1
|
||||
params.deployId = this.stationCode1
|
||||
params.yearStr = this.yearStr
|
||||
this.$http.get('/applet/wxclient/alertRecord', {
|
||||
params: params
|
||||
|
|
@ -717,7 +717,7 @@
|
|||
this.stationCode1 = this.arrays1[i].value
|
||||
}
|
||||
}
|
||||
if (this.stationName1 == '全部监测站点') {
|
||||
if (this.stationName1 == '全部监测设备') {
|
||||
this.stationCode1 = null
|
||||
}
|
||||
this.pageNo = 1
|
||||
|
|
|
|||
|
|
@ -8,11 +8,11 @@
|
|||
<view class="usList">
|
||||
<view class="usList_item">
|
||||
<view class="item_left">
|
||||
版本号
|
||||
版本号 v1.0.1
|
||||
</view>
|
||||
<view class="item_right">
|
||||
<!-- <view class="item_right">
|
||||
v1.0.1
|
||||
</view>
|
||||
</view> -->
|
||||
</view>
|
||||
<!-- <view class="usList_item">
|
||||
<view class="item_left">
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
</view>
|
||||
</view> -->
|
||||
</view>
|
||||
<text class="botmTetx">Copyright ◎ 汾西县农业农村局</text>
|
||||
<text class="botmTetx">Copyright <text style="font-size: 30rpx;padding:0rpx 7rpx;"> © </text> 汾西县农业农村局</text>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
|
@ -98,6 +98,7 @@
|
|||
font-family: SourceHanSansCN;
|
||||
font-weight: 400;
|
||||
color: #000000;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.item_right{
|
||||
font-size: 28rpx;
|
||||
|
|
@ -111,5 +112,6 @@
|
|||
left: 50%;
|
||||
transform: translate(-50%);
|
||||
color: #000;
|
||||
width: 52%;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -145,7 +145,7 @@
|
|||
path: '/packDetail/pages/analysis/index'
|
||||
},
|
||||
{
|
||||
name: '站点管理',
|
||||
name: '监测站点',
|
||||
img: require('../../static/home_icon_jiance.png'),
|
||||
path: '/packDetail/pages/Site/index'
|
||||
},
|
||||
|
|
@ -160,7 +160,7 @@
|
|||
path: '/packDetail1/pages/device/index'
|
||||
},
|
||||
{
|
||||
name: '设备管理',
|
||||
name: '土壤监测',
|
||||
img: require('../../static/home_icon_shebei.png'),
|
||||
path: '/packDetail/pages/vidio/index'
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue