agilebuilder-ui 1.1.65-tmp6 → 1.1.65-tmp8
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/lib/index.js +131 -130
- package/lib/style.css +730 -730
- package/package.json +1 -1
- package/packages/index.js +49 -49
package/package.json
CHANGED
package/packages/index.js
CHANGED
|
@@ -104,49 +104,49 @@ import '../src/permission' // permission control
|
|
|
104
104
|
import permission from '../src/directives/permission' //自定义指令
|
|
105
105
|
|
|
106
106
|
// 将所有组件都存储起来,方便后续统一注册
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
107
|
+
const components = [
|
|
108
|
+
YxAffix,
|
|
109
|
+
Breadcrumb,
|
|
110
|
+
DepartmentTree,
|
|
111
|
+
Hamburger,
|
|
112
|
+
SvgIcon,
|
|
113
|
+
SuperGrid,
|
|
114
|
+
DepartmentUserTree,
|
|
115
|
+
WorkgroupTree,
|
|
116
|
+
WorkgroupUserTree,
|
|
117
|
+
InlineDepartmentTree,
|
|
118
|
+
InlineDepartmentUserTree,
|
|
119
|
+
InlineWorkgroupTree,
|
|
120
|
+
InlineWorkgroupUserTree,
|
|
121
|
+
WorkflowButton,
|
|
122
|
+
WorkflowHistoryList,
|
|
123
|
+
ValidCode,
|
|
124
|
+
RemoveUser,
|
|
125
|
+
RemoveDepartment,
|
|
126
|
+
RemoveWorkgroup,
|
|
127
|
+
OrganizationInput,
|
|
128
|
+
SuperNineGrid,
|
|
129
|
+
DynamicSourceSelect,
|
|
130
|
+
FsUpload,
|
|
131
|
+
ScanCodeInput,
|
|
132
|
+
FsPreview,
|
|
133
|
+
FsUploadList,
|
|
134
|
+
YearRangePicker,
|
|
135
|
+
MultipartUpload,
|
|
136
|
+
RichEditor,
|
|
137
|
+
SecretInfo,
|
|
138
|
+
IntervalSelection,
|
|
139
|
+
DepartmentTreeMobile,
|
|
140
|
+
DepartmentUserTreeMobile,
|
|
141
|
+
SuperIcon,
|
|
142
|
+
FsUploadNew,
|
|
143
|
+
ScanCodeInputBrowser,
|
|
144
|
+
WorkgroupTreeMobile,
|
|
145
|
+
RowForm,
|
|
146
|
+
ChatEmbed,
|
|
147
|
+
VoiceButton,
|
|
148
|
+
DatePickerRange
|
|
149
|
+
]
|
|
150
150
|
|
|
151
151
|
// 定义 install 方法,接收 Vue 作为参数。如果使用 use 注册插件,则所有的组件都将被注册
|
|
152
152
|
const install = function (Vue) {
|
|
@@ -266,9 +266,9 @@ export {getWatermark, cacheWatermark, removeWatermark }
|
|
|
266
266
|
export {i18nOperation }
|
|
267
267
|
|
|
268
268
|
|
|
269
|
-
|
|
270
|
-
//
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
269
|
+
export default {
|
|
270
|
+
// 导出的对象必须具有 install,才能被 Vue.use() 方法安装
|
|
271
|
+
install,
|
|
272
|
+
store,
|
|
273
|
+
...components
|
|
274
|
+
}
|