| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch">
- <el-form-item label="姓名" prop="contactName">
- <el-input
- v-model="queryParams.contactName"
- placeholder="请输入姓名"
- clearable
- @keyup.enter="handleQuery"
- />
- </el-form-item>
- <el-form-item label="人员编号" prop="contactNo">
- <el-input
- v-model="queryParams.contactNo"
- placeholder="请输入人员编号"
- clearable
- @keyup.enter="handleQuery"
- />
- </el-form-item>
- <el-form-item label="手机号码" prop="phone">
- <el-input
- v-model="queryParams.phone"
- placeholder="请输入手机号码"
- clearable
- @keyup.enter="handleQuery"
- />
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
- <el-button icon="Refresh" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="Plus"
- @click="handleAdd"
- >新增</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- plain
- icon="Edit"
- :disabled="single"
- @click="handleUpdate"
- >修改</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- plain
- icon="Delete"
- :disabled="multiple"
- @click="handleDelete"
- >删除</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- plain
- icon="Download"
- @click="handleExport"
- >导出</el-button>
- </el-col>
- <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <el-table v-loading="loading" :data="contactPersonList" @selection-change="handleSelectionChange" border>
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column label="联系人" align="center" prop="contactName">
- <template #default="scope">
- <span class="contact-name-text">{{ scope.row.contactName }}</span>
- </template>
- </el-table-column>
- <el-table-column label="部门" align="center" prop="deptName" />
- <el-table-column label="客户名称" align="left" prop="customerName" :show-overflow-tooltip="true" />
- <el-table-column label="职位" align="center" prop="roleName" />
- <el-table-column label="手机号码" align="center" prop="phone" />
- <el-table-column label="办公电话" align="center" prop="officePhone" />
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
- <template #default="scope">
- <el-button link type="primary" @click="handleUpdate(scope.row)">详情</el-button>
- <el-button link type="info" @click="handleDelete(scope.row)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total > 0"
- :total="total"
- v-model:page="queryParams.pageNum"
- v-model:limit="queryParams.pageSize"
- @pagination="getList"
- />
- <!-- 添加或修改联系人对话框 -->
- <el-dialog :title="title" v-model="open" width="800px" append-to-body>
- <el-form ref="contactPersonRef" :model="form" :rules="rules" label-width="100px">
- <el-tabs v-model="activeTab">
- <el-tab-pane label="基本信息" name="basic">
- <el-row>
- <el-col :span="12">
- <el-form-item label="人员编号" prop="contactNo">
- <el-input v-model="form.contactNo" placeholder="请输入人员编号" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="姓名" prop="contactName">
- <el-input v-model="form.contactName" placeholder="请输入姓名" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="性别" prop="gender">
- <el-select v-model="form.gender" placeholder="请选择性别">
- <el-option label="男" value="0" />
- <el-option label="女" value="1" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="生日" prop="birthday">
- <el-date-picker clearable
- v-model="form.birthday"
- type="date"
- value-format="YYYY-MM-DD"
- placeholder="请选择生日">
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="角色" prop="roleName">
- <el-input v-model="form.roleName" placeholder="请输入角色" />
- </el-form-item>
- </el-col>
- </el-row>
- </el-tab-pane>
- <el-tab-pane label="工作信息" name="work">
- <el-row>
- <el-col :span="12">
- <el-form-item label="客户名称" prop="customerName">
- <el-input v-model="form.customerName" placeholder="请输入客户名称" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="部门" prop="deptName">
- <el-input v-model="form.deptName" placeholder="请输入部门" />
- </el-form-item>
- </el-col>
- </el-row>
- </el-tab-pane>
- <el-tab-pane label="联系方式" name="contact">
- <el-row>
- <el-col :span="12">
- <el-form-item label="手机号码" prop="phone">
- <el-input v-model="form.phone" placeholder="请输入手机号码" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="座机" prop="officePhone">
- <el-input v-model="form.officePhone" placeholder="请输入座机" />
- </el-form-item>
- </el-col>
- <el-col :span="24">
- <el-form-item label="办公地址" prop="addressDetail">
- <el-input v-model="form.addressDetail" placeholder="请输入办公地址" />
- </el-form-item>
- </el-col>
- </el-row>
- </el-tab-pane>
- <el-tab-pane label="其他" name="other">
- <el-row>
- <el-col :span="24">
- <el-form-item label="备注" prop="remark">
- <el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
- </el-form-item>
- </el-col>
- </el-row>
- </el-tab-pane>
- </el-tabs>
- </el-form>
- <template #footer>
- <div class="dialog-footer">
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </template>
- </el-dialog>
- </div>
- </template>
- <script setup name="ContactPerson">
- import { ref, reactive, toRefs, getCurrentInstance, onMounted } from 'vue';
- import { listContactPerson, getContactPerson, delContactPerson, addContactPerson, updateContactPerson } from "@/api/customer/contactPerson";
- const { proxy } = getCurrentInstance();
- const contactPersonList = ref([]);
- const open = ref(false);
- const loading = ref(true);
- const showSearch = ref(true);
- const ids = ref([]);
- const single = ref(true);
- const multiple = ref(true);
- const total = ref(0);
- const title = ref("");
- const activeTab = ref("basic");
- const data = reactive({
- form: {},
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- contactName: null,
- contactNo: null,
- phone: null,
- customerId: null,
- customerName: null,
- roleId: null
- },
- rules: {
- contactName: [
- { required: true, message: "姓名不能为空", trigger: "blur" }
- ],
- }
- });
- const { queryParams, form, rules } = toRefs(data);
- /** 查询联系人列表 */
- function getList() {
- loading.value = true;
- listContactPerson(queryParams.value).then(response => {
- contactPersonList.value = response.rows;
- total.value = response.total;
- loading.value = false;
- });
- }
- // 取消按钮
- function cancel() {
- open.value = false;
- reset();
- }
- // 表单重置
- function reset() {
- form.value = {
- id: null,
- contactNo: null,
- contactName: null,
- roleId: null,
- roleName: null,
- gender: null,
- birthday: null,
- customerId: null,
- customerName: null,
- phone: null,
- deptId: null,
- deptName: null,
- officePhone: null,
- addressDetail: null,
- status: null,
- remark: null
- };
- proxy.resetForm("contactPersonRef");
- }
- /** 搜索按钮操作 */
- function handleQuery() {
- queryParams.value.pageNum = 1;
- getList();
- }
- /** 重置按钮操作 */
- function resetQuery() {
- proxy.resetForm("queryRef");
- handleQuery();
- }
- // 多选框选中数据
- function handleSelectionChange(selection) {
- ids.value = selection.map(item => item.id);
- single.value = selection.length != 1;
- multiple.value = !selection.length;
- }
- /** 新增按钮操作 */
- function handleAdd() {
- reset();
- open.value = true;
- title.value = "添加联系人";
- }
- /** 修改按钮操作 */
- function handleUpdate(row) {
- reset();
- const _id = row.id || ids.value
- getContactPerson(_id).then(response => {
- form.value = response.data;
- open.value = true;
- title.value = "修改联系人";
- });
- }
- /** 提交按钮 */
- function submitForm() {
- proxy.$refs["contactPersonRef"].validate(valid => {
- if (valid) {
- if (form.value.id != null) {
- updateContactPerson(form.value).then(response => {
- proxy.$modal.msgSuccess("修改成功");
- open.value = false;
- getList();
- });
- } else {
- addContactPerson(form.value).then(response => {
- proxy.$modal.msgSuccess("新增成功");
- open.value = false;
- getList();
- });
- }
- }
- });
- }
- /** 删除按钮操作 */
- function handleDelete(row) {
- const _ids = row.id || ids.value;
- proxy.$modal.confirm('是否确认删除联系人编号为"' + _ids + '"的数据项?').then(function() {
- return delContactPerson(_ids);
- }).then(() => {
- getList();
- proxy.$modal.msgSuccess("删除成功");
- }).catch(() => {});
- }
- /** 导出按钮操作 */
- function handleExport() {
- proxy.download('/customer/customerContact/export', {
- ...queryParams.value
- }, `contactPerson_${new Date().getTime()}.xlsx`)
- }
- getList();
- </script>
- <style scoped>
- /* 表头背景色和文字样式 */
- :deep(.el-table th.el-table__cell) {
- background-color: #f8f9fb !important;
- color: #333 !important;
- height: 50px;
- font-weight: normal !important;
- }
- /* 联系人名称颜色(原型图中为橙色) */
- .contact-name-text {
- color: #ff9900;
- }
- /* 表格行高调整 */
- :deep(.el-table .el-table__cell) {
- padding: 8px 0;
- }
- /* 操作按钮间距 */
- .el-button--link {
- margin: 0 5px;
- }
- </style>
|