imatrix-ui 2.8.71-dw → 2.8.72-dw
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/super-ui.css +1 -1
- package/lib/super-ui.umd.min.js +7 -7
- package/package.json +4 -2
- package/src/i18n/langs/cn.js +2 -1
- package/src/i18n/langs/en.js +2 -1
- package/src/utils/util.js +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "imatrix-ui",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.72-dw",
|
|
4
4
|
"description": "前端组件库:表格、表单、组织结构树等",
|
|
5
5
|
"main": "lib/super-ui.umd.min.js",
|
|
6
6
|
"private": false,
|
|
@@ -13,9 +13,11 @@
|
|
|
13
13
|
"test:unit": "vue-cli-service test:unit"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
+
"@tinymce/tinymce-vue": "^3.2.4",
|
|
16
17
|
"@zxing/library": "^0.19.1",
|
|
17
18
|
"js-cookie": "^2.2.0",
|
|
18
|
-
"sortablejs": "1.10.2"
|
|
19
|
+
"sortablejs": "1.10.2",
|
|
20
|
+
"tinymce": "^5.6.1"
|
|
19
21
|
},
|
|
20
22
|
"devDependencies": {
|
|
21
23
|
"@vue/cli-plugin-babel": "3.8.0",
|
package/src/i18n/langs/cn.js
CHANGED
package/src/i18n/langs/en.js
CHANGED
|
@@ -40,7 +40,8 @@ const en = {
|
|
|
40
40
|
switchToAdvancedQuery: 'Switch To Advanced Query',
|
|
41
41
|
isNull: 'Is Null',
|
|
42
42
|
isNotNull: 'Is Not Null',
|
|
43
|
-
previewImage: 'Preview image'
|
|
43
|
+
previewImage: 'Preview image',
|
|
44
|
+
fullScreen: 'Full Screen'
|
|
44
45
|
},
|
|
45
46
|
imatrixUIMessage: {
|
|
46
47
|
whetherToConfirmDeletion: 'Whether To Confirm Deletion',
|
package/src/utils/util.js
CHANGED
|
@@ -237,8 +237,12 @@ function parseCondition(entity, conditionList, isSql, tableName, additionalParam
|
|
|
237
237
|
}
|
|
238
238
|
}
|
|
239
239
|
console.log('parseCondition----conditions=', conditions)
|
|
240
|
-
|
|
241
|
-
|
|
240
|
+
if (conditions) {
|
|
241
|
+
// eslint-disable-next-line no-eval
|
|
242
|
+
return eval('(' + conditions + ')')
|
|
243
|
+
} else {
|
|
244
|
+
return true
|
|
245
|
+
}
|
|
242
246
|
}
|
|
243
247
|
const REPLACE_DOT = '__'
|
|
244
248
|
|