| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- <template>
- <el-dialog append-to-body :title="title" :visible.sync="innerVisible" @close="close">
- <el-row>
- <el-col :span="24">
- <div style="float: right">
- <el-button size="mini" type="primary" @click="handleAdd">新建经销商</el-button>
- <el-dropdown style="margin-left: 10px" trigger="click">
- <el-button icon="el-icon-more" size="mini" />
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item icon="el-icon-upload2">导入</el-dropdown-item>
- <el-dropdown-item icon="el-icon-download">导出</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </div>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="24">
- <el-input
- v-model="queryForm.distName"
- clearable
- placeholder="经销商名称"
- style="width: 30%; margin-right: 10px"
- suffix-icon="el-icon-search" />
- <table-tool :check-list.sync="checkList" :columns="columns" style="float: right" />
- </el-col>
- </el-row>
- <el-table ref="distributorTable" v-loading="listLoading" :data="list" @selection-change="setSelectRows">
- <el-table-column align="center" type="selection" />
- <el-table-column
- v-for="(item, index) in finallyColumns"
- :key="index"
- align="center"
- :label="item.label"
- :prop="item.prop"
- show-overflow-tooltip
- :sortable="item.sortable"
- :width="item.width">
- <template #default="{ row }">
- <span v-if="item.prop === 'custStatus'">
- {{ row.custStatus == 10 ? '正常' : '异常' }}
- </span>
- <span v-else>{{ row[item.prop] }}</span>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- background
- :current-page="queryForm.pageNum"
- :layout="layout"
- :page-size="queryForm.pageSize"
- :total="total"
- @current-change="handleCurrentChange"
- @size-change="handleSizeChange" />
- <span slot="footer">
- <el-button size="mini" type="primary" @click="save">保存</el-button>
- <el-button size="mini" @click="innerVisible = false">取消</el-button>
- </span>
- <!-- 新增编辑经销商弹窗 -->
- <distributor-edit ref="edit" @customerSave="fetchData" />
- </el-dialog>
- </template>
- <script>
- import distributorApi from '@/api/base/distr/distr'
- import TableTool from '@/components/table/TableTool'
- import DistributorEdit from '@/views/base/distributor/components/DistrEdit'
- export default {
- name: 'SelectDistributor',
- components: {
- TableTool,
- DistributorEdit,
- },
- props: {
- title: {
- type: String,
- default: '选择经销商/代理商',
- },
- multiple: Boolean,
- queryParams: {
- type: Object,
- default() {
- return {}
- },
- },
- },
- data() {
- return {
- innerVisible: false,
- queryForm: {
- distName: '',
- pageNum: 1,
- pageSize: 10,
- },
- checkList: [],
- columns: [
- {
- label: '经销商名称',
- width: 'auto',
- prop: 'distName',
- // sortable: true,
- disableCheck: true,
- },
- {
- label: '助记名',
- width: 'auto',
- prop: 'abbrName',
- },
- {
- label: '所在省份',
- width: 'auto',
- prop: 'provinceDesc',
- },
- {
- label: '归属销售',
- width: 'auto',
- prop: 'belongSale',
- },
- {
- label: '业务范围',
- width: 'auto',
- prop: 'businessScope',
- },
- {
- label: '负责人',
- width: 'auto',
- prop: 'distBoss',
- },
- {
- label: '负责人电话',
- width: 'auto',
- prop: 'distBossPhone',
- },
- {
- label: '创建人',
- width: 'auto',
- prop: 'createdName',
- },
- {
- label: '创建时间',
- width: 'auto',
- prop: 'createdTime',
- // sortable: true,
- },
- ],
- list: [],
- listLoading: true,
- layout: 'total, sizes, prev, pager, next, jumper',
- total: 0,
- selectRows: [],
- }
- },
- computed: {
- finallyColumns() {
- return this.columns.filter((item) => this.checkList.includes(item.label))
- },
- },
- mounted() {
- this.fetchData()
- },
- methods: {
- open() {
- this.innerVisible = true
- },
- close() {
- this.selectRows = []
- },
- save() {
- this.innerVisible = false
- this.$emit('save', this.selectRows)
- },
- handleAdd() {
- this.$refs.edit.showEdit()
- },
- async fetchData() {
- this.listLoading = true
- let query = Object.assign(this.queryForm, this.queryParams)
- const {
- data: { list, total },
- } = await distributorApi.getList(query)
- this.list = list
- this.total = total
- this.listLoading = false
- },
- setSelectRows(val) {
- if (!this.multiple && val.length === this.list.length && val.length > 1) {
- // 返回单条数据情况下-控制全选情况下单选第一条数据
- if (this.selectRows.length === 1) {
- this.$refs.distributorTable.clearSelection()
- return
- }
- this.$refs.distributorTable.clearSelection()
- this.$refs.distributorTable.toggleRowSelection(val.shift(), true)
- } else if (!this.multiple && val.length > 1) {
- // 返回单条数据情况下-控制选择当前点击数据
- this.$refs.distributorTable.clearSelection()
- this.$refs.distributorTable.toggleRowSelection(val.pop(), true)
- } else {
- this.selectRows = val
- }
- },
- handleSizeChange(val) {
- this.queryForm.pageSize = val
- this.fetchData()
- },
- handleCurrentChange(val) {
- this.queryForm.pageNum = val
- this.fetchData()
- },
- },
- }
- </script>
- <style scoped></style>
|