diff --git a/smart-admin-web-javascript/package.json b/smart-admin-web-javascript/package.json index ca685591..ea688914 100644 --- a/smart-admin-web-javascript/package.json +++ b/smart-admin-web-javascript/package.json @@ -2,9 +2,9 @@ "name": "smartadmin", "version": "3.0.0", "author": { - "name": "1024创新实验室(1024lab)", - "email": "lab1024@163.com", - "url": "https://www.1024lab.net" + "name": "赞伯科技", + "email": "", + "url": "" }, "license": "MIT", "homepage": "https://smartadmin.1024lab.net", diff --git a/smart-admin-web-javascript/src/api/business/customer-info/customer-info-api.js b/smart-admin-web-javascript/src/api/business/customer-info/customer-info-api.js new file mode 100644 index 00000000..96963c69 --- /dev/null +++ b/smart-admin-web-javascript/src/api/business/customer-info/customer-info-api.js @@ -0,0 +1,48 @@ +/** + * 客户信息 api 封装 + * + * @Author: hc + * @Date: 2024-12-04 17:21:57 + * @Copyright zb + */ +import { postRequest, getRequest } from '/@/lib/axios'; + +export const customerInfoApi = { + + /** + * 分页查询 @author hc + */ + queryPage : (param) => { + return postRequest('/customerInfo/queryPage', param); + }, + + /** + * 增加 @author hc + */ + add: (param) => { + return postRequest('/customerInfo/add', param); + }, + + /** + * 修改 @author hc + */ + update: (param) => { + return postRequest('/customerInfo/update', param); + }, + + + /** + * 删除 @author hc + */ + delete: (id) => { + return getRequest(`/customerInfo/delete/${id}`); + }, + + /** + * 批量删除 @author hc + */ + batchDelete: (idList) => { + return postRequest('/customerInfo/batchDelete', idList); + }, + +}; diff --git a/smart-admin-web-javascript/src/api/business/customer-info/customer-info-const.js b/smart-admin-web-javascript/src/api/business/customer-info/customer-info-const.js new file mode 100644 index 00000000..cf365b4b --- /dev/null +++ b/smart-admin-web-javascript/src/api/business/customer-info/customer-info-const.js @@ -0,0 +1,11 @@ +/** + * 客户信息 枚举 + * + * @Author: hc + * @Date: 2024-12-04 17:21:57 + * @Copyright zb + */ + + +export default { +}; \ No newline at end of file diff --git a/smart-admin-web-javascript/src/config/app-config.js b/smart-admin-web-javascript/src/config/app-config.js index a08098b4..ea46e41a 100644 --- a/smart-admin-web-javascript/src/config/app-config.js +++ b/smart-admin-web-javascript/src/config/app-config.js @@ -31,13 +31,13 @@ export const appDefaultConfig = { // 页脚 footerFlag: true, // 帮助文档 - helpDocFlag: true, + helpDocFlag: false, // 帮助文档默认展开 - helpDocExpandFlag: true, + helpDocExpandFlag: false, // 水印 watermarkFlag: true, // 网站名称 - websiteName: 'SmartAdmin 3.X', + websiteName: '赞伯科技远程部署平台', // 主题颜色 primaryColor: '#1677ff', // 紧凑 diff --git a/smart-admin-web-javascript/src/views/business/customer-info/customer-info-form.vue b/smart-admin-web-javascript/src/views/business/customer-info/customer-info-form.vue new file mode 100644 index 00000000..12e5f3b8 --- /dev/null +++ b/smart-admin-web-javascript/src/views/business/customer-info/customer-info-form.vue @@ -0,0 +1,119 @@ + + + diff --git a/smart-admin-web-javascript/src/views/business/customer-info/customer-info-list.vue b/smart-admin-web-javascript/src/views/business/customer-info/customer-info-list.vue new file mode 100644 index 00000000..371ed775 --- /dev/null +++ b/smart-admin-web-javascript/src/views/business/customer-info/customer-info-list.vue @@ -0,0 +1,264 @@ + + +