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
|
@@ -37,12 +37,8 @@
|
|
|
37
37
|
</td>
|
|
38
38
|
</tr>
|
|
39
39
|
<tr>
|
|
40
|
-
<th>{{ $t1('创建人') }}</th>
|
|
41
|
-
<td>{{ groups._createBy }}</td>
|
|
42
40
|
<th>{{ $t1('创建时间') }}</th>
|
|
43
41
|
<td>{{ groups.createDate }}</td>
|
|
44
|
-
<th>{{ $t1('更新人') }}</th>
|
|
45
|
-
<td>{{ groups._modifyBy }}</td>
|
|
46
42
|
<th>{{ $t1('更新时间') }}</th>
|
|
47
43
|
<td>{{ groups.modifyDate }}</td>
|
|
48
44
|
</tr>
|
|
@@ -108,16 +108,6 @@ export default {
|
|
|
108
108
|
title: this.$t1('创建时间'),
|
|
109
109
|
width: 150
|
|
110
110
|
},
|
|
111
|
-
{
|
|
112
|
-
field: '_createBy',
|
|
113
|
-
title: this.$t1('创建人'),
|
|
114
|
-
width: 150
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
field: '_modifyBy',
|
|
118
|
-
title: this.$t1('更新人'),
|
|
119
|
-
width: 150
|
|
120
|
-
},
|
|
121
111
|
{
|
|
122
112
|
width: 47,
|
|
123
113
|
fixed: 'right',
|