|
|
@@ -10,80 +10,29 @@
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
|
|
<a-row :gutter="24">
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
- <a-form-item label="客户名称">
|
|
|
- <j-input placeholder="请输入客户名称" v-model="queryParam.cardName"></j-input>
|
|
|
+ <a-form-item label="二级部门名称">
|
|
|
+ <j-input placeholder="请输入二级部门名称" v-model="queryParam.aname"></j-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
- <a-form-item label="证件编号">
|
|
|
- <j-input placeholder="请输入证件编号" v-model="queryParam.cardNo"></j-input>
|
|
|
+ <a-form-item label="三级部门名称">
|
|
|
+ <j-input placeholder="请输入三级部门名称" v-model="queryParam.three_company_id"></j-input>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
+ <a-form-item label="营业厅名称">
|
|
|
+ <j-input placeholder="请输入营业厅名称" v-model="queryParam.bname"></j-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
|
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
|
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
|
|
|
- <a @click="handleToggleSearch" style="margin-left: 8px">
|
|
|
- {{ toggleSearchStatus ? '收起' : '展开' }}
|
|
|
- <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
|
|
|
- </a>
|
|
|
- </span>
|
|
|
- </a-col>
|
|
|
-
|
|
|
-
|
|
|
- </a-row>
|
|
|
- <template v-if="toggleSearchStatus">
|
|
|
- <a-row :gutter="24">
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- <a-col :span="6">
|
|
|
- <a-form-model-item label=" 上报状态 " :labelCol="{ span:5}" :wrapperCol="{ span: 8 }">
|
|
|
- <a-select placeholder="请选择上报状态" v-model="queryParam.status" >
|
|
|
- <a-select-option v-for="item in statusList" :value="item.value">
|
|
|
- {{ item.text }}
|
|
|
- </a-select-option>
|
|
|
- </a-select>
|
|
|
- </a-form-model-item>
|
|
|
|
|
|
-
|
|
|
- </a-col>
|
|
|
- <a-col :span="6">
|
|
|
- <a-form-item label=" 办理电话 " :labelCol="{ span:5}" :wrapperCol="{ span: 8 }">
|
|
|
- <j-input placeholder="请输入办理电话" v-model="queryParam.newPhone"></j-input>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
-
|
|
|
- <a-col :span="6">
|
|
|
- <a-form-item label=" 创建人 " :labelCol="{ span:5}" :wrapperCol="{ span: 8 }">
|
|
|
- <j-input placeholder="请输入创建人" v-model="queryParam.createBy"></j-input>
|
|
|
- </a-form-item>
|
|
|
+ </span>
|
|
|
</a-col>
|
|
|
-
|
|
|
</a-row>
|
|
|
|
|
|
- <a-row>
|
|
|
-
|
|
|
- <a-col :span="6" >
|
|
|
- <a-form-item label="创建人营业厅" >
|
|
|
- <j-input placeholder="请输入营业厅" v-model="queryParam.businessAddress" style="width: 200px;"></j-input>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :span="11" >
|
|
|
- <a-form-item label="创建时间" prop="industry" :labelCol="{ span:9}" :wrapperCol="{ span: 10 }">
|
|
|
- <j-date :show-time="true" date-format="YYYY-MM-DD" placeholder="请选择开始时间" class="query-group-cust"
|
|
|
- id ="cardStartTime" v-model="queryParam.createDateStart" ></j-date>
|
|
|
- <span class="query-group-split-cust"></span>
|
|
|
- <j-date :show-time="true" date-format="YYYY-MM-DD" placeholder="请选择结束时间" class="query-group-cust"
|
|
|
- id="cardEndTime" v-model="queryParam.createDateEnd" ></j-date>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
- </a-row>
|
|
|
- </template>
|
|
|
</a-form>
|
|
|
</div>
|
|
|
|