|
|
@@ -2,28 +2,35 @@
|
|
|
* Copyright(c) 2024 dongke All rights reserved. / Confidential
|
|
|
* 类的信息:
|
|
|
* 1.程序名称:
|
|
|
- * 2.功能描述:客户查询方法
|
|
|
+ * 2.功能描述:用户查询方法
|
|
|
* 编辑履历:
|
|
|
* 作者 日期 版本 修改内容
|
|
|
* 周兴 2024-1-19 1.00 新建
|
|
|
*******************************************************************************/
|
|
|
module.exports = {
|
|
|
- customerService: {
|
|
|
+ customerService: {
|
|
|
+ // 前缀
|
|
|
+ prefix: '/mdm-server/core/user/',
|
|
|
+ // 更新密码
|
|
|
+ updatePassWord: 'update_password',
|
|
|
+ // 重置密码
|
|
|
+ resetPassword: 'reset_password',
|
|
|
+ // 解锁
|
|
|
+ unLock: 'un_lock',
|
|
|
+ },
|
|
|
|
|
|
- },
|
|
|
-
|
|
|
- routeUrl: {
|
|
|
- customer: {
|
|
|
- // 客户跟进
|
|
|
- follow: { key: 'follow', url: '/package3/pages/customer-follow-up/add/add', image: '/static/img/customerFollow.png' ,valid:true},
|
|
|
- // 跟进任务
|
|
|
- followTask: { key: 'followTask', url: '/package3/pages/follow-up-tasks/follow-up-tasks', image: '/static/img/followTask.png' },
|
|
|
- // 销售订单
|
|
|
- order: { key: 'order', url: '/package4/pages/order-billing/choose-goods/choose-goods', image: '/static/img/order.png' ,valid:true},
|
|
|
- // 客户收款
|
|
|
- collection: { key: 'collection', url: '/package4/pages/order-billing/customer-collection/add/add', image: '/static/img/receive.png' },
|
|
|
- // 客户合并
|
|
|
- merge: { key: 'merge', url: '/package4/pages/order-billing/customer-collection/add/add', image: '/static/img/customerFollow.png' },
|
|
|
+ routeUrl: {
|
|
|
+ customer: {
|
|
|
+ // 客户跟进
|
|
|
+ follow: { key: 'follow', url: '/package3/pages/customer-follow-up/add/add', image: '/static/img/customerFollow.png', valid: true },
|
|
|
+ // 跟进任务
|
|
|
+ followTask: { key: 'followTask', url: '/package3/pages/follow-up-tasks/follow-up-tasks', image: '/static/img/followTask.png' },
|
|
|
+ // 销售订单
|
|
|
+ order: { key: 'order', url: '/package4/pages/order-billing/choose-goods/choose-goods', image: '/static/img/order.png', valid: true },
|
|
|
+ // 客户收款
|
|
|
+ collection: { key: 'collection', url: '/package4/pages/order-billing/customer-collection/add/add', image: '/static/img/receive.png' },
|
|
|
+ // 客户合并
|
|
|
+ merge: { key: 'merge', url: '/package4/pages/order-billing/customer-collection/add/add', image: '/static/img/customerFollow.png' },
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
};
|