cloud-web-corejs 1.0.54-dev.215 → 1.0.54-dev.217
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 +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +32 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/formScriptEnabled-editor.vue +4 -0
- package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +49 -37
- package/src/components/xform/form-render/container-item/data-table-item.vue +23 -18
- package/src/components/xform/form-render/container-item/data-table-mixin.js +2341 -1
- package/src/components/xform/mixins/scriptHttp.js +180 -1
- package/src/views/bd/setting/bd_attach_setting/mixins/list.js +20 -0
- package/src/views/bd/setting/form_script/edit1.vue +7 -3
- package/src/views/bd/setting/form_script/mixins/form_list.js +1 -283
- package/src/views/bd/setting/form_script/mixins/list.js +20 -0
- package/src/views/bd/setting/form_script/mixins/list1.js +20 -0
- package/src/views/bd/setting/form_template/mixins/list.js +40 -20
- package/src/views/bd/setting/table_model/mixins/dialog.js +1 -72
- package/src/views/bd/setting/table_model/mixins/edit.js +1 -1106
- package/src/views/bd/setting/table_model/mixins/list.js +20 -0
- package/src/views/user/login/default.vue +4 -4
@@ -233,6 +233,26 @@ modules = {
|
|
233
233
|
{title: this.$t1('数据库表名'), field: "taBm", type: "input", common: true},
|
234
234
|
{title: this.$t1('表描述'), field: "taCh", type: "input", common: true},
|
235
235
|
{title: this.$t1('项目标签'), field: "tag", type: "input", common: true, slot: "tag"},
|
236
|
+
{title: this.$t1('创建人'), field: "createBy", type: "input", common: false},
|
237
|
+
{title: this.$t1('更新人'), field: "modifyBy", type: "input", common: false},
|
238
|
+
{
|
239
|
+
title: this.$t1('创建时间'),
|
240
|
+
field: "startCreateDate",
|
241
|
+
field2: "endCreateDate",
|
242
|
+
type: "dateRange",
|
243
|
+
common: false,
|
244
|
+
widgetType: "datetime",
|
245
|
+
valueFormat: "yyyy-MM-dd HH:mm:ss"
|
246
|
+
},
|
247
|
+
{
|
248
|
+
title: this.$t1('更新时间'),
|
249
|
+
field: "startModifyDate",
|
250
|
+
field2: "endModifyDate",
|
251
|
+
type: "dateRange",
|
252
|
+
common: false,
|
253
|
+
widgetType: "datetime",
|
254
|
+
valueFormat: "yyyy-MM-dd HH:mm:ss"
|
255
|
+
}
|
236
256
|
],
|
237
257
|
config: {
|
238
258
|
proxyConfig: {
|
@@ -101,7 +101,7 @@ export default {
|
|
101
101
|
right: 5px;
|
102
102
|
top: 25px;
|
103
103
|
}
|
104
|
-
|
104
|
+
.box-form{height: 330px;}
|
105
105
|
::v-deep .login-main .el-tabs__header {
|
106
106
|
margin-bottom: 0;
|
107
107
|
|
@@ -139,15 +139,15 @@ export default {
|
|
139
139
|
::v-deep .login-main .el-tabs__header .el-tabs__nav .el-tabs__item {
|
140
140
|
width: 33%;
|
141
141
|
}
|
142
|
-
.login-qr{height:
|
143
|
-
.qr__img{width: 220px;margin-top:
|
142
|
+
.login-qr{height: 330px;text-align: center;position: relative;
|
143
|
+
.qr__img{width: 220px;margin-top:40px;}
|
144
144
|
.qr__txt{color: #666;font-size: 15px;display: block;}
|
145
145
|
.qr__lose{
|
146
146
|
position: absolute;cursor: pointer;
|
147
147
|
width: 192px;
|
148
148
|
height: 192px;
|
149
149
|
background: rgb(255 255 255 / 76%);
|
150
|
-
top:
|
150
|
+
top: 60px;
|
151
151
|
left: 136px;
|
152
152
|
color: #000;
|
153
153
|
line-height: 64px;
|