@liuqiongqiong/vue-pages 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.js +3 -3
- package/dist/index.js +3 -3
- package/package.json +68 -68
- package/src/index.js +125 -123
- package/src/pages/institution/Information/index.vue +149 -347
- package/src/pages/nurse/new-personnel/index.vue +777 -0
- package/src/pages/nurse/personnel/index.vue +892 -885
package/package.json
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@liuqiongqiong/vue-pages",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"description": "长护险管理系统业务页面组件库 - 包含结算管理、客户管理、护理管理等完整业务模块",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"module": "dist/index.esm.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
9
|
-
"files": [
|
|
10
|
-
"dist",
|
|
11
|
-
"src"
|
|
12
|
-
],
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "rollup -c",
|
|
15
|
-
"dev": "rollup -c -w",
|
|
16
|
-
"prepublishOnly": "npm run build"
|
|
17
|
-
},
|
|
18
|
-
"keywords": [
|
|
19
|
-
"vue",
|
|
20
|
-
"vue2",
|
|
21
|
-
"element-ui",
|
|
22
|
-
"components",
|
|
23
|
-
"changhuxian",
|
|
24
|
-
"长护险",
|
|
25
|
-
"healthcare",
|
|
26
|
-
"admin",
|
|
27
|
-
"settlement",
|
|
28
|
-
"customer-management",
|
|
29
|
-
"nursing"
|
|
30
|
-
],
|
|
31
|
-
"author": "ChangHuXian Team",
|
|
32
|
-
"license": "MIT",
|
|
33
|
-
"repository": {
|
|
34
|
-
"type": "git",
|
|
35
|
-
"url": "https://gitee.com/VueAppDemo/changhuxian-vue-components.git"
|
|
36
|
-
},
|
|
37
|
-
"homepage": "https://gitee.com/VueAppDemo/changhuxian-vue-components#readme",
|
|
38
|
-
"peerDependencies": {
|
|
39
|
-
"vue": "^2.6.0",
|
|
40
|
-
"element-ui": "^2.13.0",
|
|
41
|
-
"vue-router": "^3.0.0",
|
|
42
|
-
"vuex": "^3.1.0"
|
|
43
|
-
},
|
|
44
|
-
"devDependencies": {
|
|
45
|
-
"@rollup/plugin-commonjs": "^25.0.0",
|
|
46
|
-
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
47
|
-
"@rollup/plugin-terser": "^0.4.0",
|
|
48
|
-
"rollup": "^3.29.0",
|
|
49
|
-
"rollup-plugin-vue": "^5.1.9",
|
|
50
|
-
"sass": "^1.39.0",
|
|
51
|
-
"sass-loader": "^8.0.2",
|
|
52
|
-
"vue-template-compiler": "2.6.10"
|
|
53
|
-
},
|
|
54
|
-
"dependencies": {
|
|
55
|
-
"axios": "^0.18.1",
|
|
56
|
-
"js-cookie": "^2.2.0",
|
|
57
|
-
"crypto-js": "^4.2.0",
|
|
58
|
-
"moment": "^2.30.1",
|
|
59
|
-
"@vue-office/docx": "^1.6.2",
|
|
60
|
-
"@vue-office/pdf": "^2.0.9",
|
|
61
|
-
"echarts": "^4.2.1",
|
|
62
|
-
"xlsx": "^0.14.1",
|
|
63
|
-
"file-saver": "^2.0.1"
|
|
64
|
-
},
|
|
65
|
-
"bugs": {
|
|
66
|
-
"url": "https://gitee.com/VueAppDemo/changhuxian-vue-components/issues"
|
|
67
|
-
}
|
|
68
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@liuqiongqiong/vue-pages",
|
|
3
|
+
"version": "1.0.5",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "长护险管理系统业务页面组件库 - 包含结算管理、客户管理、护理管理等完整业务模块",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.esm.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"src"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "rollup -c",
|
|
15
|
+
"dev": "rollup -c -w",
|
|
16
|
+
"prepublishOnly": "npm run build"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"vue",
|
|
20
|
+
"vue2",
|
|
21
|
+
"element-ui",
|
|
22
|
+
"components",
|
|
23
|
+
"changhuxian",
|
|
24
|
+
"长护险",
|
|
25
|
+
"healthcare",
|
|
26
|
+
"admin",
|
|
27
|
+
"settlement",
|
|
28
|
+
"customer-management",
|
|
29
|
+
"nursing"
|
|
30
|
+
],
|
|
31
|
+
"author": "ChangHuXian Team",
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "https://gitee.com/VueAppDemo/changhuxian-vue-components.git"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://gitee.com/VueAppDemo/changhuxian-vue-components#readme",
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"vue": "^2.6.0",
|
|
40
|
+
"element-ui": "^2.13.0",
|
|
41
|
+
"vue-router": "^3.0.0",
|
|
42
|
+
"vuex": "^3.1.0"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@rollup/plugin-commonjs": "^25.0.0",
|
|
46
|
+
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
47
|
+
"@rollup/plugin-terser": "^0.4.0",
|
|
48
|
+
"rollup": "^3.29.0",
|
|
49
|
+
"rollup-plugin-vue": "^5.1.9",
|
|
50
|
+
"sass": "^1.39.0",
|
|
51
|
+
"sass-loader": "^8.0.2",
|
|
52
|
+
"vue-template-compiler": "2.6.10"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"axios": "^0.18.1",
|
|
56
|
+
"js-cookie": "^2.2.0",
|
|
57
|
+
"crypto-js": "^4.2.0",
|
|
58
|
+
"moment": "^2.30.1",
|
|
59
|
+
"@vue-office/docx": "^1.6.2",
|
|
60
|
+
"@vue-office/pdf": "^2.0.9",
|
|
61
|
+
"echarts": "^4.2.1",
|
|
62
|
+
"xlsx": "^0.14.1",
|
|
63
|
+
"file-saver": "^2.0.1"
|
|
64
|
+
},
|
|
65
|
+
"bugs": {
|
|
66
|
+
"url": "https://gitee.com/VueAppDemo/changhuxian-vue-components/issues"
|
|
67
|
+
}
|
|
68
|
+
}
|
package/src/index.js
CHANGED
|
@@ -1,123 +1,125 @@
|
|
|
1
|
-
// ==================== 导入业务页面组件 ====================
|
|
2
|
-
// 结算管理模块
|
|
3
|
-
import SettlementIndex from
|
|
4
|
-
import PreSettlementIndex from
|
|
5
|
-
import ReconciliationIndex from
|
|
6
|
-
|
|
7
|
-
// 客户管理模块
|
|
8
|
-
import CustomerIndex from
|
|
9
|
-
import CarePlanIndex from
|
|
10
|
-
|
|
11
|
-
// 护理项目模块
|
|
12
|
-
import NursingProjectsIndex from
|
|
13
|
-
import NursingPackageIndex from
|
|
14
|
-
|
|
15
|
-
// 护理员管理
|
|
16
|
-
import NurseIndex from
|
|
17
|
-
|
|
18
|
-
//
|
|
19
|
-
import
|
|
20
|
-
|
|
21
|
-
//
|
|
22
|
-
import
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import
|
|
31
|
-
|
|
32
|
-
// ====================
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
1
|
+
// ==================== 导入业务页面组件 ====================
|
|
2
|
+
// 结算管理模块
|
|
3
|
+
import SettlementIndex from "./pages/SettlementManagement/settlement/index.vue";
|
|
4
|
+
import PreSettlementIndex from "./pages/SettlementManagement/PreSettlement/index.vue";
|
|
5
|
+
import ReconciliationIndex from "./pages/SettlementManagement/reconciliation/index.vue";
|
|
6
|
+
|
|
7
|
+
// 客户管理模块
|
|
8
|
+
import CustomerIndex from "./pages/customerManagement/customer/index.vue";
|
|
9
|
+
import CarePlanIndex from "./pages/customerManagement/carePlan/index.vue";
|
|
10
|
+
|
|
11
|
+
// 护理项目模块
|
|
12
|
+
import NursingProjectsIndex from "./pages/nurseProjects/NursingProjects/index.vue";
|
|
13
|
+
import NursingPackageIndex from "./pages/nurseProjects/NursingPackage/index.vue";
|
|
14
|
+
|
|
15
|
+
// 护理员管理
|
|
16
|
+
import NurseIndex from "./pages/nurse/personnel/index.vue";
|
|
17
|
+
|
|
18
|
+
// 资质人员管理
|
|
19
|
+
import newPersonenlIndex from "./pages/nurse/new-personnel/index.vue";
|
|
20
|
+
|
|
21
|
+
// 机构管理
|
|
22
|
+
import InstitutionIndex from "./pages/institution/Information/index.vue";
|
|
23
|
+
|
|
24
|
+
// 系统管理
|
|
25
|
+
import SysUserIndex from "./pages/sys/user/index.vue";
|
|
26
|
+
import SysRoleIndex from "./pages/sys/role/index.vue";
|
|
27
|
+
|
|
28
|
+
// ==================== 导入通用组件 ====================
|
|
29
|
+
import Pagination from "./components/Pagination/index.vue";
|
|
30
|
+
import PreviewFile from "./components/PreviewFile/index.vue";
|
|
31
|
+
|
|
32
|
+
// ==================== 导入工具函数 ====================
|
|
33
|
+
import * as utils from "./utils";
|
|
34
|
+
|
|
35
|
+
// ==================== 业务页面组件列表 ====================
|
|
36
|
+
const pages = {
|
|
37
|
+
// 结算管理
|
|
38
|
+
SettlementIndex,
|
|
39
|
+
PreSettlementIndex,
|
|
40
|
+
ReconciliationIndex,
|
|
41
|
+
|
|
42
|
+
// 客户管理
|
|
43
|
+
CustomerIndex,
|
|
44
|
+
CarePlanIndex,
|
|
45
|
+
|
|
46
|
+
// 护理项目
|
|
47
|
+
NursingProjectsIndex,
|
|
48
|
+
NursingPackageIndex,
|
|
49
|
+
|
|
50
|
+
// 护理员
|
|
51
|
+
NurseIndex,
|
|
52
|
+
// 资质人员
|
|
53
|
+
newPersonenlIndex,
|
|
54
|
+
// 机构
|
|
55
|
+
InstitutionIndex,
|
|
56
|
+
|
|
57
|
+
// 系统管理
|
|
58
|
+
SysUserIndex,
|
|
59
|
+
SysRoleIndex,
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
// ==================== 通用组件列表 ====================
|
|
63
|
+
const components = [Pagination, PreviewFile];
|
|
64
|
+
|
|
65
|
+
// ==================== 定义install方法 ====================
|
|
66
|
+
const install = function (Vue) {
|
|
67
|
+
// 判断是否安装
|
|
68
|
+
if (install.installed) return;
|
|
69
|
+
install.installed = true;
|
|
70
|
+
|
|
71
|
+
// 遍历注册全局组件
|
|
72
|
+
components.forEach((component) => {
|
|
73
|
+
Vue.component(component.name, component);
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
// 注册页面组件(可选,通常页面组件按需引入)
|
|
77
|
+
Object.keys(pages).forEach((key) => {
|
|
78
|
+
Vue.component(key, pages[key]);
|
|
79
|
+
});
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
// 判断是否是直接引入文件
|
|
83
|
+
if (typeof window !== "undefined" && window.Vue) {
|
|
84
|
+
install(window.Vue);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export default {
|
|
88
|
+
install,
|
|
89
|
+
...components,
|
|
90
|
+
...pages,
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
// ==================== 导出所有模块 ====================
|
|
94
|
+
export {
|
|
95
|
+
// 通用组件
|
|
96
|
+
Pagination,
|
|
97
|
+
PreviewFile,
|
|
98
|
+
|
|
99
|
+
// 结算管理页面
|
|
100
|
+
SettlementIndex,
|
|
101
|
+
PreSettlementIndex,
|
|
102
|
+
ReconciliationIndex,
|
|
103
|
+
|
|
104
|
+
// 客户管理页面
|
|
105
|
+
CustomerIndex,
|
|
106
|
+
CarePlanIndex,
|
|
107
|
+
|
|
108
|
+
// 护理项目页面
|
|
109
|
+
NursingProjectsIndex,
|
|
110
|
+
NursingPackageIndex,
|
|
111
|
+
|
|
112
|
+
// 护理员页面
|
|
113
|
+
NurseIndex,
|
|
114
|
+
//资质人员
|
|
115
|
+
newPersonenlIndex,
|
|
116
|
+
// 机构页面
|
|
117
|
+
InstitutionIndex,
|
|
118
|
+
|
|
119
|
+
// 系统管理页面
|
|
120
|
+
SysUserIndex,
|
|
121
|
+
SysRoleIndex,
|
|
122
|
+
|
|
123
|
+
// 工具函数
|
|
124
|
+
utils,
|
|
125
|
+
};
|