2025-07-17 16:11:59 +08:00
|
|
|
--------用户信息------------
|
|
|
|
|
用户登陆时,通过userInfo查询用户信息后存储在useAppStore中,
|
|
|
|
|
src/store/modules/auth/index.ts
|
|
|
|
|
src/views/mps/private-ebank-new/index.vue
|
|
|
|
|
|
|
|
|
|
--------watermark------------
|
|
|
|
|
src/App.vue
|
|
|
|
|
|
|
|
|
|
--------watermark------------
|
|
|
|
|
录入时,增加了营销人员列表
|
|
|
|
|
src/views/mps/private-ebank-new/modules/private-ebank-new-operate-drawer.vue
|
2025-08-08 14:42:24 +08:00
|
|
|
|
2025-08-13 15:00:33 +08:00
|
|
|
--------默认主题--------------
|
|
|
|
|
src/theme/settings.ts
|
|
|
|
|
|
|
|
|
|
--------头像、LOGO、favicon---
|
|
|
|
|
src/assets/imgs
|
|
|
|
|
public/favicon.x 注意此图要缩小N倍
|
|
|
|
|
|
2025-08-08 14:42:24 +08:00
|
|
|
|
|
|
|
|
-------tomcat 部署-----------
|
|
|
|
|
https://www.cnblogs.com/Fooo/p/17807277.html
|
|
|
|
|
|
|
|
|
|
-------tong web 部署---------
|
|
|
|
|
https://blog.csdn.net/user990378983/article/details/130324181
|
2025-10-31 12:42:56 +08:00
|
|
|
|
|
|
|
|
-------work flow ---------
|
2025-11-04 09:29:08 +08:00
|
|
|
1、为不同的业务类型,提供不同的审批表单,并存放到src/components/workflow/form路径下,工作流模块会动态扫描此目录下的所有表单当作审批表单
|
2025-11-05 13:18:00 +08:00
|
|
|
2、审批表单中的flowCode必须写死,并一一对应flow_definition表中的flow_code(流程定义时的流程定义编码)
|
2025-11-04 09:29:08 +08:00
|
|
|
3、不同业务的列表页还是放到views下,当作业务路由组件,但审批表单bicultural放到components下,作为其他工作流动态组件使用
|
|
|
|
|
|
|
|
|
|
4、为节省不必要的操作,暂时考虑使用代码工具生成代码后,将模态组件复制到components目录下并微调(flowCode)即可
|
|
|
|
|
|
|
|
|
|
5、使用附件需要有共享存储,后续优化
|