|
@@ -23,14 +23,6 @@
|
|
|
<el-card shadow="never">
|
|
<el-card shadow="never">
|
|
|
<template #header>
|
|
<template #header>
|
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-row :gutter="10" class="mb8">
|
|
|
- <el-col :span="1.5">
|
|
|
|
|
- <el-button v-hasPermi="['system:customer:edit']" type="success" plain icon="Edit"
|
|
|
|
|
- :disabled="single" @click="handleUpdate()">修改</el-button>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="1.5">
|
|
|
|
|
- <el-button v-hasPermi="['system:customer:remove']" type="danger" plain icon="Delete"
|
|
|
|
|
- :disabled="multiple" @click="handleDelete()">删除</el-button>
|
|
|
|
|
- </el-col>
|
|
|
|
|
<right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
|
|
<right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</template>
|
|
</template>
|
|
@@ -39,24 +31,21 @@
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
<el-table-column label="头像" align="center" width="80">
|
|
<el-table-column label="头像" align="center" width="80">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
- <el-avatar :size="36" :src="scope.row.avatar" icon="UserFilled" />
|
|
|
|
|
|
|
+ <el-avatar :size="36" :src="scope.row.avatarUrl" icon="UserFilled" />
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column label="用户名" align="center" prop="userName" />
|
|
<el-table-column label="用户名" align="center" prop="userName" />
|
|
|
<el-table-column label="手机号" align="center" prop="phone" />
|
|
<el-table-column label="手机号" align="center" prop="phone" />
|
|
|
<el-table-column label="微信OpenID" align="center" prop="wechatOpenid" :show-overflow-tooltip="true" />
|
|
<el-table-column label="微信OpenID" align="center" prop="wechatOpenid" :show-overflow-tooltip="true" />
|
|
|
<el-table-column label="微信UnionID" align="center" prop="wechatUnionid" :show-overflow-tooltip="true" />
|
|
<el-table-column label="微信UnionID" align="center" prop="wechatUnionid" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column label="授权客户ID" align="center" prop="authCustomerId" :show-overflow-tooltip="true" />
|
|
|
|
|
|
|
+ <el-table-column label="授权客户ERP编码" align="center" prop="authClientFNum" :show-overflow-tooltip="true" />
|
|
|
|
|
+ <el-table-column label="授权客户名称" align="center" prop="authClientName" :show-overflow-tooltip="true" />
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="160" />
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="160" />
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="120">
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="120">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
- <el-tooltip content="修改" placement="top">
|
|
|
|
|
- <el-button v-hasPermi="['system:customer:edit']" link type="primary" icon="Edit"
|
|
|
|
|
- @click="handleUpdate(scope.row)"></el-button>
|
|
|
|
|
- </el-tooltip>
|
|
|
|
|
- <el-tooltip content="删除" placement="top">
|
|
|
|
|
- <el-button v-hasPermi="['system:customer:remove']" link type="primary" icon="Delete"
|
|
|
|
|
- @click="handleDelete(scope.row)"></el-button>
|
|
|
|
|
|
|
+ <el-tooltip content="授权客户" placement="top">
|
|
|
|
|
+ <el-button v-hasPermi="['customer:customer:auth']" link type="primary" icon="User"
|
|
|
|
|
+ @click="handleAuth(scope.row)"></el-button>
|
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
@@ -66,32 +55,30 @@
|
|
|
:total="total" @pagination="getList" />
|
|
:total="total" @pagination="getList" />
|
|
|
</el-card>
|
|
</el-card>
|
|
|
|
|
|
|
|
- <!-- 添加或修改客户对话框 -->
|
|
|
|
|
- <el-dialog v-model="dialog.visible" :title="dialog.title" width="520px" append-to-body>
|
|
|
|
|
- <el-form ref="customerFormRef" :model="form" :rules="rules" label-width="100px">
|
|
|
|
|
- <el-form-item label="用户名" prop="userName">
|
|
|
|
|
- <el-input v-model="form.userName" placeholder="请输入用户名" />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item label="手机号" prop="phone">
|
|
|
|
|
- <el-input v-model="form.phone" placeholder="请输入手机号" maxlength="11" />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item label="微信OpenID" prop="wechatOpenid">
|
|
|
|
|
- <el-input v-model="form.wechatOpenid" placeholder="请输入微信OpenID" />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item label="微信UnionID" prop="wechatUnionid">
|
|
|
|
|
- <el-input v-model="form.wechatUnionid" placeholder="请输入微信UnionID" />
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- <el-form-item label="授权客户ID" prop="authCustomerId">
|
|
|
|
|
- <el-input v-model="form.authCustomerId" placeholder="请输入授权客户ID" />
|
|
|
|
|
|
|
+ <!-- 授权客户对话框 -->
|
|
|
|
|
+ <el-dialog v-model="authDialog.visible" title="授权客户" width="800px" append-to-body>
|
|
|
|
|
+ <el-form :model="erpQueryParams" ref="erpQueryFormRef" :inline="true" label-width="68px">
|
|
|
|
|
+ <el-form-item label="客户名称" prop="fName">
|
|
|
|
|
+ <el-input v-model="erpQueryParams.fName" placeholder="请输入客户名称" clearable style="width: 200px"
|
|
|
|
|
+ @keyup.enter="getErpList" />
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- <el-form-item label="头像地址" prop="avatar">
|
|
|
|
|
- <el-input v-model="form.avatar" placeholder="请输入头像地址" />
|
|
|
|
|
|
|
+ <el-form-item>
|
|
|
|
|
+ <el-button type="primary" icon="Search" @click="getErpList">搜索</el-button>
|
|
|
|
|
+ <el-button icon="Refresh" @click="resetErpQuery">重置</el-button>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-form>
|
|
</el-form>
|
|
|
|
|
+ <el-table v-loading="erpLoading" :data="erpList" highlight-current-row @current-change="handleErpCurrentChange">
|
|
|
|
|
+ <el-table-column label="客户编码" align="center" prop="fnum" />
|
|
|
|
|
+ <el-table-column label="客户名称" align="center" prop="fname" />
|
|
|
|
|
+ <el-table-column label="联系人" align="center" prop="contactMan" />
|
|
|
|
|
+ <el-table-column label="联系电话" align="center" prop="contactTel" />
|
|
|
|
|
+ </el-table>
|
|
|
|
|
+ <pagination v-show="erpTotal > 0" v-model:page="erpQueryParams.pageNum" v-model:limit="erpQueryParams.pageSize"
|
|
|
|
|
+ :total="erpTotal" @pagination="getErpList" />
|
|
|
<template #footer>
|
|
<template #footer>
|
|
|
<div class="dialog-footer">
|
|
<div class="dialog-footer">
|
|
|
- <el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
|
- <el-button @click="cancel">取 消</el-button>
|
|
|
|
|
|
|
+ <el-button :loading="buttonLoading" type="primary" @click="confirmAuth">确 定</el-button>
|
|
|
|
|
+ <el-button @click="authDialog.visible = false">取 消</el-button>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
</el-dialog>
|
|
</el-dialog>
|
|
@@ -99,8 +86,9 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script setup name="Customer" lang="ts">
|
|
<script setup name="Customer" lang="ts">
|
|
|
-import { listCustomer, getCustomer, delCustomer, updateCustomer } from '@/api/system/customer';
|
|
|
|
|
|
|
+import { listCustomer, getCustomer, authCustomer } from '@/api/system/customer';
|
|
|
import { CustomerVO, CustomerQuery, CustomerForm } from '@/api/system/customer/types';
|
|
import { CustomerVO, CustomerQuery, CustomerForm } from '@/api/system/customer/types';
|
|
|
|
|
+import { listErpClient } from '@/api/erp/client';
|
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
|
|
|
|
@@ -109,30 +97,28 @@ const buttonLoading = ref(false);
|
|
|
const loading = ref(true);
|
|
const loading = ref(true);
|
|
|
const showSearch = ref(true);
|
|
const showSearch = ref(true);
|
|
|
const ids = ref<Array<string | number>>([]);
|
|
const ids = ref<Array<string | number>>([]);
|
|
|
-const single = ref(true);
|
|
|
|
|
-const multiple = ref(true);
|
|
|
|
|
const total = ref(0);
|
|
const total = ref(0);
|
|
|
|
|
|
|
|
const queryFormRef = ref<ElFormInstance>();
|
|
const queryFormRef = ref<ElFormInstance>();
|
|
|
-const customerFormRef = ref<ElFormInstance>();
|
|
|
|
|
|
|
|
|
|
-const dialog = reactive<DialogOption>({
|
|
|
|
|
|
|
+// 授权客户对话框相关
|
|
|
|
|
+const authDialog = reactive({
|
|
|
visible: false,
|
|
visible: false,
|
|
|
- title: ''
|
|
|
|
|
|
|
+ customerId: undefined as string | number | undefined
|
|
|
});
|
|
});
|
|
|
-
|
|
|
|
|
-const initFormData: CustomerForm = {
|
|
|
|
|
- id: undefined,
|
|
|
|
|
- userName: undefined,
|
|
|
|
|
- phone: undefined,
|
|
|
|
|
- wechatOpenid: undefined,
|
|
|
|
|
- wechatUnionid: undefined,
|
|
|
|
|
- authCustomerId: undefined,
|
|
|
|
|
- avatar: undefined
|
|
|
|
|
-};
|
|
|
|
|
|
|
+const erpLoading = ref(false);
|
|
|
|
|
+const erpList = ref<any[]>([]);
|
|
|
|
|
+const erpTotal = ref(0);
|
|
|
|
|
+const erpQueryParams = reactive({
|
|
|
|
|
+ pageNum: 1,
|
|
|
|
|
+ pageSize: 10,
|
|
|
|
|
+ fName: undefined
|
|
|
|
|
+});
|
|
|
|
|
+const selectedErpClient = ref<any>(null);
|
|
|
|
|
+const erpQueryFormRef = ref<ElFormInstance>();
|
|
|
|
|
|
|
|
const data = reactive<PageData<CustomerForm, CustomerQuery>>({
|
|
const data = reactive<PageData<CustomerForm, CustomerQuery>>({
|
|
|
- form: { ...initFormData },
|
|
|
|
|
|
|
+ form: {} as any,
|
|
|
queryParams: {
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
pageNum: 1,
|
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
@@ -140,13 +126,10 @@ const data = reactive<PageData<CustomerForm, CustomerQuery>>({
|
|
|
phone: undefined,
|
|
phone: undefined,
|
|
|
wechatOpenid: undefined
|
|
wechatOpenid: undefined
|
|
|
},
|
|
},
|
|
|
- rules: {
|
|
|
|
|
- userName: [{ required: true, message: '用户名不能为空', trigger: 'blur' }],
|
|
|
|
|
- phone: [{ pattern: /^1[3-9]\d{9}$/, message: '请输入正确的手机号', trigger: 'blur' }]
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ rules: {}
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
-const { queryParams, form, rules } = toRefs(data);
|
|
|
|
|
|
|
+const { queryParams } = toRefs(data);
|
|
|
|
|
|
|
|
/** 查询客户列表 */
|
|
/** 查询客户列表 */
|
|
|
const getList = async () => {
|
|
const getList = async () => {
|
|
@@ -157,18 +140,6 @@ const getList = async () => {
|
|
|
loading.value = false;
|
|
loading.value = false;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
-/** 取消按钮 */
|
|
|
|
|
-const cancel = () => {
|
|
|
|
|
- reset();
|
|
|
|
|
- dialog.visible = false;
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
-/** 表单重置 */
|
|
|
|
|
-const reset = () => {
|
|
|
|
|
- form.value = { ...initFormData };
|
|
|
|
|
- customerFormRef.value?.resetFields();
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
/** 搜索按钮操作 */
|
|
/** 搜索按钮操作 */
|
|
|
const handleQuery = () => {
|
|
const handleQuery = () => {
|
|
|
queryParams.value.pageNum = 1;
|
|
queryParams.value.pageNum = 1;
|
|
@@ -184,42 +155,52 @@ const resetQuery = () => {
|
|
|
/** 多选框选中数据 */
|
|
/** 多选框选中数据 */
|
|
|
const handleSelectionChange = (selection: CustomerVO[]) => {
|
|
const handleSelectionChange = (selection: CustomerVO[]) => {
|
|
|
ids.value = selection.map((item) => item.id);
|
|
ids.value = selection.map((item) => item.id);
|
|
|
- single.value = selection.length != 1;
|
|
|
|
|
- multiple.value = !selection.length;
|
|
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
-/** 修改按钮操作 */
|
|
|
|
|
-const handleUpdate = async (row?: CustomerVO) => {
|
|
|
|
|
- reset();
|
|
|
|
|
- const _id = row?.id || ids.value[0];
|
|
|
|
|
- const res = await getCustomer(_id);
|
|
|
|
|
- Object.assign(form.value, res.data);
|
|
|
|
|
- dialog.visible = true;
|
|
|
|
|
- dialog.title = '修改客户';
|
|
|
|
|
|
|
+/** 授权客户按钮操作 */
|
|
|
|
|
+const handleAuth = (row: CustomerVO) => {
|
|
|
|
|
+ authDialog.customerId = row.id;
|
|
|
|
|
+ authDialog.visible = true;
|
|
|
|
|
+ selectedErpClient.value = null;
|
|
|
|
|
+ resetErpQuery();
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
|
|
+/** 获取ERP客户列表 */
|
|
|
|
|
+const getErpList = async () => {
|
|
|
|
|
+ erpLoading.value = true;
|
|
|
|
|
+ const res = await listErpClient(erpQueryParams);
|
|
|
|
|
+ erpList.value = res.rows;
|
|
|
|
|
+ erpTotal.value = res.total;
|
|
|
|
|
+ erpLoading.value = false;
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
|
|
+/** 重置ERP查询 */
|
|
|
|
|
+const resetErpQuery = () => {
|
|
|
|
|
+ erpQueryFormRef.value?.resetFields();
|
|
|
|
|
+ erpQueryParams.pageNum = 1;
|
|
|
|
|
+ getErpList();
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
-/** 提交按钮 */
|
|
|
|
|
-const submitForm = () => {
|
|
|
|
|
- customerFormRef.value?.validate(async (valid: boolean) => {
|
|
|
|
|
- if (valid) {
|
|
|
|
|
- buttonLoading.value = true;
|
|
|
|
|
- if (form.value.id) {
|
|
|
|
|
- await updateCustomer(form.value).finally(() => (buttonLoading.value = false));
|
|
|
|
|
- }
|
|
|
|
|
- proxy?.$modal.msgSuccess('操作成功');
|
|
|
|
|
- dialog.visible = false;
|
|
|
|
|
- await getList();
|
|
|
|
|
- }
|
|
|
|
|
- });
|
|
|
|
|
|
|
+/** ERP客户行选中 */
|
|
|
|
|
+const handleErpCurrentChange = (val: any) => {
|
|
|
|
|
+ selectedErpClient.value = val;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
-/** 删除按钮操作 */
|
|
|
|
|
-const handleDelete = async (row?: CustomerVO) => {
|
|
|
|
|
- const _ids = row?.id || ids.value;
|
|
|
|
|
- await proxy?.$modal.confirm('是否确认删除客户编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
|
|
|
|
|
- await delCustomer(_ids);
|
|
|
|
|
- proxy?.$modal.msgSuccess('删除成功');
|
|
|
|
|
- await getList();
|
|
|
|
|
|
|
+/** 确认授权 */
|
|
|
|
|
+const confirmAuth = async () => {
|
|
|
|
|
+ if (!selectedErpClient.value) {
|
|
|
|
|
+ proxy?.$modal.msgError('请选择一个ERP客户');
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+ buttonLoading.value = true;
|
|
|
|
|
+ try {
|
|
|
|
|
+ await authCustomer(authDialog.customerId!, selectedErpClient.value.fnum);
|
|
|
|
|
+ proxy?.$modal.msgSuccess('授权成功');
|
|
|
|
|
+ authDialog.visible = false;
|
|
|
|
|
+ getList();
|
|
|
|
|
+ } finally {
|
|
|
|
|
+ buttonLoading.value = false;
|
|
|
|
|
+ }
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
onMounted(() => {
|