样式更新

This commit is contained in:
978184212@qq.com 2025-11-26 18:38:34 +08:00
parent b92fce8071
commit 9ee7ff809b
4 changed files with 23 additions and 21 deletions

View File

@ -128,7 +128,7 @@
</view> </view>
<view class="jccontent" style="margin-top: 51rpx;" v-if="qxList.length != 0"> <view class="jccontent" style="margin-top: 51rpx;" v-if="qxList.length != 0">
<view class="titles"> <view class="titles">
五常监测监测 质监测常规五项
</view> </view>
<view class="botcontent"> <view class="botcontent">
<view class="botcontent_left" v-for="(item,index) in qxList" :key="index" @click="tosjdetail(item,index)"> <view class="botcontent_left" v-for="(item,index) in qxList" :key="index" @click="tosjdetail(item,index)">

View File

@ -95,8 +95,8 @@
<scroll-view style="height: 530rpx;" scroll-y="true" class="scroll-Y" @scrolltolower="lower"> <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"> <view class="lists_item" v-for="(item,index) in list" :key="index">
<block> <block>
<view class="jczbs" v-if="item.stationName"> <view class="jczbs" v-if="item.fullDeviceName">
{{item.stationName}} {{item.fullDeviceName}}
</view> </view>
<view class="jczbs" v-else></view> <view class="jczbs" v-else></view>
</block> </block>
@ -259,23 +259,23 @@
getazsurvMulchRecord() { getazsurvMulchRecord() {
this.array = [] this.array = []
this.arrays = [] this.arrays = []
this.array1 = ['全部监测站点', ] this.array1 = ['全部监测设备', ]
this.arrays1 = [{ this.arrays1 = [{
label: '全部监测站点', label: '全部监测设备',
value: '' 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++) { for (var i = 0; i < res.data.data.length; i++) {
this.arrays.push({ this.arrays.push({
label: res.data.data[i].stationName, label: res.data.data[i].fullDeviceName,
value: res.data.data[i].stationCode value: res.data.data[i].id
}) })
this.arrays1.push({ this.arrays1.push({
label: res.data.data[i].stationName, label: res.data.data[i].fullDeviceName,
value: res.data.data[i].stationCode value: res.data.data[i].id
}) })
this.array.push(res.data.data[i].stationName) this.array.push(res.data.data[i].fullDeviceName)
this.array1.push(res.data.data[i].stationName) this.array1.push(res.data.data[i].fullDeviceName)
} }
}) })
}, },
@ -284,7 +284,7 @@
let params = {} let params = {}
params.pageNo = this.pageNo params.pageNo = this.pageNo
params.pageSize = this.pageSize params.pageSize = this.pageSize
params.stationCode = this.stationCode1 params.deployId = this.stationCode1
params.yearStr = this.yearStr params.yearStr = this.yearStr
uni.showLoading({ uni.showLoading({
title: '加载中' title: '加载中'
@ -350,7 +350,7 @@
let params = {} let params = {}
params.pageNo = this.pageNo params.pageNo = this.pageNo
params.pageSize = this.pageSize params.pageSize = this.pageSize
params.stationCode = this.stationCode1 params.deployId = this.stationCode1
params.yearStr = this.yearStr params.yearStr = this.yearStr
this.$http.get('/applet/wxclient/alertRecord', { this.$http.get('/applet/wxclient/alertRecord', {
params: params params: params
@ -717,7 +717,7 @@
this.stationCode1 = this.arrays1[i].value this.stationCode1 = this.arrays1[i].value
} }
} }
if (this.stationName1 == '全部监测站点') { if (this.stationName1 == '全部监测设备') {
this.stationCode1 = null this.stationCode1 = null
} }
this.pageNo = 1 this.pageNo = 1

View File

@ -8,11 +8,11 @@
<view class="usList"> <view class="usList">
<view class="usList_item"> <view class="usList_item">
<view class="item_left"> <view class="item_left">
版本号 版本号 v1.0.1
</view> </view>
<view class="item_right"> <!-- <view class="item_right">
v1.0.1 v1.0.1
</view> </view> -->
</view> </view>
<!-- <view class="usList_item"> <!-- <view class="usList_item">
<view class="item_left"> <view class="item_left">
@ -23,7 +23,7 @@
</view> </view>
</view> --> </view> -->
</view> </view>
<text class="botmTetx">Copyright 汾西县农业农村局</text> <text class="botmTetx">Copyright <text style="font-size: 30rpx;padding:0rpx 7rpx;"> © </text> 汾西县农业农村局</text>
</view> </view>
</view> </view>
</template> </template>
@ -98,6 +98,7 @@
font-family: SourceHanSansCN; font-family: SourceHanSansCN;
font-weight: 400; font-weight: 400;
color: #000000; color: #000000;
margin: 0 auto;
} }
.item_right{ .item_right{
font-size: 28rpx; font-size: 28rpx;
@ -111,5 +112,6 @@
left: 50%; left: 50%;
transform: translate(-50%); transform: translate(-50%);
color: #000; color: #000;
width: 52%;
} }
</style> </style>

View File

@ -145,7 +145,7 @@
path: '/packDetail/pages/analysis/index' path: '/packDetail/pages/analysis/index'
}, },
{ {
name: '站点管理', name: '监测站点',
img: require('../../static/home_icon_jiance.png'), img: require('../../static/home_icon_jiance.png'),
path: '/packDetail/pages/Site/index' path: '/packDetail/pages/Site/index'
}, },
@ -160,7 +160,7 @@
path: '/packDetail1/pages/device/index' path: '/packDetail1/pages/device/index'
}, },
{ {
name: '设备管理', name: '土壤监测',
img: require('../../static/home_icon_shebei.png'), img: require('../../static/home_icon_shebei.png'),
path: '/packDetail/pages/vidio/index' path: '/packDetail/pages/vidio/index'
}, },