|
|
@@ -16,12 +16,14 @@
|
|
|
v-model="inoffvalue"
|
|
|
placeholder="请选择所在监测点"
|
|
|
size="mini"
|
|
|
+ clearable
|
|
|
+ @change="search"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in inoffoptions"
|
|
|
- :key="item.point_id"
|
|
|
+ :key="item.point_name"
|
|
|
:label="item.point_name"
|
|
|
- :value="item.point_id"
|
|
|
+ :value="item.point_name"
|
|
|
>
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
@@ -29,6 +31,8 @@
|
|
|
v-model="versionsvalue2"
|
|
|
placeholder="请选择隶属海关"
|
|
|
size="mini"
|
|
|
+ clearable
|
|
|
+ @change="search"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in versionsoptions2"
|
|
|
@@ -116,7 +120,12 @@
|
|
|
>
|
|
|
</el-pagination>
|
|
|
</el-card>
|
|
|
- <el-dialog title="提示" :visible.sync="deriveVisible" width="400px" :close-on-click-modal="false">
|
|
|
+ <el-dialog
|
|
|
+ title="提示"
|
|
|
+ :visible.sync="deriveVisible"
|
|
|
+ width="400px"
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ >
|
|
|
<div class="derivebox">
|
|
|
<p><span>*</span>文件名称:</p>
|
|
|
<el-input
|
|
|
@@ -234,10 +243,7 @@ export default {
|
|
|
this.queryInfo.trap_number = this.idinput;
|
|
|
this.queryInfo.user_name = this.nameinput;
|
|
|
console.log(this.inoffoptions);
|
|
|
- if (this.inoffvalue) {
|
|
|
- this.queryInfo.point_name =
|
|
|
- this.inoffoptions[this.inoffvalue - 1].point_name;
|
|
|
- }
|
|
|
+ this.queryInfo.point_name = this.inoffvalue;
|
|
|
this.queryInfo.org_name = this.versionsvalue2;
|
|
|
// console.log(this.versionsvalue2)
|
|
|
this.getcbdlist();
|
|
|
@@ -269,6 +275,11 @@ export default {
|
|
|
this.timevalue = "";
|
|
|
this.queryInfo.start_time = "";
|
|
|
this.queryInfo.end_time = "";
|
|
|
+ for (var key in this.queryInfo) {
|
|
|
+ this.queryInfo[key] = "";
|
|
|
+ }
|
|
|
+ this.queryInfo.page = 1;
|
|
|
+ this.versionsvalue2 = "";
|
|
|
this.getcbdlist();
|
|
|
},
|
|
|
downloadFile(res, name) {
|