cloud-web-corejs 1.0.42-dev.3 → 1.0.43
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/package.json +2 -2
- package/src/components/jsonImport/index.vue +1 -7
- package/src/components/table/index.js +1 -1265
- package/src/index.js +4 -14
- package/src/views/bd/setting/form_script/edit1.vue +1 -1
- package/src/views/bd/setting/form_script/mixins/edit.js +2 -2
- package/src/views/bd/setting/form_script/mixins/edit1.js +2 -2
- package/src/views/bd/setting/form_script/mixins/preformDialog.js +3 -0
- package/src/views/bd/setting/form_script/preformDialog.vue +69 -0
- package/src/views/bd/setting/menu_kind/mixins/list.js +1 -1
- package/src/views/bd/setting/table_model/mixins/edit.js +1 -1
- package/src/views/bd/setting/table_model/mixins/list.js +1 -1
- package/src/views/user/access_log/list.vue +346 -349
- package/src/views/user/groups/edit.vue +0 -4
- package/src/views/user/groups/list.vue +0 -10
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloud-web-corejs",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.43",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vue-cli-service serve",
|
|
7
7
|
"lint": "eslint --ext .js,.vue src",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"vue-ls": "^4.2.0",
|
|
43
43
|
"vue-router": "3.0.2",
|
|
44
44
|
"vuex": "3.1.0",
|
|
45
|
-
"vxe-table": "
|
|
45
|
+
"vxe-table": "3.5.4",
|
|
46
46
|
"xlsx": "0.14.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
@@ -63,13 +63,7 @@
|
|
|
63
63
|
>
|
|
64
64
|
<div>
|
|
65
65
|
<div class="import-box">
|
|
66
|
-
<div class="
|
|
67
|
-
{{ $t2('导入中,请勿关闭当前窗口', 'components.excelImport.tip2') }}
|
|
68
|
-
<!-- <span class="fr">耗时:<em class="time-txt">0 时 0 分 0 秒 </em></span> -->
|
|
69
|
-
</div>
|
|
70
|
-
<!-- <el-progress :text-inside="true" :stroke-width="26" :percentage="percentageNum"
|
|
71
|
-
class="export-progress"></el-progress>-->
|
|
72
|
-
<div class="i-status">
|
|
66
|
+
<div class="i-status" style="margin-top: 14px;">
|
|
73
67
|
<div class="item">
|
|
74
68
|
<i class="el-icon-success f-green"></i>
|
|
75
69
|
{{ $t2('成功', 'components.excelImport.success') }}:
|