|
|
@@ -0,0 +1,222 @@
|
|
|
+<template>
|
|
|
+ <el-dialog append-to-body :title="title" :visible.sync="innerVisible">
|
|
|
+ <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.custName"
|
|
|
+ clearable
|
|
|
+ placeholder="客户名称"
|
|
|
+ style="width: 30%; margin-right: 10px"
|
|
|
+ suffix-icon="el-icon-search" />
|
|
|
+ <!-- <span>显示:</span>-->
|
|
|
+ <!-- <el-radio-group v-model="queryForm.type">-->
|
|
|
+ <!-- <el-radio-button label="全部客户" />-->
|
|
|
+ <!-- <el-radio-button label="我负责的客户" />-->
|
|
|
+ <!-- </el-radio-group>-->
|
|
|
+ <table-tool :check-list.sync="checkList" :columns="columns" style="float: right" />
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-table ref="table" 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.pageNo"
|
|
|
+ :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>
|
|
|
+ <!-- 新增编辑客户弹窗 -->
|
|
|
+ <customer-edit ref="edit" @createContact="createContact" @customerSave="fetchData" />
|
|
|
+ <!-- 新建联系人弹窗 -->
|
|
|
+ <customer-contact ref="contact" />
|
|
|
+ </el-dialog>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import customerApi from '@/api/customer/index'
|
|
|
+ import TableTool from '@/components/table/TableTool'
|
|
|
+ import CustomerEdit from '@/views/customer/components/Edit'
|
|
|
+ import CustomerContact from '@/views/customer/components/Contact'
|
|
|
+
|
|
|
+ export default {
|
|
|
+ name: 'SelectCustomer',
|
|
|
+ components: {
|
|
|
+ TableTool,
|
|
|
+ CustomerEdit,
|
|
|
+ CustomerContact,
|
|
|
+ },
|
|
|
+ props: {
|
|
|
+ title: {
|
|
|
+ type: String,
|
|
|
+ default: '选择',
|
|
|
+ },
|
|
|
+ multiple: Boolean,
|
|
|
+ queryParams: {
|
|
|
+ type: Object,
|
|
|
+ default() {
|
|
|
+ return {}
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ innerVisible: false,
|
|
|
+ queryForm: {
|
|
|
+ custName: '',
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ },
|
|
|
+ checkList: [],
|
|
|
+ columns: [
|
|
|
+ {
|
|
|
+ label: '客户名称',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'custName',
|
|
|
+ // sortable: true,
|
|
|
+ disableCheck: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '助记名',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'abbrName',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '所在地区',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'custLocation',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '客户行业',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'custIndustry',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '客户级别',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'custLevel',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '客户状态',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'custStatus',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ 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
|
|
|
+ },
|
|
|
+ save() {
|
|
|
+ this.innerVisible = false
|
|
|
+ this.$emit('save', this.selectRows)
|
|
|
+ },
|
|
|
+ handleAdd() {
|
|
|
+ this.$refs.edit.init()
|
|
|
+ },
|
|
|
+ // 联系人弹窗
|
|
|
+ async createContact(res) {
|
|
|
+ this.$refs.contact.contactForm.custId = res.id
|
|
|
+ this.$refs.contact.contactForm.custName = res.name
|
|
|
+ this.$refs.contact.contactVisible = true
|
|
|
+ },
|
|
|
+ async fetchData() {
|
|
|
+ this.listLoading = true
|
|
|
+ let query = Object.assign(this.queryForm, this.queryParams)
|
|
|
+ const {
|
|
|
+ data: { list, total },
|
|
|
+ } = await customerApi.getList(query)
|
|
|
+ this.list = list
|
|
|
+ this.total = total
|
|
|
+ this.listLoading = false
|
|
|
+ },
|
|
|
+ setSelectRows(val) {
|
|
|
+ if (!this.multiple && val.length === this.list.length) {
|
|
|
+ // 返回单条数据情况下-控制全选情况下单选第一条数据
|
|
|
+ if (this.selectRows.length === 1) {
|
|
|
+ this.$refs.table.clearSelection()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.$refs.table.clearSelection()
|
|
|
+ this.$refs.table.toggleRowSelection(val.shift(), true)
|
|
|
+ } else if (!this.multiple && val.length > 1) {
|
|
|
+ // 返回单条数据情况下-控制选择当前点击数据
|
|
|
+ this.$refs.table.clearSelection()
|
|
|
+ this.$refs.table.toggleRowSelection(val.pop(), true)
|
|
|
+ } else {
|
|
|
+ this.selectRows = val
|
|
|
+ }
|
|
|
+ },
|
|
|
+ handleSizeChange(val) {
|
|
|
+ this.queryForm.pageSize = val
|
|
|
+ this.fetchData()
|
|
|
+ },
|
|
|
+ handleCurrentChange(val) {
|
|
|
+ this.queryForm.pageNo = val
|
|
|
+ this.fetchData()
|
|
|
+ },
|
|
|
+ },
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped></style>
|