123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- <template>
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 搜索条件 -->
- <div ref="tableSearch" class="table-page-search-wrapper newTableSearchName">
- <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
- <a-row :gutter="15">
- <a-col :md="8" :sm="24">
- <a-form-model-item label="地区">
- <AreaList id="viewDealers-areaList" changeOnSelect ref="areaList" @change="areaChange" defValKey="id"></AreaList>
- </a-form-model-item>
- </a-col>
- <a-col :md="8" :sm="24">
- <a-form-item label="经销商名称/别名">
- <a-input id="chooseDealer-nameLike" v-model.trim="queryParam.nameLike" allowClear placeholder="请输入经销商名称/别名"/>
- </a-form-item>
- </a-col>
- <a-col :md="8" :sm="24">
- <a-form-item label="商户类型">
- <dealerType id="chooseDealer-dealerType" v-model="queryParam.dealerType" allowClear></dealertype>
- </a-form-item>
- </a-col>
- <a-col :md="8" :sm="24">
- <a-form-model-item label="商户级别" prop="dealerLevel">
- <v-select code="DEALER_LEVEL" id="ucModal-dealerLevel" v-model="queryParam.dealerLevel" allowClear placeholder="请选择商户级别"></v-select>
- </a-form-model-item>
- </a-col>
- <a-col :md="8" :sm="24">
- <a-form-item label="所在区域/分区">
- <subarea id="chooseDealer-subarea" ref="subarea" @change="subareaChange"></subarea>
- </a-form-item>
- </a-col>
- <a-col :md="8" :sm="24" style="margin-bottom: 10px;">
- <a-button type="primary" @click="searchForm(true)" :disabled="disabled" id="chooseDealer-refresh">查询</a-button>
- <a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="chooseDealer-reset">重置</a-button>
- </a-col>
- </a-row>
- </a-form>
- <!-- 列表 -->
- <div style="margin-bottom: 10px">
- <a-button type="primary" ghost :loading="loading" @click="handleBatchAudit">批量添加</a-button>
- <span style="margin-left: 5px">
- <template v-if="selectCount"> {{ `已选 ${selectCount} 项` }} </template>
- </span>
- </div>
- </div>
- <s-table
- class="sTable fixPagination"
- ref="table"
- :style="{ height: tableHeight+70+'px' }"
- :scroll="{ y: tableHeight -30 }"
- :rowKey="(record) => record.dealerSn"
- rowKeyName="dealerSn"
- :columns="columns"
- :data="loadData"
- :row-selection="{ columnWidth: 40 }"
- @rowSelection="rowSelectionFun"
- :defaultLoadData="false"
- bordered>
- <!-- 地区 -->
- <template slot="addressInfo" slot-scope="text, record">
- {{ record.provinceName }}{{ '-'+ record.cityName }}{{ '-'+ record.districtName }}
- </template>
- </s-table>
- </a-spin>
- </template>
- <script>
- import { commonMixin } from '@/utils/mixin'
- import { STable, VSelect } from '@/components'
- import AreaList from '@/views/common/areaList.js'
- import subarea from '@/views/common/subarea.js'
- import dealerType from '@/views/common/dealerType.js'
- import { getDealerListInfo, dealerQueryList } from '@/api/dealer'
- export default {
- name: 'ChooseDealer',
- mixins: [commonMixin],
- components: { STable, VSelect, subarea, AreaList, dealerType },
- props: {
- pageType: {
- type: String,
- default: 'dealerPromotion'
- },
- itemSn: {
- type: String,
- default: ''
- }
- },
- data () {
- return {
- tableHeight: 0,
- spinning: false,
- queryParam: { // 查询条件
- nameLike: '',
- dealerType: null,
- dealerLevel: null,
- subareaArea: {
- subareaSn: undefined, // 区域
- subareaAreaSn: undefined // 分区
- },
- auditState: undefined,
- provinceSn: undefined,
- citySn: undefined,
- districtSn: undefined
- },
- disabled: false, // 查询、重置按钮是否可操作
- loading: false, // 批量添加loading,
- rowSelectionInfo: null,
- columns: [
- { title: '经销商名称', dataIndex: 'dealerName', width: '30%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '商户别名', dataIndex: 'dealerAlias', align: 'left', width: '30%', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '商户类型', dataIndex: 'dealerTypeDictValue', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '商户级别', dataIndex: 'dealerLevelDictValue', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '地区', scopedSlots: { customRender: 'addressInfo' }, width: '30%', align: 'center', ellipsis: true },
- { title: '所在区域', dataIndex: 'subareaArea.subareaName', width: '20%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '所在分区', dataIndex: 'subareaArea.subareaAreaName', width: '20%', align: 'center', customRender: function (text) { return text || '--' } }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- this.spinning = true
- this.queryParam.notDealerSn = this.itemSn
- this.queryParam.pageType = this.pageType
- return dealerQueryList(Object.assign(parameter, this.queryParam)).then(res => {
- let data
- if (res.status == 200) {
- data = res.data
- const no = (data.pageNo - 1) * data.pageSize
- for (var i = 0; i < data.list.length; i++) {
- data.list[i].no = no + i + 1
- }
- this.disabled = false
- }
- this.spinning = false
- return data
- })
- }
- }
- },
- computed: {
- selectCount () {
- return this.rowSelectionInfo && this.rowSelectionInfo.selectedRowKeys.length
- }
- },
- methods: {
- // 表格选中项
- rowSelectionFun (obj) {
- this.rowSelectionInfo = obj || null
- },
- areaChange (val) {
- this.queryParam.provinceSn = val[0] ? val[0] : ''
- this.queryParam.citySn = val[1] ? val[1] : ''
- this.queryParam.districtSn = val[2] ? val[2] : ''
- },
- searchForm () {
- this.$refs.table.refresh()
- },
- subareaChange (val) {
- this.queryParam.subareaArea.subareaSn = val[0] ? val[0] : undefined
- this.queryParam.subareaArea.subareaAreaSn = val[1] ? val[1] : undefined
- },
- // 重置
- resetSearchForm () {
- this.queryParam = {
- nameLike: '',
- dealerType: null,
- dealerLevel: null,
- subareaArea: {
- subareaSn: undefined, // 区域
- subareaAreaSn: undefined // 分区
- },
- auditState: undefined,
- provinceSn: undefined,
- citySn: undefined,
- districtSn: undefined
- }
- this.$refs.subarea.clearData()
- this.$refs.areaList.clearData()
- this.$refs.table.refresh()
- },
- clearSelect () {
- this.$refs.table.clearSelected()
- },
- // 批量添加
- handleBatchAudit () {
- const _this = this
- if (_this.rowSelectionInfo && _this.rowSelectionInfo.selectedRowKeys && _this.rowSelectionInfo.selectedRowKeys.length < 1) {
- _this.$message.warning('请在列表勾选后再进行批量操作!')
- return
- }
- this.$emit('plAdd', _this.rowSelectionInfo.selectedRows)
- },
- pageInit (data) {
- this.setTableH()
- this.$refs.table.refresh()
- },
- setTableH () {
- const headHeight = this.$refs.tableSearch.offsetHeight
- this.tableHeight = window.innerHeight - headHeight - 190
- }
- },
- watch: {
- '$store.state.app.winHeight' (newValue, oldValue) { // 窗口变更时,需同时更改表格高度
- this.setTableH()
- }
- }
- }
- </script>
|