| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503 |
- <!--
- * @Author: wanglj 471442253@qq.com
- * @Date: 2022-12-26 16:34:37
- * @LastEditors: niezch@dashoo.cn
- * @LastEditTime: 2023-04-03 13:51:12
- * @Description: file content
- * @FilePath: \opms_frontend\src\views\customer\list.vue
- -->
- <template>
- <div class="list-container">
- <el-tabs v-model="activeName" @tab-click="handleClick">
- <el-tab-pane label="全部客户" name="all" />
- <el-tab-pane label="我的客户" name="self" />
- <el-tab-pane label="下属的客户" name="other" />
- </el-tabs>
- <el-row :gutter="10" style="margin-bottom: 10px">
- <!-- <el-col :span="4">
- <el-input v-model="queryForm.custCode" placeholder="客户编码" clearable @keyup.enter.native="handleSearch" />
- </el-col> -->
- <el-col :span="3.5">
- <el-input v-model="queryForm.custName" clearable placeholder="客户名称" @keyup.enter.native="handleSearch" />
- </el-col>
- <!-- <el-col :span="4">
- <el-select v-model="queryForm.custIndustry" clearable placeholder="客户类型" style="width: 100%">
- <el-option v-for="item in industryOptions" :key="item.key" :label="item.value" :value="item.key" />
- </el-select>
- </el-col> -->
- <el-col :span="3.5">
- <el-select v-model="queryForm.province" clearable placeholder="所在省" value-key="id">
- <el-option v-for="item in provinceOptions" :key="item.id" :label="item.distName" :value="item" />
- </el-select>
- <!-- <el-input v-model="queryForm.custProvince" clearable placeholder="所在省" @keyup.enter.native="handleSearch" /> -->
- </el-col>
- <el-col :span="3.5">
- <el-select v-model="queryForm.custCity" clearable placeholder="所在市" value-key="id">
- <el-option
- v-for="item in queryForm.province ? queryForm.province.children : []"
- :key="item.id"
- clearable
- :label="item.distName"
- :value="item.distName" />
- </el-select>
- <!-- <el-input v-model="queryForm.custCity" clearable placeholder="所在市" @keyup.enter.native="handleSearch" /> -->
- </el-col>
- <el-col :span="3.5">
- <el-select v-model="queryForm.salesName" clearable placeholder="所属销售" value-key="id">
- <el-option v-for="item in sellOptions" :key="item.id" :label="item.nickName" :value="item.nickName" />
- </el-select>
- <!-- <el-input v-model="queryForm.salesName" clearable placeholder="所属销售" @keyup.enter.native="handleSearch" /> -->
- </el-col>
- <!-- <el-col :span="4">
- <el-select v-model="queryForm.custLevel" placeholder="客户级别" style="width: 100%">
- <el-option v-for="item in levelOptions" :key="item.value" :label="item.value" :value="item.value" />
- </el-select>
- </el-col> -->
- <el-col :span="6">
- <!-- <el-date-picker
- v-model="queryForm.followUpDate"
- placeholder="最后跟进时间"
- style="width: 100%"
- type="date"
- value-format="yyyy-MM-dd" /> -->
- <el-date-picker
- v-model="queryForm.followUpDate"
- end-placeholder="跟进结束时间"
- range-separator="至"
- start-placeholder="跟进开始时间"
- style="width: 100%"
- type="daterange"
- value-format="yyyy-MM-dd" />
- </el-col>
- <el-col :span="4">
- <el-button icon="el-icon-plus" type="primary" @click="handleSearch">查询</el-button>
- <el-button icon="el-icon-refresh-right" @click="reset">重置</el-button>
- </el-col>
- </el-row>
- <vab-query-form>
- <vab-query-form-left-panel :span="12">
- <el-button
- v-permissions="['cust:list:add']"
- icon="el-icon-plus"
- size="mini"
- type="primary"
- @click="$refs.edit.init()">
- 新建
- </el-button>
- <el-button
- v-permissions="['cust:list:shift']"
- icon="el-icon-plus"
- size="mini"
- type="primary"
- @click="handleShift">
- 转移客户
- </el-button>
- <el-button
- v-permissions="['cust:list:open']"
- icon="el-icon-plus"
- size="mini"
- type="primary"
- @click="handleToOpen">
- 移入公海
- </el-button>
- <el-button
- v-permissions="['cust:list:merge']"
- icon="el-icon-plus"
- size="mini"
- type="primary"
- @click="handleMerge">
- 合并客户
- </el-button>
- <el-button
- v-permissions="['cust:list:sysadmin_transfer']"
- icon="el-icon-refresh"
- type="primary"
- @click="handleSysAdminTransfer">
- 管理员转移客户
- </el-button>
- </vab-query-form-left-panel>
- <vab-query-form-right-panel :span="12">
- <!-- <el-button icon="el-icon-download" @click="exportData" />-->
- <table-tool :columns="columns" :show-columns.sync="showColumns" table-type="customerTable" />
- </vab-query-form-right-panel>
- </vab-query-form>
- <el-table
- ref="table"
- v-loading="listLoading"
- border
- :data="list"
- :height="$baseTableHeight(3)"
- @selection-change="setSelectRows">
- <el-table-column align="center" show-overflow-tooltip type="selection" />
- <el-table-column
- v-for="(item, index) in showColumns"
- :key="index"
- align="center"
- :label="item.label"
- :min-width="item.width"
- :prop="item.prop"
- show-overflow-tooltip
- :sortable="item.sortable">
- <template #default="{ row }">
- <el-button v-if="item.prop === 'custName'" class="link-button" type="text" @click="handleDetail(row)">
- {{ row.custName }}
- </el-button>
- <span v-else-if="item.prop === 'custStatus'">
- {{ row.custStatus == 10 ? '正常' : '异常' }}
- </span>
- <span v-else-if="item.prop === 'custIndustry'">
- {{ selectDictLabel(industryOptions, row.custIndustry) }}
- </span>
- <span v-else-if="item.prop === 'followUpDate'">
- {{ parseTime(row.followUpDate, '{y}-{m}-{d}') }}
- </span>
- <span v-else-if="item.prop === 'createdTime'">
- {{ parseTime(row.createdTime, '{y}-{m}-{d}') }}
- </span>
- <span v-else>{{ row[item.prop] }}</span>
- </template>
- </el-table-column>
- <el-table-column align="center" fixed="right" label="操作" width="90px">
- <template slot-scope="scope">
- <el-button v-permissions="['cust:list:edit']" type="text" @click="handleEdit(scope.row)">编辑</el-button>
- <el-button v-permissions="['cust:list:delete']" type="text" @click="handleDelete(scope.row)">删除</el-button>
- </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" />
- <!-- 新增编辑客户弹窗 -->
- <Edit ref="edit" @createContact="createContact" @customerSave="fetchData" />
- <!-- 新建联系人弹窗 -->
- <Contact ref="contact" />
- <!-- 转移客户 -->
- <Shift ref="shift" @refresh="fetchData" />
- <!-- 移入公海 -->
- <ToOpen ref="toOpen" @refresh="fetchData" />
- <!-- 合并客户 -->
- <Merge ref="merge" @refresh="fetchData" />
- </div>
- </template>
- <script>
- import to from 'await-to-js'
- import api from '@/api/customer'
- import Edit from './components/Edit'
- import Contact from './components/Contact'
- import Shift from './components/Shift'
- import ToOpen from './components/ToOpen'
- import Merge from './components/Merge'
- import TableTool from '@/components/table/TableTool'
- import downloadFileByByte from '@/utils/base64ToFile'
- import userApi from '@/api/system/user'
- export default {
- name: 'ReserveCustomer',
- components: {
- Edit,
- Contact,
- Shift,
- ToOpen,
- Merge,
- TableTool,
- },
- data() {
- return {
- activeName: 'all',
- layout: 'total, sizes, prev, pager, next, jumper',
- queryForm: {
- custCode: '',
- custName: '',
- indusTry: '',
- targetType: '',
- pageNum: 1,
- pageSize: 10,
- isPublic: false,
- salesName: '',
- followUpDate: [],
- custProvince: '',
- custCity: '',
- province: {},
- },
- total: 0,
- listLoading: false,
- list: [],
- selectRows: [],
- industryOptions: [], //客户类型
- levelOptions: [], //客户级别
- provinceOptions: [],
- provinceDetail: [],
- sellOptions: [],
- // 自定义列表
- showColumns: [],
- columns: [
- {
- label: '客户编码',
- width: '120px',
- prop: 'custCode',
- sortable: false,
- disableCheck: false,
- },
- {
- label: '客户名称',
- width: '200px',
- prop: 'custName',
- sortable: false,
- disableCheck: true,
- },
- {
- label: '助记名',
- width: '120px',
- prop: 'abbrName',
- sortable: false,
- disableCheck: false,
- },
- {
- label: '所在省',
- width: '120px',
- prop: 'custProvince',
- sortable: false,
- disableCheck: false,
- },
- {
- label: '所在市',
- width: '100px',
- prop: 'custCity',
- sortable: false,
- disableCheck: false,
- },
- {
- label: '客户类型',
- width: '100px',
- prop: 'custIndustry',
- sortable: false,
- disableCheck: false,
- },
- // {
- // label: '客户级别',
- // width: 'auto',
- // prop: 'custLevel',
- // sortable: false,
- // disableCheck: false,
- // },
- // {
- // label: '客户状态',
- // width: '100px',
- // prop: 'custStatus',
- // sortable: false,
- // disableCheck: false,
- // },
- {
- label: '最后跟进时间',
- width: '100px',
- prop: 'followUpDate',
- sortable: false,
- disableCheck: false,
- },
- {
- label: '最后跟进人',
- width: '100px',
- prop: 'followUpMan',
- sortable: false,
- disableCheck: false,
- },
- {
- label: '所属销售',
- width: '100px',
- prop: 'salesName',
- sortable: false,
- disableCheck: false,
- },
- {
- label: '创建时间',
- width: '100px',
- prop: 'createdTime',
- sortable: false,
- disableCheck: false,
- },
- ],
- }
- },
- watch: {
- showColumns: function () {
- this.$nextTick(() => this.$refs.table.doLayout())
- },
- },
- activated() {
- this.fetchData()
- },
- mounted() {
- this.getOptions()
- this.fetchData()
- },
- methods: {
- getOptions() {
- Promise.all([
- api.getProvinceDetail(),
- this.getDicts('cust_level'),
- this.getDicts('cust_idy'),
- userApi.getList({
- orderBy: 'userName',
- roles: ['SalesEngineer', 'ProductLineManager'],
- pageNum: 1,
- pageSize: 50,
- }),
- ])
- .then(([province, level, industry, sell]) => {
- this.provinceOptions = province.data.list || []
- this.levelOptions = level.data.values || []
- this.industryOptions = industry.data.values || []
- this.sellOptions = sell.data.list || []
- })
- .catch((err) => console.log(err))
- },
- handleClick(tab) {
- console.log(tab, 'tab')
- this.queryForm.pageNum = 1
- this.queryForm.targetType = this.activeName
- this.fetchData()
- },
- async fetchData() {
- this.listLoading = true
- const params = { ...this.queryForm }
- if (this.queryForm.followUpDate && this.queryForm.followUpDate.length === 2) {
- params.beginTime = this.queryForm.followUpDate[0]
- params.endTime = this.queryForm.followUpDate[1]
- }
- params.custProvince = params.province.distName ? params.province.distName : ''
- const [err, res] = await to(api.getList(params))
- if (err) return (this.listLoading = false)
- this.list = res.data.list || []
- this.total = res.data.total
- this.listLoading = false
- this.$nextTick(() => this.$refs.table.doLayout())
- },
- handleSearch() {
- this.queryForm.pageNum = 1
- this.fetchData()
- },
- exportData() {
- this.queryForm.isPublic = false
- let exportFrom = JSON.parse(JSON.stringify(this.queryForm))
- exportFrom.columns = this.showColumns.map((item) => item.label)
- api
- .deriveList(exportFrom)
- .then((res) => {
- if (res.data.list.content) {
- downloadFileByByte(res.data.list.content, '客户数据.xlsx')
- }
- })
- .catch((err) => {
- console.error(err)
- })
- },
- reset() {
- this.queryForm = {
- pageNum: 1,
- pageSize: 10,
- custCode: '', // 客户编码
- custName: '', //客户名称
- indusTry: '', // 客户类型 ()
- salesName: '',
- followUpDate: [],
- custProvince: '',
- custCity: '',
- province: {},
- }
- this.fetchData()
- },
- // 客户编辑
- handleEdit(row) {
- this.$refs.edit.init([row.id])
- },
- // 联系人弹窗
- async createContact(res) {
- this.$refs.contact.contactForm.custId = res.id
- this.$refs.contact.contactForm.custName = res.name
- this.$refs.contact.contactVisible = true
- },
- // 客户详情
- handleDetail(row) {
- this.$router.push({
- path: '/customer/detail',
- query: {
- id: row.id,
- },
- })
- },
- // 客户删除
- handleDelete(row) {
- this.$confirm('确认删除?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- })
- .then(async () => {
- const [err, res] = await to(api.deleteCustomer({ Ids: [row.id] }))
- if (err) return
- if (res.code == 200) {
- this.$message({
- type: 'success',
- message: '删除成功!',
- })
- this.fetchData()
- }
- })
- .catch(() => {})
- },
- handleSizeChange(val) {
- this.queryForm.pageSize = val
- this.fetchData()
- },
- handleCurrentChange(val) {
- this.queryForm.pageNum = val
- this.fetchData()
- },
- setSelectRows(val) {
- this.selectRows = val
- },
- // 转移客户
- handleShift() {
- if (!this.selectRows.length) return this.$message.warning('请选择需要转移的客户')
- this.$refs['shift'].open(this.selectRows)
- },
- // 移入公海
- handleToOpen() {
- if (!this.selectRows.length) return this.$message.warning('请选择要移入公海的客户')
- this.$refs.toOpen.form.ids = this.selectRows.map((item) => item.id)
- this.$refs.toOpen.visible = true
- },
- async handleMerge() {
- if (this.selectRows.length < 2) return this.$message.warning('请选择两个以上客户进行合并')
- const ids = this.selectRows.map((item) => item.id)
- const [err, res] = await to(api.getDetail({ ids }))
- if (err) return
- this.$refs.merge.init(res, ids)
- },
- handleSysAdminTransfer() {
- if (this.selectRows.length === 0) {
- this.$baseMessage('请选择客户', 'warning')
- return
- }
- this.$refs['shift'].sysAdminOpen(this.selectRows)
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- $base: '.list';
- .link-button {
- font-size: 14px;
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- </style>
|