Commit 3b5716d6 authored by forevertyler's avatar forevertyler

fix:bug

parent 09d39816
...@@ -117,7 +117,7 @@ ...@@ -117,7 +117,7 @@
<el-input v-model="form.installationLocation" placeholder="请输入设备安装位置" /> <el-input v-model="form.installationLocation" placeholder="请输入设备安装位置" />
</el-form-item> </el-form-item>
<el-form-item label="设备类型" prop="deviceType"> <el-form-item label="设备类型" prop="deviceType">
<el-select v-model="form.deviceType" placeholder="请选择设备类型"> <el-select @change="deviceTypeChange" v-model="form.deviceType" placeholder="请选择设备类型" :disabled="disabledType">
<el-option <el-option
v-for="dict in dict.type.drainage_dev_type" v-for="dict in dict.type.drainage_dev_type"
:key="dict.value" :key="dict.value"
...@@ -127,7 +127,7 @@ ...@@ -127,7 +127,7 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
<div v-if="form.deviceType==1"> <div v-show="form.deviceType==='1'">
<el-form-item label="电机电流预警值" prop="motorCurrentAlert"> <el-form-item label="电机电流预警值" prop="motorCurrentAlert">
<el-input v-model="form.motorCurrentAlert" placeholder="请输入电机电流预警值" /> <el-input v-model="form.motorCurrentAlert" placeholder="请输入电机电流预警值" />
</el-form-item> </el-form-item>
...@@ -145,7 +145,7 @@ ...@@ -145,7 +145,7 @@
</el-form-item> </el-form-item>
</div> </div>
<div v-if="form.deviceType==2"> <div v-show="form.deviceType==='2'">
<el-form-item label="液位高度预警值" prop="heghtThreshold"> <el-form-item label="液位高度预警值" prop="heghtThreshold">
<el-input v-model="form.heghtThreshold" placeholder="请输入液位高度预警值" /> <el-input v-model="form.heghtThreshold" placeholder="请输入液位高度预警值" />
</el-form-item> </el-form-item>
...@@ -218,7 +218,8 @@ ...@@ -218,7 +218,8 @@
deviceType: [ deviceType: [
{ required: true, message: "设备类型不能为空", trigger: "change" } { required: true, message: "设备类型不能为空", trigger: "change" }
] ]
} },
disabledType:false,
}; };
}, },
created() { created() {
...@@ -256,6 +257,19 @@ ...@@ -256,6 +257,19 @@
}; };
this.resetForm("form"); this.resetForm("form");
}, },
deviceTypeChange(val){
// console.log(val,'val')
if(val==1){
this.form.heghtThreshold = null
}else if(val==2){
this.form.motorCurrentAlert = null
this.form.motorBearingTempAlert = null
this.form.pumpBearingTempAlert = null
this.form.pumpFlowAlert = null
this.form.drainagePressureAlert = null
}
},
/** 搜索按钮操作 */ /** 搜索按钮操作 */
handleQuery() { handleQuery() {
this.queryParams.pageNum = 1; this.queryParams.pageNum = 1;
...@@ -276,14 +290,20 @@ ...@@ -276,14 +290,20 @@
handleAdd() { handleAdd() {
this.reset(); this.reset();
this.open = true; this.open = true;
this.disabledType = false;
this.title = "添加排水设备信息"; this.title = "添加排水设备信息";
}, },
/** 修改按钮操作 */ /** 修改按钮操作 */
handleUpdate(row) { handleUpdate(row) {
this.reset(); this.reset();
this.form = row this.disabledType = true;
this.open = true;
this.title = "修改排水设备信息"; this.title = "修改排水设备信息";
this.form = { ...row };
// console.log('form.deviceType:', this.form.deviceType); // 调试输出
this.open = false; // 关闭弹窗
this.$nextTick(() => {
this.open = true; // 重新打开弹窗,强制重新渲染
});
// const id = row.id || this.ids // const id = row.id || this.ids
// getInfo(id).then(response => { // getInfo(id).then(response => {
// this.form = response.data; // this.form = response.data;
...@@ -291,8 +311,19 @@ ...@@ -291,8 +311,19 @@
// this.title = "修改排水设备信息"; // this.title = "修改排水设备信息";
// }); // });
}, },
/** 提交按钮 */ /** 提交按钮 */
submitForm() { submitForm() {
if(this.form.deviceType==1){
this.form.heghtThreshold = null
}else if(this.form.deviceType==2){
this.form.motorCurrentAlert = null
this.form.motorBearingTempAlert = null
this.form.pumpBearingTempAlert = null
this.form.pumpFlowAlert = null
this.form.drainagePressureAlert = null
}
this.$refs["form"].validate(valid => { this.$refs["form"].validate(valid => {
if (valid) { if (valid) {
if (this.form.id != null) { if (this.form.id != null) {
......
<template> <template>
<div class="app-container"> <div class="app-container">
<div style="width: 500px; "> <div v-if="videoData">
<video width="500" controls="" autoplay="" name="media"> <video width="500" controls autoplay name="media">
<source :src="`${previewUrl}${videoData}`" type="video/mp4"> <source :src="videoData" type="video/mp4">
</video> </video>
</div> </div>
<div v-else>
加载中...
</div>
<div class="upv"> <div class="upv">
<el-upload <el-upload
ref="upload" ref="upload"
...@@ -75,18 +78,20 @@ export default { ...@@ -75,18 +78,20 @@ export default {
name:null, name:null,
videoPath:null videoPath:null
}, },
videoData:'', videoData:null,
fileSize:1024,
} }
}, },
mounted() { created() {
this.$nextTick(function () { this.getList()
this.getList()
});
}, },
methods: { methods: {
getList(){ getList(){
listVideo().then(res => { listVideo().then(res => {
this.videoData = res.data this.videoData = this.previewUrl + res.data;
this.$nextTick(() => {
this.$forceUpdate();
});
}) })
}, },
//上传图片 //上传图片
......
...@@ -162,7 +162,7 @@ ...@@ -162,7 +162,7 @@
}, },
created() { created() {
typeNameList().then(res => { typeNameList().then(res => {
console.log(res,'res') // console.log(res,'res')
this.typeName = res.data this.typeName = res.data
}) })
this.getList(); this.getList();
...@@ -204,9 +204,10 @@ ...@@ -204,9 +204,10 @@
}, },
/** 重置按钮操作 */ /** 重置按钮操作 */
resetQuery() { resetQuery() {
this.dateRange = [];
this.resetForm("queryForm"); this.resetForm("queryForm");
this.handleQuery(); this.handleQuery();
this.dateRange = [];
}, },
// 多选框选中数据 // 多选框选中数据
handleSelectionChange(selection) { handleSelectionChange(selection) {
......
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
size="mini" size="mini"
type="text" type="text"
icon="el-icon-edit" icon="el-icon-edit"
@click="handleUpdate(scope.row)"
>修改预警值</el-button> >修改预警值</el-button>
</template> </template>
...@@ -66,7 +67,7 @@ ...@@ -66,7 +67,7 @@
</el-form-item> </el-form-item>
<el-form-item label="预警阈值" prop="threshold"> <el-form-item label="预警阈值" prop="threshold">
<el-input v-model="form.threshold" placeholder="请输入预警阈值" /> <el-input-number v-model="form.threshold" :min="0" label="预警阈值"></el-input-number>
</el-form-item> </el-form-item>
......
...@@ -100,7 +100,7 @@ ...@@ -100,7 +100,7 @@
}, },
created() { created() {
typeNameList().then(res => { typeNameList().then(res => {
console.log(res,'res') // console.log(res,'res')
this.typeName = res.data this.typeName = res.data
}) })
this.getList(); this.getList();
...@@ -139,9 +139,9 @@ ...@@ -139,9 +139,9 @@
}, },
/** 重置按钮操作 */ /** 重置按钮操作 */
resetQuery() { resetQuery() {
this.dateRange = [];
this.resetForm("queryForm"); this.resetForm("queryForm");
this.handleQuery(); this.handleQuery();
this.dateRange = [];
}, },
// 多选框选中数据 // 多选框选中数据
handleSelectionChange(selection) { handleSelectionChange(selection) {
......
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
<span>{{ parseTime(scope.row.leaveTime) }}</span> <span>{{ parseTime(scope.row.leaveTime) }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="停留时间" align="center" prop="residenceTime" /> <el-table-column label="停留时间(h)" align="center" prop="residenceTime" />
</el-table> </el-table>
......
...@@ -212,11 +212,13 @@ export default { ...@@ -212,11 +212,13 @@ export default {
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
handleQuery() { handleQuery() {
this.queryParams.pageNum = 1; this.queryParams.pageNum = 1;
this.getList(); this.getList();
}, },
/** 重置按钮操作 */ /** 重置按钮操作 */
resetQuery() { resetQuery() {
this.dateRange = [];
this.resetForm("queryForm"); this.resetForm("queryForm");
this.handleQuery(); this.handleQuery();
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment