|
|
|
@ -3,9 +3,17 @@
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
<el-form :model="filterQuery" class="query-form" label-width="100px" v-show="showSearch">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="6" v-if="this.ckeck">
|
|
|
|
|
<el-form-item class="query-form-item" label="配送企业名称:">
|
|
|
|
|
<el-input v-model="filterQuery.name" placeholder="配送企业名称"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
clearable="true"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="名称:">
|
|
|
|
|
<el-input v-model="filterQuery.name" placeholder="名称"
|
|
|
|
|
<el-form-item class="query-form-item" label="证书名称:">
|
|
|
|
|
<el-input v-model="filterQuery.certName" placeholder="证书名称"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
clearable="true"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -52,6 +60,7 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
</el-form>
|
|
|
|
@ -217,11 +226,13 @@ export default {
|
|
|
|
|
type: 1,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20,
|
|
|
|
|
certName:null
|
|
|
|
|
},
|
|
|
|
|
list: [],
|
|
|
|
|
total: 0,
|
|
|
|
|
loading: true,
|
|
|
|
|
index: null,
|
|
|
|
|
ckeck:null,
|
|
|
|
|
statusMap: {
|
|
|
|
|
1: "未确认",
|
|
|
|
|
2: "已确认"
|
|
|
|
@ -342,6 +353,9 @@ export default {
|
|
|
|
|
created() {
|
|
|
|
|
// 加载表格数据
|
|
|
|
|
this.getList();
|
|
|
|
|
if(this.$store.getters.customerId == 110){
|
|
|
|
|
this.ckeck=true;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|