|
@@ -5,7 +5,7 @@
|
|
|
<a-tab-pane :key="item.id" :tab="item.name" v-for="item in tabsList">
|
|
|
</a-tab-pane>
|
|
|
</a-tabs>
|
|
|
- <div class="table-page-search-wrapper">
|
|
|
+ <div class="table-page-search-wrapper newTableSearchName">
|
|
|
<a-form-model
|
|
|
id="returnGoodsPresentationList-form"
|
|
|
ref="ruleForm"
|
|
@@ -32,16 +32,14 @@
|
|
|
<subarea id="returnGoodsPresentationList-subareaSn" v-model="queryParam.subareaSn"></subarea>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
- <template v-if="advanced && activeKey==0">
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
- <a-form-model-item prop="dealerProvinceSn" style="margin: 0;" label="地区">
|
|
|
- <a-select v-model="queryParam.dealerProvinceSn" allowClear placeholder="请选择省">
|
|
|
- <a-select-option v-for="item in addrProvinceList" :value="item.areaSn" :key="item.areaSn + 'a'">{{ item.name }}</a-select-option>
|
|
|
- </a-select>
|
|
|
- </a-form-model-item>
|
|
|
- </a-col>
|
|
|
- </template>
|
|
|
- <a-col :md="6" :sm="24" style="margin-bottom: 10px;">
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
+ <a-form-model-item prop="dealerProvinceSn" style="margin: 0;" label="地区">
|
|
|
+ <a-select v-model="queryParam.dealerProvinceSn" allowClear placeholder="请选择省">
|
|
|
+ <a-select-option v-for="item in addrProvinceList" :value="item.areaSn" :key="item.areaSn + 'a'">{{ item.name }}</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-model-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :md="24" :sm="24" style="margin-bottom: 10px;text-align:center;">
|
|
|
<a-button type="primary" @click="handleSearch" :disabled="disabled" id="returnGoodsPresentationList-refresh">查询</a-button>
|
|
|
<a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="returnGoodsPresentationList-reset">重置</a-button>
|
|
|
<a-button
|
|
@@ -53,10 +51,6 @@
|
|
|
:loading="exportLoading"
|
|
|
v-if="$hasPermissions('B_regionTypeSalesReportExport')"
|
|
|
id="returnGoodsPresentationList-export">导出</a-button>
|
|
|
- <a @click="advanced=!advanced" style="margin-left: 5px" v-if="activeKey==0">
|
|
|
- {{ advanced ? '收起' : '展开' }}
|
|
|
- <a-icon :type="advanced ? 'up' : 'down'"/>
|
|
|
- </a>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</a-form-model>
|
|
@@ -96,7 +90,7 @@ export default {
|
|
|
data () {
|
|
|
return {
|
|
|
spinning: false,
|
|
|
- tabsList: [{ id: 0, name: '各省品类实售明细' }, { id: 1, name: '各区品类实售明细' }],
|
|
|
+ tabsList: [{ id: 0, name: '各分区品类实售明细' }, { id: 1, name: '各区品类实售明细' }],
|
|
|
salesStatusTypeList: [{ code: 'SALES', name: '实售销售' }, { code: 'SALES_RETURN', name: '实售退货' }, { code: 'REAL_SALES', name: '实际销售' }],
|
|
|
activeKey: 0,
|
|
|
advanced: true, // 高级搜索 展开/关闭
|