You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

182 lines
6.9 KiB

<template>
<el-card v-loading="config.operating">
<search-form>
<search-form-item label="客 户">
<el-input v-model="searchForm.name" clearable maxlength="50"/>
</search-form-item>
<search-form-item label="行政区域">
<region-selector
:value="temp.regionName"
limit
:limit-api="getLimitRegion"
get-children-on-select
@clear="clearSidSearch"
@select="selectRegion"
/>
</search-form-item>
<search-form-item label="地 址">
<el-input v-model="searchForm.address" clearable maxlength="100"/>
</search-form-item>
<search-form-item label="联系人">
<el-input v-model="searchForm.linkman" clearable maxlength="50"/>
</search-form-item>
<search-form-item label="联系电话">
<el-input v-model="searchForm.linkphone" clearable maxlength="20"/>
</search-form-item>
<search-form-item label="状 态">
<el-select v-model="searchForm.enable" clearable @clear="searchForm.enable = null">
<el-option :value="true" label="启用"/>
<el-option :value="false" label="禁用"/>
</el-select>
</search-form-item>
<search-form-item label="创建时间">
<el-date-picker
v-model="temp.ctime"
format="yyyy-MM-dd"
range-separator="-"
type="daterange"
value-format="timestamp"
/>
</search-form-item>
</search-form>
<el-row class="button-group">
<el-button icon="el-icon-search" size="small" type="primary" @click="search">查 询</el-button>
<el-button v-if="canAdd" icon="el-icon-plus" size="small" type="primary" @click="add">添 加</el-button>
<el-button v-if="canUpdate" icon="el-icon-edit" size="small" type="primary" @click="edit">编 辑</el-button>
<el-button v-if="canDel" icon="el-icon-delete" size="small" type="danger" @click="del">删 除</el-button>
</el-row>
<el-row v-loading="config.loading" class="table-container">
<abstract-table :data="tableData" @row-click="rowClick">
<el-table-column align="center" label="#" type="index" width="80"/>
<el-table-column align="center" label="客 户" prop="name" show-overflow-tooltip/>
<el-table-column align="center" label="行政区域" prop="regionName" show-overflow-tooltip/>
<el-table-column align="center" label="地 址" prop="address" show-overflow-tooltip/>
<el-table-column align="center" label="联系人" prop="linkman" show-overflow-tooltip/>
<el-table-column align="center" label="联系电话" prop="linkphone" show-overflow-tooltip/>
<el-table-column align="center" label="创建时间" width="150" show-overflow-tooltip>
<template v-slot="{row}">{{ row.ctime | timestamp2Date }}</template>
</el-table-column>
<el-table-column align="center" label="状 态" width="120">
<template v-slot="{row}">
<span :class="row.enable ? 'success' : 'error'" class="dot"/>
<span>{{ row.enable ? '启用' : '禁用' }}</span>
</template>
</el-table-column>
</abstract-table>
<abstract-pagination :model="searchForm" @current-change="pageChange"/>
</el-row>
<edit-dialog v-model="editDialog" :data="row" :type="type" @success="success"/>
</el-card>
</template>
<script>
import tableMixin from '@/mixin/tablePageMixin'
import EditDialog from './EditDialog'
import RegionSelector from "@/component/RegionSelector"
import SearchForm from "@/component/SearchForm"
import SearchFormItem from "@/component/SearchForm/item"
import {add, update, del, search, getLimitRegion} from "@/api/system/customer"
import {isEmpty} from '@/util'
import {wic} from "@/util/auth"
import {elConfirm, elError, elSuccess} from "@/util/message"
export default {
name: "customerManagement",
mixins: [tableMixin],
components: {EditDialog, RegionSelector, SearchForm, SearchFormItem},
data() {
return {
searchForm: {
name: '',
address: '',
linkman: '',
linkphone: '',
region: null,
enable: null
},
temp: {
regionName: null,
ctime: []
},
editDialog: false
}
},
computed: wic({add, update, del}),
methods: {
getLimitRegion() {
return getLimitRegion.request().then(data => data.data)
},
clearSidSearch() {
this.searchForm.region = null
this.temp.regionName = null
},
selectRegion(obj, ids) {
this.searchForm.region = ids.join(',')
this.temp.regionName = obj.fullname
},
mergeSearchForm() {
return {
...this.searchForm,
startTime: this.temp.ctime ? this.temp.ctime[0] : null,
endTime: this.temp.ctime ? this.temp.ctime[1] + 86400000 : null
}
},
search() {
if (this.config.loading) return
this.config.loading = true
this.row = null
this.type = 'see'
search
.request(this.mergeSearchForm())
.then(({data: {list, total}}) => {
this.searchForm.total = total
this.tableData = list
})
.finally(() => this.config.loading = false)
},
add() {
this.type = 'add'
this.editDialog = true
},
edit() {
if (isEmpty(this.row)) return elError('请选择要编辑的客户')
this.type = 'edit'
this.editDialog = true
},
del() {
if (isEmpty(this.row)) return elError('请选择要删除的客户')
if (this.row.enable) return elError('已启用的客户不能删除')
if (this.config.operating) return
elConfirm(`确定删除客户【${this.row.name}】?`)
.then(() => {
this.config.operating = true
return del.request({id: this.row.id, name: this.row.name})
})
.then(() => this.success('删除成功'))
.finally(() => this.config.operating = false)
},
success(msg) {
elSuccess(msg)
this.editDialog = false
this.search()
}
}
}
</script>