3 changed files with 718 additions and 41 deletions
-
26src/api/customer/customerGroupInformation.js
-
560src/views/modules/customer/customerGroupInformation.vue
-
173src/views/modules/customer/customerInformationManagement.vue
@ -0,0 +1,26 @@ |
|||
import { createAPI } from "@/utils/httpRequest.js"; |
|||
|
|||
/** |
|||
* 分组信息列表查询 |
|||
* @param data |
|||
* @returns {*} |
|||
*/ |
|||
export const customerGroupInformationSearch = data => createAPI(`/plm/customerGroupInformation/customerGroupInformationSearch`,'post',data) |
|||
/** |
|||
* 分组信息新增 |
|||
* @param data |
|||
* @returns {*} |
|||
*/ |
|||
export const customerGroupInformationSave = data => createAPI(`/plm/customerGroupInformation/customerGroupInformationSave`,'post',data) |
|||
/** |
|||
* 分组信息编辑 |
|||
* @param data |
|||
* @returns {*} |
|||
*/ |
|||
export const customerGroupInformationEdit = data => createAPI(`/plm/customerGroupInformation/customerGroupInformationEdit`,'post',data) |
|||
/** |
|||
* 分组信息删除 |
|||
* @param data |
|||
* @returns {*} |
|||
*/ |
|||
export const customerGroupInformationDelete = data => createAPI(`/plm/customerGroupInformation/customerGroupInformationDelete`,'post',data) |
|||
@ -0,0 +1,560 @@ |
|||
<template> |
|||
<div class="mod-config"> |
|||
<el-form :inline="true" label-position="top" :model="searchData" @keyup.enter.native="getDataList()"> |
|||
<el-form-item :label="'客户组编码'"> |
|||
<el-input v-model="searchData.customerGroupId" clearable style="width: 120px"></el-input> |
|||
</el-form-item> |
|||
<el-form-item :label="'客户组名称'"> |
|||
<el-input v-model="searchData.customerGroupName" clearable style="width: 120px"></el-input> |
|||
</el-form-item> |
|||
<el-form-item :label="'是否在用'"> |
|||
<el-select clearable v-model="searchData.active" style="width: 120px"> |
|||
<el-option label="是" value="Y"></el-option> |
|||
<el-option label="否" value="N"></el-option> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item :label="'客户组'"> |
|||
<el-select clearable v-model="searchData.type" style="width: 120px"> |
|||
<el-option label="客户组1" value="1"></el-option> |
|||
<el-option label="客户组2" value="2"></el-option> |
|||
<el-option label="客户组3" value="3"></el-option> |
|||
<el-option label="客户组4" value="4"></el-option> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item :label="' '"> |
|||
<el-button type="primary" @click="getDataList()">查询</el-button> |
|||
<el-button type="primary" @click="addModal()">新增</el-button> |
|||
<download-excel |
|||
:fields="fields()" |
|||
:data="exportData" |
|||
type="xls" |
|||
:name="exportName" |
|||
:header="exportHeader" |
|||
:footer="exportFooter" |
|||
:fetch="createExportData" |
|||
:before-generate="startDownload" |
|||
:before-finish="finishDownload" |
|||
worksheet="导出信息" |
|||
class="el-button el-button--primary el-button--medium"> |
|||
{{ "导出" }} |
|||
</download-excel> |
|||
</el-form-item> |
|||
</el-form> |
|||
|
|||
<el-table |
|||
:height="height" |
|||
:data="dataList" |
|||
border |
|||
v-loading="dataListLoading" |
|||
style="width: 100%;"> |
|||
<el-table-column |
|||
v-for="(item,index) in columnList" :key="index" |
|||
:sortable="item.columnSortable" |
|||
:prop="item.columnProp" |
|||
:header-align="item.headerAlign" |
|||
:show-overflow-tooltip="item.showOverflowTooltip" |
|||
:align="item.align" |
|||
:fixed="item.fixed==''?false:item.fixed" |
|||
:min-width="item.columnWidth" |
|||
:label="item.columnLabel"> |
|||
<template slot-scope="scope"> |
|||
<span v-if="!item.columnHidden">{{ scope.row[item.columnProp] }}</span> |
|||
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span> |
|||
</template> |
|||
</el-table-column> |
|||
<el-table-column |
|||
fixed="right" |
|||
header-align="center" |
|||
align="center" |
|||
width="160" |
|||
label="操作"> |
|||
<template slot-scope="scope"> |
|||
<a type="text" size="small" @click="updateModal(scope.row)">修改</a> |
|||
<a type="text" size="small" @click="delModal(scope.row)">删除</a> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
|
|||
<!-- 分页栏 --> |
|||
<el-pagination |
|||
@size-change="sizeChangeHandle" |
|||
@current-change="currentChangeHandle" |
|||
:current-page="pageIndex" |
|||
:page-sizes="[20, 50, 100, 200, 500]" |
|||
:page-size="pageSize" |
|||
:total="totalPage" |
|||
layout="total, sizes, prev, pager, next, jumper"> |
|||
</el-pagination> |
|||
|
|||
<el-dialog :title="modalData.title" :close-on-click-modal="false" v-drag :visible.sync="modalFlag" width="495px"> |
|||
<el-form :inline="true" label-position="top" :model="modalData" :rules="rules" style="margin-left: 7px;margin-top: -5px;"> |
|||
<el-form-item label="客户组编码" prop="customerGroupId" :rules="rules.customerGroupId"> |
|||
<el-input v-model="modalData.customerGroupId" :disabled="modalDisableFlag" style="width: 221px"></el-input> |
|||
</el-form-item> |
|||
<el-form-item label="客户组名称" prop="customerGroupName" :rules="rules.customerGroupName"> |
|||
<el-input v-model="modalData.customerGroupName" style="width: 221px"></el-input> |
|||
</el-form-item> |
|||
</el-form> |
|||
<el-form :inline="true" label-position="top" :model="modalData" :rules="rules" style="margin-left: 7px;margin-top: -5px;"> |
|||
<el-form-item label="是否在用" prop="active" :rules="rules.active"> |
|||
<el-select v-model="modalData.active" style="width: 221px"> |
|||
<el-option label="是" value="Y"></el-option> |
|||
<el-option label="否" value="N"></el-option> |
|||
</el-select> |
|||
</el-form-item> |
|||
</el-form> |
|||
<el-form :inline="true" label-position="top" :model="modalData" :rules="rules" style="margin-left: 7px;margin-top: -5px;"> |
|||
<el-form-item label="客户组" prop="type" :rules="rules.type"> |
|||
<el-select v-model="modalData.type" style="width: 221px"> |
|||
<el-option label="客户组1" value="1"></el-option> |
|||
<el-option label="客户组2" value="2"></el-option> |
|||
<el-option label="客户组3" value="3"></el-option> |
|||
<el-option label="客户组4" value="4"></el-option> |
|||
</el-select> |
|||
</el-form-item> |
|||
</el-form> |
|||
<el-footer style="height:30px;margin-top: 20px;text-align:center"> |
|||
<el-button type="primary" @click="saveData()">保存</el-button> |
|||
<el-button type="primary" @click="modalFlag = false">关闭</el-button> |
|||
</el-footer> |
|||
</el-dialog> |
|||
|
|||
<!-- chooseList模态框 --> |
|||
<Chooselist ref="baseList" @getBaseData="getBaseData"></Chooselist> |
|||
</div> |
|||
</template> |
|||
|
|||
|
|||
<script> |
|||
import { |
|||
customerGroupInformationSearch, // 商品信息列表查询 |
|||
customerGroupInformationSave, // 商品信息新增 |
|||
customerGroupInformationEdit, // 商品信息编辑 |
|||
customerGroupInformationDelete // 商品信息删除 |
|||
} from '@/api/customer/customerGroupInformation.js' |
|||
import Chooselist from '@/views/modules/common/Chooselist' |
|||
import customerGroupInformation from './customerGroupInformation' |
|||
export default { |
|||
components: { |
|||
Chooselist |
|||
}, |
|||
watch: { |
|||
searchData: { |
|||
deep: true, |
|||
handler: function (newV, oldV) { |
|||
this.searchData.customerGroupId = this.searchData.customerGroupId.toUpperCase() |
|||
} |
|||
}, |
|||
modalData: { |
|||
deep: true, |
|||
handler: function (newV, oldV) { |
|||
this.modalData.customerGroupId = this.modalData.customerGroupId.toUpperCase() |
|||
} |
|||
} |
|||
}, |
|||
data () { |
|||
return { |
|||
|
|||
// 导出 |
|||
exportData: [], |
|||
exportName: '客户组' + this.dayjs().format('YYYYMMDDHHmmss'), |
|||
exportHeader: ['商品'], |
|||
exportFooter: [], |
|||
resultList: [], |
|||
// ======== 行高 ======== |
|||
height: 200, |
|||
// ======== 分页 ======== |
|||
pageIndex: 1, |
|||
pageSize: 50, |
|||
totalPage: 0, |
|||
// 条件查询 |
|||
searchData: { |
|||
site: this.$store.state.user.site, |
|||
customerGroupId: '', |
|||
customerGroupName: '', |
|||
active: '', |
|||
type: '', |
|||
page: 1, |
|||
limit: 10 |
|||
}, |
|||
// 其它 |
|||
dataListLoading: false, |
|||
|
|||
modalData: { |
|||
flag: '', |
|||
title: '', |
|||
site: this.$store.state.user.site, |
|||
customerGroupId: '', |
|||
customerGroupName: '', |
|||
active: '', |
|||
type: '' |
|||
}, |
|||
// ======== 数据列表 ======== |
|||
dataList: [], |
|||
// 展示列集 |
|||
columnList: [ |
|||
{ |
|||
userId: this.$store.state.user.name, |
|||
functionId: 100007, |
|||
serialNumber: '100007Table1ProductGroupId', |
|||
tableId: "100007Table1", |
|||
tableName: "客户组信息表", |
|||
columnProp: 'customerGroupId', |
|||
headerAlign: "center", |
|||
align: "left", |
|||
columnLabel: '客户组编码', |
|||
columnHidden: false, |
|||
columnImage: false, |
|||
columnSortable: false, |
|||
sortLv: 0, |
|||
status: true, |
|||
fixed: '', |
|||
}, |
|||
{ |
|||
userId: this.$store.state.user.name, |
|||
functionId: 100007, |
|||
serialNumber: '100007Table1ProductGroupName', |
|||
tableId: "100007Table1", |
|||
tableName: "客户组信息表", |
|||
columnProp: 'customerGroupName', |
|||
headerAlign: "center", |
|||
align: "left", |
|||
columnLabel: '客户组名称', |
|||
columnHidden: false, |
|||
columnImage: false, |
|||
columnSortable: false, |
|||
sortLv: 0, |
|||
status: true, |
|||
fixed: '', |
|||
}, |
|||
{ |
|||
functionId: 100007, |
|||
serialNumber: '100007Table1Active', |
|||
tableId: '100007Table1', |
|||
tableName: '客户组信息表', |
|||
columnProp: 'active', |
|||
headerAlign: 'center', |
|||
align: 'center', |
|||
columnLabel: '是否在用', |
|||
columnHidden: false, |
|||
columnImage: false, |
|||
columnSortable: false, |
|||
sortLv: 0, |
|||
status: true, |
|||
fixed: '', |
|||
columnWidth: 120 |
|||
}, |
|||
{ |
|||
functionId: 100007, |
|||
serialNumber: '100007Table1Type', |
|||
tableId: "100007Table1", |
|||
tableName: "客户组信息表", |
|||
columnProp: "type", |
|||
headerAlign: "center", |
|||
align: "center", |
|||
columnLabel: '客户组', |
|||
columnHidden: false, |
|||
columnImage: false, |
|||
columnSortable: false, |
|||
sortLv: 0, |
|||
status: true, |
|||
fixed: '', |
|||
columnWidth: 120 |
|||
}, |
|||
{ |
|||
userId: this.$store.state.user.name, |
|||
functionId: 100007, |
|||
serialNumber: '100007Table1CreateDate', |
|||
tableId: '100007Table1', |
|||
tableName: '客户组信息表', |
|||
columnProp: 'createDate', |
|||
headerAlign: 'center', |
|||
align: 'center', |
|||
columnLabel: '创建时间', |
|||
columnHidden: false, |
|||
columnImage: false, |
|||
columnSortable: false, |
|||
sortLv: 0, |
|||
status: true, |
|||
fixed: '', |
|||
}, |
|||
{ |
|||
userId: this.$store.state.user.name, |
|||
functionId: 100007, |
|||
serialNumber: '100007Table1CreateBy', |
|||
tableId: "100007Table1", |
|||
tableName: "客户组信息表", |
|||
columnProp: 'createBy', |
|||
headerAlign: "center", |
|||
align: "center", |
|||
columnLabel: '创建人', |
|||
columnHidden: false, |
|||
columnImage: false, |
|||
columnSortable: false, |
|||
sortLv: 0, |
|||
status: true, |
|||
fixed: '', |
|||
}, |
|||
{ |
|||
userId: this.$store.state.user.name, |
|||
functionId: 100007, |
|||
serialNumber: '100007Table1UpdateDate', |
|||
tableId: "100007Table1", |
|||
tableName: "客户组信息表", |
|||
columnProp: 'updateDate', |
|||
headerAlign: "center", |
|||
align: "center", |
|||
columnLabel: '更新时间', |
|||
columnHidden: false, |
|||
columnImage: false, |
|||
columnSortable: false, |
|||
sortLv: 0, |
|||
status: true, |
|||
fixed: '', |
|||
}, |
|||
{ |
|||
userId: this.$store.state.user.name, |
|||
functionId: 100007, |
|||
serialNumber: '100007Table1UpdateBy', |
|||
tableId: "100007Table1", |
|||
tableName: "客户组信息表", |
|||
columnProp: 'updateBy', |
|||
headerAlign: "center", |
|||
align: "center", |
|||
columnLabel: '更新人', |
|||
columnHidden: false, |
|||
columnImage: false, |
|||
columnSortable: false, |
|||
sortLv: 0, |
|||
status: true, |
|||
fixed: '', |
|||
}, |
|||
], |
|||
rules:{ |
|||
customerGroupId:[ |
|||
{ |
|||
required: true, |
|||
message: ' ', |
|||
trigger: 'change' |
|||
} |
|||
], |
|||
customerGroupName:[ |
|||
{ |
|||
required: true, |
|||
message: ' ', |
|||
trigger: 'change' |
|||
} |
|||
], |
|||
active:[ |
|||
{ |
|||
required: true, |
|||
message: ' ', |
|||
trigger: 'change' |
|||
} |
|||
], |
|||
type:[ |
|||
{ |
|||
required: true, |
|||
message: ' ', |
|||
trigger: 'change' |
|||
} |
|||
], |
|||
}, |
|||
// ======== 模态框开关控制 ======== |
|||
modalFlag: false, |
|||
modalDisableFlag: false, |
|||
} |
|||
}, |
|||
mounted () { |
|||
this.$nextTick(() => { |
|||
this.height = window.innerHeight - 180 |
|||
}) |
|||
}, |
|||
created () { |
|||
this.getDataList() |
|||
}, |
|||
methods: { |
|||
// 每页数 |
|||
sizeChangeHandle (val) { |
|||
this.pageSize = val |
|||
this.pageIndex = 1 |
|||
this.getDataList() |
|||
}, |
|||
// 当前页 |
|||
currentChangeHandle (val) { |
|||
this.pageIndex = val |
|||
this.getDataList() |
|||
}, |
|||
|
|||
//导出excel |
|||
async createExportData() { |
|||
this.searchData.limit = -1 |
|||
this.searchData.page = 1 |
|||
await customerGroupInformationSearch(this.searchData).then(({data}) => { |
|||
this.exportList= data.page.list; |
|||
}) |
|||
return this.exportList; |
|||
}, |
|||
startDownload() { |
|||
|
|||
}, |
|||
finishDownload() { |
|||
|
|||
}, |
|||
fields() { |
|||
let json = "{" |
|||
this.columnList.forEach((item, index) => { |
|||
if (index == this.columnList.length - 1) { |
|||
json += "\"" + item.columnLabel + "\"" + ":" + "\"" + item.columnProp + "\"" |
|||
} else { |
|||
json += "\"" + item.columnLabel + "\"" + ":" + "\"" + item.columnProp + "\"" + "," |
|||
} |
|||
}) |
|||
json += "}" |
|||
let s = eval("(" + json + ")") |
|||
return s |
|||
}, |
|||
// 导出 end |
|||
// 获取数据列表 |
|||
getDataList () { |
|||
this.searchData.limit = this.pageSize |
|||
this.searchData.page = this.pageIndex |
|||
customerGroupInformationSearch(this.searchData).then(({data}) => { |
|||
if (data.code === 0) { |
|||
this.dataList = data.page.list |
|||
this.pageIndex = data.page.currPage |
|||
this.pageSize = data.page.pageSize |
|||
this.totalPage = data.page.totalCount |
|||
} |
|||
this.dataListLoading = false |
|||
}) |
|||
}, |
|||
|
|||
addModal(){ |
|||
this.modalData = { |
|||
flag: '1', |
|||
title: '客户组新增', |
|||
site: this.$store.state.user.site, |
|||
createBy: this.$store.state.user.name, |
|||
customerGroupId: '', |
|||
customerGroupName: '', |
|||
active: 'Y', |
|||
type: '' |
|||
} |
|||
this.modalDisableFlag = false |
|||
this.modalFlag = true |
|||
}, |
|||
/** |
|||
* 商品信息编辑模态框 |
|||
* @param row |
|||
*/ |
|||
updateModal (row) { |
|||
this.modalData = { |
|||
flag: '2', |
|||
title: '客户组编辑', |
|||
site: row.site, |
|||
customerGroupId: row.customerGroupId, |
|||
customerGroupName: row.customerGroupName, |
|||
active: row.active, |
|||
type: row.type, |
|||
updateBy: this.$store.state.user.name, |
|||
} |
|||
this.modalDisableFlag = true |
|||
this.modalFlag = true |
|||
}, |
|||
|
|||
// ======== 新增/编辑/删除方法 ======== |
|||
/** |
|||
* 商品信息新增/编辑 |
|||
*/ |
|||
saveData () { |
|||
if (this.modalData.customerGroupId === '' || this.modalData.customerGroupId == null) { |
|||
this.$message.warning('请填写客户组编码!') |
|||
return |
|||
} |
|||
if (this.modalData.customerGroupName === '' || this.modalData.customerGroupName == null) { |
|||
this.$message.warning('请填写客户组名称!') |
|||
return |
|||
} |
|||
if (this.modalData.active === '' || this.modalData.active == null) { |
|||
this.$message.warning('请选择是否可用!') |
|||
return |
|||
} |
|||
if (this.modalData.type === '' || this.modalData.type == null) { |
|||
this.$message.warning('请选择客户组!') |
|||
return |
|||
} |
|||
if (this.modalData.flag === '1') { |
|||
customerGroupInformationSave(this.modalData).then(({data}) => { |
|||
if (data && data.code === 0) { |
|||
this.getDataList() |
|||
this.modalFlag = false |
|||
this.$message({ |
|||
message: '操作成功', |
|||
type: 'success', |
|||
duration: 1500, |
|||
onClose: () => {} |
|||
}) |
|||
} else { |
|||
this.$alert(data.msg, '错误', { |
|||
confirmButtonText: '确定' |
|||
}) |
|||
} |
|||
}) |
|||
} else { |
|||
customerGroupInformationEdit(this.modalData).then(({data}) => { |
|||
if (data && data.code === 0) { |
|||
this.getDataList() |
|||
this.modalFlag = false |
|||
this.$message({ |
|||
message: '操作成功', |
|||
type: 'success', |
|||
duration: 1500, |
|||
onClose: () => {} |
|||
}) |
|||
} else { |
|||
this.$alert(data.msg, '错误', { |
|||
confirmButtonText: '确定' |
|||
}) |
|||
} |
|||
}) |
|||
} |
|||
}, |
|||
/** |
|||
* 商品信息删除 |
|||
*/ |
|||
delModal (row) { |
|||
this.$confirm(`是否删除这条客户组信息?`, '提示', { |
|||
confirmButtonText: '确定', |
|||
cancelButtonText: '取消', |
|||
type: 'warning' |
|||
}).then(() => { |
|||
customerGroupInformationDelete(row).then(({data}) => { |
|||
if (data && data.code === 0) { |
|||
this.getDataList() |
|||
this.customerSelections = [] |
|||
this.$message({ |
|||
message: '操作成功', |
|||
type: 'success', |
|||
duration: 1500, |
|||
onClose: () => {} |
|||
}) |
|||
} else { |
|||
this.$alert(data.msg, '错误', { |
|||
confirmButtonText: '确定' |
|||
}) |
|||
} |
|||
}) |
|||
}).catch(() => { |
|||
}) |
|||
}, |
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style scoped lang="scss"> |
|||
/deep/ .customer-tab .el-tabs__content { |
|||
padding: 0px !important; |
|||
height: 459px; |
|||
} |
|||
</style> |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue