pc页面修改
This commit is contained in:
parent
553e29de5c
commit
9dba0cde27
|
@ -64,19 +64,6 @@
|
|||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :md="12" :sm="12" :xs="24">
|
||||
<el-form-item label="作业级别" prop="level">
|
||||
<el-select v-model="form.level" placeholder="选择作业级别">
|
||||
<el-option
|
||||
v-for="item in leveloptions"
|
||||
:key="item.id"
|
||||
:label="item.name"
|
||||
:value="item.name"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
||||
<el-col :md="12" :sm="12" :xs="24" >
|
||||
<el-form-item label="作业部门" prop="dept_do">
|
||||
<el-cascader
|
||||
|
@ -552,6 +539,7 @@
|
|||
operation: "",
|
||||
cate: "",
|
||||
risks_checked: [],
|
||||
measures_checked: []
|
||||
},
|
||||
initForm: {},
|
||||
operationId: "",
|
||||
|
|
|
@ -561,9 +561,9 @@
|
|||
oplcateCode: "",
|
||||
oplId: "",
|
||||
leveloptions: [
|
||||
{id: 10, name: "特殊动火"},
|
||||
{id: 20, name: "一级动火"},
|
||||
{id: 30, name: "二级动火"},
|
||||
{id: "特级", name: "特级"},
|
||||
{id: "一级", name: "一级"},
|
||||
{id: "二级", name: "二级"},
|
||||
],
|
||||
deptoptions: [],
|
||||
useroptions: [],
|
||||
|
|
|
@ -565,7 +565,7 @@ export default {
|
|||
this.$API.opm.operation.read.req(this.operationId).then((res) => {
|
||||
this.form.start_time = res.start_time; //作业开始时间
|
||||
this.form.end_time = res.end_time; //作业结束时间
|
||||
|
||||
this.form.name = res.name;
|
||||
console.log(res);
|
||||
});
|
||||
},
|
||||
|
|
|
@ -16,8 +16,15 @@
|
|||
<div class="right-panel">
|
||||
<div class="right-panel-search">
|
||||
<el-input
|
||||
v-model="query.id"
|
||||
placeholder="logId"
|
||||
v-model="query.status_code"
|
||||
placeholder="200"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
></el-input>
|
||||
<el-input
|
||||
v-model="query.search"
|
||||
placeholder="地址/View"
|
||||
clearable
|
||||
@keyup.enter="handleQuery"
|
||||
></el-input>
|
||||
<el-button
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
</div>
|
||||
<div class="left-panel">
|
||||
<div class="right-panel-search">
|
||||
<el-input v-model="query.id" placeholder="logId" clearable></el-input>
|
||||
<el-input v-model="query.search" placeholder="logId" clearable></el-input>
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-search"
|
||||
|
|
Loading…
Reference in New Issue