|
|
@@ -0,0 +1,195 @@
|
|
|
+<template>
|
|
|
+ <el-dialog append-to-body :title="title" :visible.sync="innerVisible" @close="close">
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-input
|
|
|
+ v-model="queryForm.keyword"
|
|
|
+ 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="contactTable" 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>
|
|
|
+ </el-dialog>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import businessContactApi from '@/api/proj/businessContact'
|
|
|
+ import TableTool from '@/components/table/TableTool'
|
|
|
+
|
|
|
+ export default {
|
|
|
+ name: 'SelectContact',
|
|
|
+ components: {
|
|
|
+ TableTool,
|
|
|
+ },
|
|
|
+ props: {
|
|
|
+ title: {
|
|
|
+ type: String,
|
|
|
+ default: '选择客户联系人',
|
|
|
+ },
|
|
|
+ addButton: Boolean,
|
|
|
+ multiple: Boolean,
|
|
|
+ // 示例{ custId: id, custName: custName}
|
|
|
+ defaultCustomer: {
|
|
|
+ type: Object,
|
|
|
+ default() {
|
|
|
+ return {}
|
|
|
+ },
|
|
|
+ },
|
|
|
+ queryParams: {
|
|
|
+ type: Object,
|
|
|
+ default() {
|
|
|
+ return {}
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ innerVisible: false,
|
|
|
+ queryForm: {
|
|
|
+ keyword: '',
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ },
|
|
|
+ checkList: [],
|
|
|
+ columns: [
|
|
|
+ {
|
|
|
+ label: '联系人姓名',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'cuctName',
|
|
|
+ // sortable: true,
|
|
|
+ disableCheck: true,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '客户名称',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'custName',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '手机号码',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'telephone',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '微信',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'wechat',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '邮箱',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'email',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '职务',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'postion',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '关键决策人',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'policy',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '性别',
|
|
|
+ width: 'auto',
|
|
|
+ prop: 'cuctGender',
|
|
|
+ // 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() {},
|
|
|
+ methods: {
|
|
|
+ open() {
|
|
|
+ this.innerVisible = true
|
|
|
+ this.fetchData()
|
|
|
+ },
|
|
|
+ close() {
|
|
|
+ this.selectRows = []
|
|
|
+ },
|
|
|
+ save() {
|
|
|
+ this.innerVisible = false
|
|
|
+ this.$emit('save', this.selectRows)
|
|
|
+ },
|
|
|
+ async fetchData() {
|
|
|
+ this.listLoading = true
|
|
|
+ let query = Object.assign(this.queryForm, this.queryParams)
|
|
|
+ const { data } = await businessContactApi.getList(query)
|
|
|
+ if (data) {
|
|
|
+ this.list = data.list
|
|
|
+ this.total = data.total
|
|
|
+ }
|
|
|
+ this.listLoading = false
|
|
|
+ },
|
|
|
+ setSelectRows(val) {
|
|
|
+ if (!this.multiple && val.length === this.list.length && val.length > 1) {
|
|
|
+ // 返回单条数据情况下-控制全选情况下单选第一条数据
|
|
|
+ this.$refs.contactTable.clearSelection()
|
|
|
+ if (this.selectRows.length === 1) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.$refs.contactTable.toggleRowSelection(val.shift(), true)
|
|
|
+ } else if (!this.multiple && val.length > 1) {
|
|
|
+ // 返回单条数据情况下-控制选择当前点击数据
|
|
|
+ this.$refs.contactTable.clearSelection()
|
|
|
+ this.$refs.contactTable.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>
|