Compare commits

..

No commits in common. "cc701a4366f65274e5d3116676c5f3f213a1f64b" and "92175700a3cc5520c0f44903d702f21c912fc12e" have entirely different histories.

47 changed files with 138 additions and 284 deletions

View File

@ -14,10 +14,8 @@ export const myRequest = (options) => {
data: options.data || {},
success: (res) => {
resolve(res.data)
if(res.data.code==200){
}
else if (res.data.code == 401) {
if (res.data.code == 401) {
uni.reLaunch({
url: '/pages/login/login'
@ -34,14 +32,6 @@ export const myRequest = (options) => {
}
});
}else{
uni.hideLoading()
uni.stopPullDownRefresh();
uni.showToast({
icon:'none',
title: res.data.msg,
duration: 2000,
})
}
// 接口成功可以在此写成功需要的步骤
if (res.data.code != 1) {

View File

@ -7,8 +7,7 @@
"path": "pages/timeEnvironment/timeEnvironment",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom",
"enablePullDownRefresh": true
"navigationStyle": "custom"
}
}, {
"path": "pages/timeVideo/timeVideo",

View File

@ -59,14 +59,12 @@
</view>
<view class="bottom">
<view class="btn-1" :class="inputData['30'] == 1 || inputData['30'] == 3 ? 'in' : 'out'">
<image v-if="inputData['30'] == 1 || inputData['30'] == 3" src="../../static/in-sel.png"
mode=""></image>
<image v-if="inputData['30'] == 1 || inputData['30'] == 3" src="../../static/in-sel.png" mode=""></image>
<image v-else src="../../static/in.png" mode=""></image>
<text>进水泵</text>
</view>
<view class="btn-2" :class="inputData['30'] == 2 || inputData['30'] == 3 ? 'in' : 'out'">
<image v-if="inputData['30'] == 2 || inputData['30'] == 3" src="../../static/out-sel.png"
mode=""></image>
<image v-if="inputData['30'] == 2 || inputData['30'] == 3" src="../../static/out-sel.png" mode=""></image>
<image v-else src="../../static/out.png" mode=""></image>
<text>配肥泵</text>
</view>
@ -92,8 +90,7 @@
</view>
</view>
<u-popup v-model="show" mode="center" :mask-close-able='false' width="640rpx" height="880rpx"
:closeable='false'>
<u-popup v-model="show" mode="center" :mask-close-able='false' width="640rpx" height="880rpx" :closeable='false'>
<view class="contentPop">
<view class="contentPop_box">
<view class="title">
@ -115,8 +112,7 @@
手动启动时间
<view class="irrigate_input">
<input v-model="inputData1[10 + (indexs - 1) + '01']"
@blur="changeData10(10 + (indexs - 1) + '01', $event)" type="digit" placeholder="0"
step="0.1" />
@blur="changeData10(10 + (indexs - 1) + '01', $event)" type="digit" placeholder="0" step="0.1" />
<!-- <u-input v-model="inputData[10 + (indexs - 1) + '01']" type="text" :border="false" input-align='center'
height='66' :clearable='false' /> -->
</view>
@ -222,9 +218,7 @@
topActive: 0,
indexs: 1,
inputData1: [],
// timer: null
inputData1: []
};
},
watch: {
@ -234,13 +228,10 @@
this.deviceId = option.id
this.dataInit()
let that = this
// this.timer = setInterval(function() {
// that.dataInit();
// that.getReg();
// }, 3000);
},
onUnload() {
// clearTimeout(this.timer)
setInterval(function() {
that.dataInit();
that.getReg();
}, 3000);
},
onPullDownRefresh() {
uni.showLoading({
@ -316,8 +307,7 @@
uni.stopPullDownRefresh();
this.inputData1 = res.data;
this.getType00();
this.inputData1[10 + (this.indexs - 1) + '01'] = this.countData10(this.inputData1[10 + (
this.indexs - 1) + '01'])
this.inputData1[10 + (this.indexs - 1) + '01']=this.countData10(this.inputData1[10 + (this.indexs - 1) + '01'])
console.log(this.inputData1[10 + (this.indexs - 1) + '01'],111);
} else {
that.$refs.uToast.show({
@ -1033,7 +1023,6 @@
border: 2px solid #E1E2E6;
border-radius: 10rpx;
margin: 0 15rpx;
>input{
width: 100%;
height: 100%;

View File

@ -85,15 +85,7 @@
success: (res) => {
// console.log(res,'removeStorage');
}
});
let HBusername = uni.getStorageSync('HBusername');
let HBpassword = uni.getStorageSync('HBpassword');
if (HBusername && HBpassword) {
this.form.name = HBusername;
this.form.password = HBpassword;
this.checked = true
}
})
},
methods: {
submit() {
@ -116,14 +108,6 @@
key: 'userid',
data: res.data.userid
});
uni.setStorage({
key: 'HBusername',
data: this.form.name
});
uni.setStorage({
key: 'HBpassword',
data: this.form.password
});
uni.showToast({
icon: 'success',
title: '登录成功!',

View File

@ -234,7 +234,7 @@
{ label: '土壤氮含量', value: 41, countType: 0,unit: 'mg/kg' },
{ label: '土壤磷含量', value: 42, countType: 0,unit: 'mg/kg' },
{ label: '土壤钾含量', value: 43, countType: 0,unit: 'mg/kg' },
{ label: '管道压力', value: 44, countType: 0,unit: 'Kpa' },
{ label: '臭氧', value: 44, countType: 0,unit: 'ppm' },
{ label: '一氧化碳', value: 45, countType: 0,unit: 'ppm' },
{ label: '氨气', value: 46, countType: 0,unit: 'ppm' },
{ label: '硫化氢', value: 47, countType: 0,unit: 'ppm' },
@ -250,42 +250,10 @@
{ label: '无线传感器无线信号强度', value: 57, countType: 1,unit: 'dBm' },
{ label: '无线传感器信噪比SNR', value: 58, countType: 1,unit: 'dB' },
],
timer:null
}
},
onLoad() {
let that = this
this.timer = setInterval(function() {
uni.getStorage({
key: 'token',
success: function(res) {
that.getEquipmentInfo(uni.getStorageSync('userid'))
},
// fail:function(err){
// uni.reLaunch({
// url:'/pages/login/login'
// })
// }
})
}, 60000);
},
onUnload() {
clearTimeout(this.timer)
},
onPullDownRefresh() {
let that = this
uni.getStorage({
key: 'token',
success: function(res) {
that.getEquipmentInfo(uni.getStorageSync('userid'))
},
// fail:function(err){
// uni.reLaunch({
// url:'/pages/login/login'
// })
// }
})
onShow() {
},
mounted() {
let that = this
@ -312,7 +280,7 @@
url: this.api.sel_eqbyid + userid,
method: 'GET'
}).then(res => {
// console.log(res, 'id');
console.log(res, '根据用户id查询对应的设备数据');
if (res.code == 200) {
this.waterAndFertilizerParamsList = res.data.map((item,index)=>{
@ -331,14 +299,9 @@
uni.hideLoading({
title: '完成'
});
uni.stopPullDownRefresh();
i.childList= res.data;
// console.log(this.waterAndFertilizerParamsList);
}else{
console.log(this.waterAndFertilizerParamsList);
}
}).catch(err=>{
console.log('接口失败');
})
})

View File

@ -112,7 +112,7 @@
}).then(res => {
console.log(res, '退出');
if (res.code == 200) {
uni.reLaunch({
uni.navigateTo({
url: '/pages/login/login'
});
uni.removeStorage({

View File

@ -1,6 +1,6 @@
{
"description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
"projectname": "wszhyWx",
"projectname": "greenhouse-wisdom-applet",
"setting": {
"compileHotReLoad": true
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -12029,7 +12029,7 @@ var myRequest = function myRequest(options) {
data: options.data || {},
success: function success(res) {
resolve(res.data);
if (res.data.code == 200) {} else if (res.data.code == 401) {
if (res.data.code == 401) {
uni.reLaunch({
url: '/pages/login/login'
});
@ -12042,14 +12042,6 @@ var myRequest = function myRequest(options) {
});
}
});
} else {
uni.hideLoading();
uni.stopPullDownRefresh();
uni.showToast({
icon: 'none',
title: res.data.msg,
duration: 2000
});
}
// 接口成功可以在此写成功需要的步骤
if (res.data.code != 1) {
@ -21369,8 +21361,7 @@ var _default = {
"path": "pages/timeEnvironment/timeEnvironment",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom",
"enablePullDownRefresh": true
"navigationStyle": "custom"
}
}, {
"path": "pages/timeVideo/timeVideo",

View File

@ -360,10 +360,6 @@ var _methods;
//
//
//
//
//
//
//
var _default = {
data: function data() {
return {
@ -413,23 +409,17 @@ var _default = {
topActive: 0,
indexs: 1,
inputData1: []
// timer: null
};
},
watch: {},
onLoad: function onLoad(option) {
this.deviceId = option.id;
this.dataInit();
var that = this;
// this.timer = setInterval(function() {
// that.dataInit();
// that.getReg();
// }, 3000);
},
onUnload: function onUnload() {
// clearTimeout(this.timer)
setInterval(function () {
that.dataInit();
that.getReg();
}, 3000);
},
onPullDownRefresh: function onPullDownRefresh() {
uni.showLoading({

View File

@ -263,13 +263,6 @@ var _default = {
// console.log(res,'removeStorage');
}
});
var HBusername = uni.getStorageSync('HBusername');
var HBpassword = uni.getStorageSync('HBpassword');
if (HBusername && HBpassword) {
this.form.name = HBusername;
this.form.password = HBpassword;
this.checked = true;
}
},
methods: {
submit: function submit() {
@ -293,14 +286,6 @@ var _default = {
key: 'userid',
data: res.data.userid
});
uni.setStorage({
key: 'HBusername',
data: _this.form.name
});
uni.setStorage({
key: 'HBpassword',
data: _this.form.password
});
uni.showToast({
icon: 'success',
title: '登录成功!',

View File

@ -623,10 +623,10 @@ var _default = {
countType: 0,
unit: 'mg/kg'
}, {
label: '管道压力',
label: '臭氧',
value: 44,
countType: 0,
unit: 'Kpa'
unit: 'ppm'
}, {
label: '一氧化碳',
value: 45,
@ -697,43 +697,10 @@ var _default = {
value: 58,
countType: 1,
unit: 'dB'
}],
timer: null
}]
};
},
onLoad: function onLoad() {
var that = this;
this.timer = setInterval(function () {
uni.getStorage({
key: 'token',
success: function success(res) {
that.getEquipmentInfo(uni.getStorageSync('userid'));
}
// fail:function(err){
// uni.reLaunch({
// url:'/pages/login/login'
// })
// }
});
}, 60000);
},
onUnload: function onUnload() {
clearTimeout(this.timer);
},
onPullDownRefresh: function onPullDownRefresh() {
var that = this;
uni.getStorage({
key: 'token',
success: function success(res) {
that.getEquipmentInfo(uni.getStorageSync('userid'));
}
// fail:function(err){
// uni.reLaunch({
// url:'/pages/login/login'
// })
// }
});
},
onShow: function onShow() {},
mounted: function mounted() {
var that = this;
uni.getStorage({
@ -760,7 +727,7 @@ var _default = {
url: this.api.sel_eqbyid + userid,
method: 'GET'
}).then(function (res) {
// console.log(res, '根据用户id查询对应的设备数据');
console.log(res, '根据用户id查询对应的设备数据');
if (res.code == 200) {
_this.waterAndFertilizerParamsList = res.data.map(function (item, index) {
return _objectSpread(_objectSpread({}, item), {}, {
@ -777,12 +744,9 @@ var _default = {
uni.hideLoading({
title: '完成'
});
uni.stopPullDownRefresh();
i.childList = res.data;
// console.log(this.waterAndFertilizerParamsList);
} else {}
}).catch(function (err) {
console.log('接口失败');
console.log(_this.waterAndFertilizerParamsList);
}
});
});
}

View File

@ -1,7 +1,6 @@
{
"navigationBarTitleText": "",
"navigationStyle": "custom",
"enablePullDownRefresh": true,
"usingComponents": {
"u-navbar": "/node-modules/uview-ui/components/u-navbar/u-navbar"
}

View File

@ -140,7 +140,7 @@ var _default = {
}).then(function (res) {
console.log(res, '退出');
if (res.code == 200) {
uni.reLaunch({
uni.navigateTo({
url: '/pages/login/login'
});
uni.removeStorage({

View File

@ -1,6 +1,6 @@
{
"description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
"projectname": "wszhyWx",
"projectname": "greenhouse-wisdom-applet",
"setting": {
"compileHotReLoad": true
}