Commit 36d81ad2 by 王刘锁

11-17日点位加主题 站点加楼层查询 任务模板加是否异常

parent 4c989dea
......@@ -248,7 +248,7 @@ export default {
}
this.$message({
type: 'success',
message: res.data
message: "操作成功"
});
}
})
......
......@@ -117,6 +117,7 @@ export default {
equipmentType: '',
mapId: '',
name: '',
topic: '',
pointAlias: '',
status: ''
},
......
......@@ -14,6 +14,9 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item label="楼层:" prop="name">
<el-input v-model="searchForm.floorNum" placeholder="请输入楼层"></el-input>
</el-form-item>
<el-form-item label="站点类型:" prop="siteType">
<el-select v-model="searchForm.siteType" placeholder="请选择站点类型" clearable>
<el-option v-for="item in $dictUtils.getDictList('tms_site_type')" :key="item.value" :label="item.label"
......@@ -156,6 +159,7 @@ export default {
factoryId: '',
siteType: '',
name: '',
floorNum: '',
command: '',
tempId: '',
status: ''
......
......@@ -28,7 +28,12 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item label="是否异常任务:">
<el-radio-group v-model="formData.errorTask">
<el-radio label="0"></el-radio>
<el-radio label="1"></el-radio>
</el-radio-group>
</el-form-item>
<el-form-item label="是/否包含变量:" prop="variableStatus">
<el-radio-group v-model="formData.variableStatus" @change="changeStatus">
<el-radio label="0"></el-radio>
......@@ -98,6 +103,7 @@ export default {
dialogVisible: false,
formData: {
variableStatus: '0',
errorTask: '0',
remark: '',
sort: '0',
status: '1',
......
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 sign in to comment