ecinc-cloud-moarsgl 9.5.210 → 9.6.230
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/index.js +42 -7
- package/lib/ecmoarsgl.common.js +14109 -6123
- package/lib/ecmoarsgl.umd.js +14107 -6121
- package/lib/ecmoarsgl.umd.min.js +80 -80
- package/lib/img/rsgl_index.83d56cc6.png +0 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -40,20 +40,55 @@ import RsglRsglMyFileWork from './src/rsglMyFile/components/work'
|
|
|
40
40
|
import RsglRsglRsglIndex from './src/rsglIndex/index'
|
|
41
41
|
//detailTab
|
|
42
42
|
import RsglDetailTab from './src/detailTab/index'
|
|
43
|
+
//rsglEmployeeCare
|
|
44
|
+
import RsglEmployeeCareIndex from './src/rsglEmployeeCare/index'
|
|
45
|
+
//
|
|
46
|
+
import RsglRiskWarningIndex from './src/rsglRiskWarning/index'
|
|
43
47
|
// 以对象的结构保存组件,便于遍历
|
|
44
48
|
const components = {
|
|
45
|
-
RsglIndex,
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
49
|
+
RsglIndex,
|
|
50
|
+
RsglTaskItem,
|
|
51
|
+
RsglStaffCare,
|
|
52
|
+
RsglRsglRsda,
|
|
53
|
+
RsglRsglMyPay,
|
|
54
|
+
RsglRsglMyPayPayDetail,
|
|
55
|
+
RsglRsglMyFileIndex,
|
|
56
|
+
RsglRsglMyFileBeforeIndex,
|
|
57
|
+
RsglRsglMyFileAppointment,
|
|
58
|
+
RsglRsglMyFileBankCard,
|
|
59
|
+
RsglRsglMyFileCertificate,
|
|
60
|
+
RsglRsglMyFileContract,
|
|
61
|
+
RsglRsglMyFileItemCell,
|
|
62
|
+
RsglRsglMyFileWork,
|
|
63
|
+
RsglRsglRsglIndex,
|
|
64
|
+
RsglDetailTab,
|
|
65
|
+
RsglRsglRsdaAddNewInfo,
|
|
66
|
+
RsglRsglRsdaBaseDetail,
|
|
67
|
+
RsglRsglRsdaCellDa,
|
|
68
|
+
RsglRsglRsdaDaEdit,
|
|
69
|
+
RsglRsglRsdaJlDetail,
|
|
70
|
+
RsglRsglRsdaReglAllRsda,
|
|
71
|
+
RsglRsglRsdaTableCell,
|
|
72
|
+
RsglRsglRsdaTables,
|
|
73
|
+
RsglRsglRsdaTjIndex,
|
|
74
|
+
RsglRsglRsdaUploadFile,
|
|
75
|
+
RsglRsglRsdaViewJl,
|
|
76
|
+
RsglRsglRsdaXqht,
|
|
77
|
+
RsglRsglRsdaJlDialog,
|
|
78
|
+
RsglRsglRsdaLzDialog,
|
|
79
|
+
RsglRsglRsdaNumDialog,
|
|
80
|
+
RsglRsglRsdaRzDialog,
|
|
81
|
+
RsglRsglRsdaZgDialog,
|
|
82
|
+
RsglRsglRsdaZzDialog,
|
|
83
|
+
RsglEmployeeCareIndex,
|
|
84
|
+
RsglRiskWarningIndex
|
|
50
85
|
}
|
|
51
86
|
// 定义 install 方法
|
|
52
|
-
const install = function(Vue) {
|
|
87
|
+
const install = function (Vue) {
|
|
53
88
|
if (install.installed) return
|
|
54
89
|
install.installed = true
|
|
55
90
|
// 遍历并注册全局组件
|
|
56
|
-
Object.keys(components).forEach(key => {
|
|
91
|
+
Object.keys(components).forEach((key) => {
|
|
57
92
|
Vue.component(key, components[key])
|
|
58
93
|
})
|
|
59
94
|
}
|