|
@@ -2,7 +2,7 @@
|
|
|
<div class="gdPlan-container">
|
|
|
<el-form :model="queryParams" ref="queryForm" :inline="true" label-width="70px">
|
|
|
<el-form-item label="委托单位" prop="weituoClient">
|
|
|
- <el-select v-model="queryParams.weituoClient" clearable placeholder="请选择委托单位" @change="getWeituoClientOptions">
|
|
|
+ <el-select v-model="queryParams.weituoClient" clearable filterable placeholder="请选择委托单位" @change="getWeituoClientOptions">
|
|
|
<el-option
|
|
|
v-for="item in weituoClientOptions"
|
|
|
:key="item.value"
|
|
@@ -12,7 +12,7 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="委托编号" prop="weituoNo">
|
|
|
- <el-select v-model="queryParams.weituoNo" clearable placeholder="请选择委托编号" @change="getWeituoNoOptions">
|
|
|
+ <el-select v-model="queryParams.weituoNo" clearable filterable placeholder="请选择委托编号" @change="getWeituoNoOptions">
|
|
|
<el-option
|
|
|
v-for="item in weituoNoOptions"
|
|
|
:key="item.value"
|
|
@@ -95,7 +95,7 @@
|
|
|
</template>
|
|
|
</el-calendar>
|
|
|
<el-form-item label="传感器" prop="chuanganqiArray">
|
|
|
- <el-select v-model="currentDbEdit.chuanganqiArray" multiple placeholder="请选择传感器" style="width: 100%;">
|
|
|
+ <el-select v-model="currentDbEdit.chuanganqiArray" multiple filterable placeholder="请选择传感器" style="width: 100%;">
|
|
|
<el-option
|
|
|
v-for="item in chuanganqi"
|
|
|
:key="item.value"
|
|
@@ -148,8 +148,8 @@ export default {
|
|
|
{ name: "weituoNo", label: "委托编号", width: 140, fixed: true, resize: true, align: "center", tree: true },
|
|
|
{ name: "testItems", label: "检测项目", width: 80, fixed: true, resize: true, align: "center"},
|
|
|
{ name: "sampleName", label: "样品名称", width: 80, fixed: true, resize: true, align: "center" },
|
|
|
- { name: "start_date", label: "开始时间", width: 80, fixed: true, resize: true, align: "center" },
|
|
|
- { name: "end_date", label: "结束时间", width: 80, fixed: true, resize: true, align: "center" },
|
|
|
+ { name: "start_date", label: "开始时间", width: 100, fixed: true, resize: true, align: "center" },
|
|
|
+ { name: "end_date", label: "结束时间", width: 100, fixed: true, resize: true, align: "center" },
|
|
|
{ name: "statusC", label: "状态", width: 60, fixed: true, resize: true, align: "center" },
|
|
|
// { name: "add", label:"", width: 30 }
|
|
|
],
|