|
|
|
@ -10,7 +10,13 @@
|
|
|
|
|
<a-row :gutter="48">
|
|
|
|
|
<a-col :md="18">
|
|
|
|
|
<a-row :gutter="48">
|
|
|
|
|
<a-col :md="8" :sm="16" v-for="item in ColumnsQuery" :key="`${item.dataIndex}1`">
|
|
|
|
|
<a-col
|
|
|
|
|
:md="8"
|
|
|
|
|
:sm="16"
|
|
|
|
|
v-for="item in ColumnsQuery"
|
|
|
|
|
:key="`${item.dataIndex}1`"
|
|
|
|
|
v-show="item.dataIndex != 'itemCode' && item.dataIndex != 'remark'"
|
|
|
|
|
>
|
|
|
|
|
<a-form-item :label="item.title">
|
|
|
|
|
<!-- <a-input
|
|
|
|
|
v-model="queryParam[item.dataIndex]"
|
|
|
|
@ -36,6 +42,16 @@
|
|
|
|
|
{{ item.name }}
|
|
|
|
|
</a-select-option>
|
|
|
|
|
</a-select>
|
|
|
|
|
<a-select
|
|
|
|
|
placeholder="请选择租户参数类别"
|
|
|
|
|
v-model="queryParam[item.dataIndex]"
|
|
|
|
|
v-else-if="item.title == '租户参数类别'"
|
|
|
|
|
allow-clear
|
|
|
|
|
>
|
|
|
|
|
<a-select-option v-for="item in TypeData" :key="item.id" :value="item.paraCode">
|
|
|
|
|
{{ item.paraName }}
|
|
|
|
|
</a-select-option>
|
|
|
|
|
</a-select>
|
|
|
|
|
<a-input
|
|
|
|
|
v-model="queryParam[item.dataIndex]"
|
|
|
|
|
allow-clear
|
|
|
|
@ -50,10 +66,10 @@
|
|
|
|
|
<span class="table-page-search-submitButtons">
|
|
|
|
|
<a-button type="primary" @click="FnGetData">查询</a-button>
|
|
|
|
|
<a-button style="margin-left: 8px" @click="init">重置</a-button>
|
|
|
|
|
<a @click="toggleAdvanced" style="margin-left: 8px">
|
|
|
|
|
<!-- <a @click="toggleAdvanced" style="margin-left: 8px">
|
|
|
|
|
{{ advanced ? '收起' : '展开' }}
|
|
|
|
|
<a-icon :type="advanced ? 'up' : 'down'" />
|
|
|
|
|
</a>
|
|
|
|
|
</a> -->
|
|
|
|
|
</span>
|
|
|
|
|
</a-col>
|
|
|
|
|
</a-row>
|
|
|
|
@ -186,6 +202,9 @@ export default {
|
|
|
|
|
this.TypeData = res.data
|
|
|
|
|
console.log(this.TypeData)
|
|
|
|
|
})
|
|
|
|
|
SysTenantPage({ pageNo: 1, pageSize: 9999, name: '' }).then(res => {
|
|
|
|
|
this.TenantData = res.data.rows
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
tenantIdSearch(value) {
|
|
|
|
|