123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- <template>
- <a-card size="small" :bordered="false" class="relationshipBindingList-wrap">
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 搜索条件 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="getList()">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-item label="经销商名称">
- <a-input id="relationshipBindingList-dealerName" v-model.trim="queryParam.dealerName" allowClear placeholder="请输入经销商名称"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-button style="margin-bottom: 18px;" type="primary" @click="getList()" :disabled="disabled" id="relationshipBindingList-refresh">查询</a-button>
- <a-button style="margin: 0 0 18px 8px" @click="resetSearchForm()" :disabled="disabled" id="relationshipBindingList-reset">重置</a-button>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- 列表 -->
- <a-tabs type="card" @change="tabChange" v-model="tabInd">
- <a-tab-pane key="1" tab="省市级关系绑定"></a-tab-pane>
- <a-tab-pane key="2" tab="特约店关系绑定"></a-tab-pane>
- </a-tabs>
- <a-table
- class="sTable"
- ref="table"
- size="default"
- :rowKey="(record) => record.dealerSn"
- :columns="columns"
- :pagination="paginationProps"
- :data-source="list"
- @expand="expand"
- :expandedRowKeys="expandedRowKeys"
- :expandRowByClick="true"
- :scroll="{ y: tableHeight }">
- <a-table
- slot="expandedRowRender"
- :rowKey="(record) => record.dealerSn"
- :columns="innerColumns"
- :data-source="innerData"
- :pagination="false">
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <a-button
- type="link"
- class="button-error"
- size="small"
- icon="close"
- :id="'relationshipBindingList-delSubItem'+record.id"
- @click.stop="handleDisassociate(record)">取消关联</a-button>
- </template>
- </a-table>
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <a-button
- type="link"
- class="button-info"
- size="small"
- icon="plus"
- :id="'relationshipBindingList-addSubItem'+record.id"
- @click.stop="handleAssociate(record)">关联下级</a-button>
- </template>
- </a-table>
- </a-spin>
- <!-- 关联下级 -->
- <associate-modal :openModal="openModal" :nowData="nowData" :tabInd="tabInd" @ok="addItemOk" @close="openModal=false" />
- </a-card>
- </template>
- I
- <script>
- import { STable, VSelect } from '@/components'
- import associateModal from './associateModal.vue'
- import { dealerRelationList, querySubList, unbindRelation } from '@/api/dealerRelation'
- export default {
- components: { STable, VSelect, associateModal },
- data () {
- return {
- tableHeight: 0,
- spinning: false,
- formItemLayout: {
- labelCol: { span: 6 },
- wrapperCol: { span: 16 }
- },
- queryParam: {
- dealerName: ''
- },
- disabled: false, // 查询、重置按钮是否可操作
- columns: [
- { title: '经销商名称', dataIndex: 'dealerName', align: 'left' },
- { title: '操作', scopedSlots: { customRender: 'action' }, align: 'center' }
- ],
- expandedRowKeys: [],
- list: [],
- pageNo: 1, // 分页页码
- pageSize: 10, // 分页 每页多少条
- paginationProps: {
- showSizeChanger: true, // 是否可以改变 pageSize
- total: 0, // 分页总条数
- current: 1,
- onShowSizeChange: (current, pageSize) => this.changePageSize(current, pageSize),
- onChange: (current) => this.changePage(current)
- },
- innerColumns: [
- { title: '经销商名称', dataIndex: 'dealerName', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '操作', scopedSlots: { customRender: 'action' }, align: 'center' }
- ],
- innerData: [],
- openModal: false, // 新增编辑 弹框
- nowData: null, // 当前记录数据
- tabInd: '1', // tabs选中项
- dealerSn: []
- }
- },
- mounted () {
- this.tableHeight = window.innerHeight - 380
- this.getList()
- },
- methods: {
- expand (expanded, record) {
- this.nowData = record
- this.expandedRowKeys = [] // 重置展开节点,只展开当前点击的节点(内部数据调用模板,无法做到同时几个内层表格数据直接缓存在页面)
- if (expanded) {
- this.getSubItem(record) // 获取表格内部数据
- }
- },
- // 获取子节点数据
- getSubItem (record) {
- this.innerData = []
- this.spinning = true
- querySubList({ parentDealerSn: record.dealerSn }).then(res => {
- if (res.status == 200 && res.data && res.data.length) {
- this.innerData = res.data
- } else {
- this.innerData = []
- }
- this.expandedRowKeys = [record.dealerSn]
- this.spinning = false
- })
- },
- // 添加子级成功
- addItemOk () {
- this.getSubItem(this.nowData)
- },
- // 获取列表数据
- getList (pageNo) {
- this.disabled = true
- this.pageNo = pageNo || this.pageNo
- this.disabled = true
- const params = {
- pageNo: this.pageNo,
- pageSize: this.pageSize
- }
- dealerRelationList(Object.assign(params, this.queryParam, { dealerLevelList: this.tabInd == 1 ? ['PROVINCE'] : ['PROVINCE', 'CITY'] })).then(res => {
- if (res.status == 200) {
- const data = res.data
- this.paginationProps.total = Number(res.data.count) || 0
- this.paginationProps.current = data.pageNo
- const no = (data.pageNo - 1) * data.pageSize
- for (var i = 0; i < data.list.length; i++) {
- data.list[i].no = no + i + 1
- }
- this.list = data.list
- this.disabled = false
- } else {
- this.paginationProps.total = 0
- this.paginationProps.current = 1
- this.list = []
- }
- })
- },
- // 重置
- resetSearchForm (flag) {
- if (!flag) {
- this.queryParam.dealerName = ''
- this.expandedRowKeys = []
- this.pageNo = 1
- this.pageSize = 10
- this.paginationProps.total = 0
- this.paginationProps.current = 1
- }
- this.getList()
- },
- // 分页 一页多少条change
- changePageSize (current, pageSize) {
- this.pageNo = current
- this.pageSize = pageSize
- this.getList()
- },
- // 分页 页码change
- changePage (current) {
- this.pageNo = current
- this.getList()
- },
- tabChange (key) {
- this.tabInd = key
- // 不能共用resetSearchForm方法,因切换tab时,每页多少条数据更改后,不能同步tab两边页码
- this.queryParam.dealerName = ''
- this.expandedRowKeys = []
- this.pageNo = 1
- this.paginationProps.total = 0
- this.paginationProps.current = 1
- this.getList()
- },
- // 关联下级
- handleAssociate (row) {
- this.nowData = row
- this.openModal = true
- },
- // 取消关联
- handleDisassociate (row) {
- const _this = this
- _this.$confirm({
- title: '提示',
- content: '确认要解除上下级的关系吗?',
- centered: true,
- onOk () {
- unbindRelation({ subDealerSn: row.dealerSn }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.addItemOk()
- }
- })
- }
- })
- }
- }
- }
- </script>
|