提交 9077508b 编写于 作者: ibizdev's avatar ibizdev

tony001 发布系统代码 [后台服务,演示应用]

上级 78ca53a5
......@@ -55,12 +55,12 @@ export default {
},
main4_form: {
details: {
grouppanel7: "分组面板",
grouppanel3: "选择控件",
grouppanel2: "时间控件",
grouppanel1: "数据选择",
grouppanel4: "自动填充",
grouppanel5: "其他",
grouppanel7: "基础类",
grouppanel3: "选择",
grouppanel2: "时间",
grouppanel5: "文件上传类",
grouppanel1: "数据选择类",
grouppanel4: "自动填充类",
group1: "编辑器",
formpage1: "基本信息",
srfupdatedate: "更新时间",
......@@ -78,13 +78,13 @@ export default {
formitem2: "开关控件",
formitem3: "滑动输入条",
formitem4: "评分器",
f3: "多行输入框",
f4: "多行输入框(10行)",
f34: "HTML编辑框",
f5: "IP地址输入框",
f6: "直接内容",
f7: "标签",
f8: "标签(旧)",
f7: "标签",
f3: "多行输入框",
f4: "多行输入框(10行)",
f34: "HTML编辑框",
f9: "下拉列表框",
f10: "下拉列表框(100宽度)",
f11: "选项框",
......@@ -100,6 +100,9 @@ export default {
f21: "时间选择控件_秒钟",
f22: "时间选择控件_无日期无秒钟",
f23: "时间选择器(新)",
f35: "代码编辑器",
f36: "图片控件",
f37: "文件上传控件",
f24: "数据选择",
f25: "数据选择(数据链接)",
f26: "数据选择(无AC)",
......@@ -111,9 +114,6 @@ export default {
f31: "自动填充(只能选择)",
f32: "自动填充(无按钮)",
f33: "自动填充(只能选择、无按钮)",
f35: "代码编辑器",
f36: "图片控件",
f37: "文件上传控件",
ibizsample0001id: "IBIZSAMPLE0001标识",
},
uiactions: {
......
......@@ -54,12 +54,12 @@ export default {
},
main4_form: {
details: {
grouppanel7: "分组面板",
grouppanel3: "选择控件",
grouppanel2: "时间控件",
grouppanel1: "数据选择",
grouppanel4: "自动填充",
grouppanel5: "其他",
grouppanel7: "基础类",
grouppanel3: "选择",
grouppanel2: "时间",
grouppanel5: "文件上传类",
grouppanel1: "数据选择类",
grouppanel4: "自动填充类",
group1: "编辑器",
formpage1: "基本信息",
srfupdatedate: "更新时间",
......@@ -77,13 +77,13 @@ export default {
formitem2: "开关控件",
formitem3: "滑动输入条",
formitem4: "评分器",
f3: "多行输入框",
f4: "多行输入框(10行)",
f34: "HTML编辑框",
f5: "IP地址输入框",
f6: "直接内容",
f7: "标签",
f8: "标签(旧)",
f7: "标签",
f3: "多行输入框",
f4: "多行输入框(10行)",
f34: "HTML编辑框",
f9: "下拉列表框",
f10: "下拉列表框(100宽度)",
f11: "选项框",
......@@ -99,6 +99,9 @@ export default {
f21: "时间选择控件_秒钟",
f22: "时间选择控件_无日期无秒钟",
f23: "时间选择器(新)",
f35: "代码编辑器",
f36: "图片控件",
f37: "文件上传控件",
f24: "数据选择",
f25: "数据选择(数据链接)",
f26: "数据选择(无AC)",
......@@ -110,9 +113,6 @@ export default {
f31: "自动填充(只能选择)",
f32: "自动填充(无按钮)",
f33: "自动填充(只能选择、无按钮)",
f35: "代码编辑器",
f36: "图片控件",
f37: "文件上传控件",
ibizsample0001id: "IBIZSAMPLE0001标识",
},
uiactions: {
......
......@@ -23,7 +23,7 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.field2.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.field2.visible" :style="{}" :sm="{ span: 12, offset: 0 }" :md="{ span: 12, offset: 0 }" :lg="{ span: 12, offset: 0 }" :xl="{ span: 12, offset: 0 }">
<app-form-item name='field2' :itemRules="this.rules().field2" class='' :caption="$t('entities.ibizsample0001.main4_form.details.field2')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.field2.error" :isEmptyCaption="false" labelPos="LEFT">
<input-box
v-model="data.field2"
......@@ -39,35 +39,35 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f2.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.f2.visible" :style="{}" :sm="{ span: 12, offset: 0 }" :md="{ span: 12, offset: 0 }" :lg="{ span: 12, offset: 0 }" :xl="{ span: 12, offset: 0 }">
<app-form-item name='f2' :itemRules="this.rules().f2" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f2')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f2.error" :isEmptyCaption="false" labelPos="LEFT">
<i-input type="password" v-model="data.f2" placeholder="占位提示-密码框" :disabled="detailsModel.f2.disabled" style=""></i-input>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.formitem1.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.formitem1.visible" :style="{}" :sm="{ span: 12, offset: 0 }" :md="{ span: 12, offset: 0 }" :lg="{ span: 12, offset: 0 }" :xl="{ span: 12, offset: 0 }">
<app-form-item name='formitem1' :itemRules="this.rules().formitem1" class='' :caption="$t('entities.ibizsample0001.main4_form.details.formitem1')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.formitem1.error" :isEmptyCaption="false" labelPos="LEFT">
<app-stepper name='formitem1' :value="this.data.formitem1" @change="onFormItemValueChange" :disabled="detailsModel.formitem1.disabled" style=""></app-stepper>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.formitem2.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.formitem2.visible" :style="{}" :sm="{ span: 12, offset: 0 }" :md="{ span: 12, offset: 0 }" :lg="{ span: 12, offset: 0 }" :xl="{ span: 12, offset: 0 }">
<app-form-item name='formitem2' :itemRules="this.rules().formitem2" class='' :caption="$t('entities.ibizsample0001.main4_form.details.formitem2')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.formitem2.error" :isEmptyCaption="false" labelPos="LEFT">
<app-switch name='formitem2' :value="this.data.formitem2" @change="($event)=>{this.data.formitem2 = $event} " :disabled="detailsModel.formitem2.disabled" style=""></app-switch>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.formitem3.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.formitem3.visible" :style="{}" :sm="{ span: 12, offset: 0 }" :md="{ span: 12, offset: 0 }" :lg="{ span: 12, offset: 0 }" :xl="{ span: 12, offset: 0 }">
<app-form-item name='formitem3' :itemRules="this.rules().formitem3" class='' :caption="$t('entities.ibizsample0001.main4_form.details.formitem3')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.formitem3.error" :isEmptyCaption="false" labelPos="LEFT">
<app-slider name='formitem3' :value="this.data.formitem3" @change="onFormItemValueChange" :disabled="detailsModel.formitem3.disabled" style=""></app-slider>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.formitem4.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.formitem4.visible" :style="{}" :sm="{ span: 12, offset: 0 }" :md="{ span: 12, offset: 0 }" :lg="{ span: 12, offset: 0 }" :xl="{ span: 12, offset: 0 }">
<app-form-item name='formitem4' :itemRules="this.rules().formitem4" class='' :caption="$t('entities.ibizsample0001.main4_form.details.formitem4')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.formitem4.error" :isEmptyCaption="false" labelPos="LEFT">
<app-rate
name='formitem4'
......@@ -80,52 +80,52 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f3.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f3' :itemRules="this.rules().f3" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f3')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f3.error" :isEmptyCaption="false" labelPos="LEFT">
<input-box v-model="data.f3" :disabled="detailsModel.f3.disabled" type='textarea' style="" placeholder="占位提示-多行输入框"></input-box>
<i-col v-show="detailsModel.f5.visible" :style="{}" :sm="{ span: 12, offset: 0 }" :md="{ span: 12, offset: 0 }" :lg="{ span: 12, offset: 0 }" :xl="{ span: 12, offset: 0 }">
<app-form-item name='f5' :itemRules="this.rules().f5" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f5')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f5.error" :isEmptyCaption="false" labelPos="LEFT">
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f4.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f4' :itemRules="this.rules().f4" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f4')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f4.error" :isEmptyCaption="false" labelPos="LEFT">
<input-box v-model="data.f4" :textareaId="this.$util.createUUID()" :disabled="detailsModel.f4.disabled" type='textarea' textareaStyle="height:200px;" placeholder="占位提示-多行输入框(10行)"></input-box>
<i-col v-show="detailsModel.f6.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f6' :itemRules="this.rules().f6" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f6')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f6.error" :isEmptyCaption="false" labelPos="LEFT">
<div style="">{{data.f6}}</div>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f34.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f34' :itemRules="this.rules().f34" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f34')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f34.error" :isEmptyCaption="false" labelPos="LEFT">
<app-rich-text-editor :formState="formState" :value="data.f34" @change="(val) =>{this.data.f34 =val}" :disabled="detailsModel.f34.disabled" :data="JSON.stringify(this.data)" name="f34" :uploadparams='{}' :exportparams='{}' style=""></app-rich-text-editor>
<i-col v-show="detailsModel.f8.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f8' :itemRules="this.rules().f8" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f8')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f8.error" :isEmptyCaption="false" labelPos="LEFT">
<i-input v-model="data.f8" placeholder="占位提示-标签(旧)" readonly disabled style=""></i-input>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f5.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f5' :itemRules="this.rules().f5" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f5')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f5.error" :isEmptyCaption="false" labelPos="LEFT">
<i-col v-show="detailsModel.f7.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f7' :itemRules="this.rules().f7" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f7')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f7.error" :isEmptyCaption="false" labelPos="LEFT">
<app-span name='f7' :value="data.f7" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style="">
</app-span>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f6.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f6' :itemRules="this.rules().f6" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f6')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f6.error" :isEmptyCaption="false" labelPos="LEFT">
<div style="">{{data.f6}}</div>
<i-col v-show="detailsModel.f3.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f3' :itemRules="this.rules().f3" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f3')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f3.error" :isEmptyCaption="false" labelPos="LEFT">
<input-box v-model="data.f3" :disabled="detailsModel.f3.disabled" type='textarea' style="" placeholder="占位提示-多行输入框"></input-box>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f7.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f7' :itemRules="this.rules().f7" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f7')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f7.error" :isEmptyCaption="false" labelPos="LEFT">
<app-span name='f7' :value="data.f7" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style="">
</app-span>
<i-col v-show="detailsModel.f4.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f4' :itemRules="this.rules().f4" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f4')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f4.error" :isEmptyCaption="false" labelPos="LEFT">
<input-box v-model="data.f4" :textareaId="this.$util.createUUID()" :disabled="detailsModel.f4.disabled" type='textarea' textareaStyle="height:200px;" placeholder="占位提示-多行输入框(10行)"></input-box>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f8.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f8' :itemRules="this.rules().f8" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f8')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f8.error" :isEmptyCaption="false" labelPos="LEFT">
<i-input v-model="data.f8" placeholder="占位提示-标签(旧)" readonly disabled style=""></i-input>
<i-col v-show="detailsModel.f34.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f34' :itemRules="this.rules().f34" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f34')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f34.error" :isEmptyCaption="false" labelPos="LEFT">
<app-rich-text-editor :formState="formState" :value="data.f34" @change="(val) =>{this.data.f34 =val}" :disabled="detailsModel.f34.disabled" :data="JSON.stringify(this.data)" name="f34" :uploadparams='{}' :exportparams='{}' style=""></app-rich-text-editor>
</app-form-item>
......@@ -138,7 +138,7 @@
<i-col v-show="detailsModel.grouppanel3.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-group :uiService="appUIService" :data="transformData(data)" :manageContainerStatus="detailsModel.grouppanel3.manageContainerStatus" :isManageContainer="detailsModel.grouppanel3.isManageContainer" @managecontainerclick="manageContainerClick('grouppanel3')" layoutType="TABLE_24COL" titleStyle="" class='' :uiActionGroup="detailsModel.grouppanel3.uiActionGroup" @groupuiactionclick="groupUIActionClick($event)" :caption="$t('entities.ibizsample0001.main4_form.details.grouppanel3')" :isShowCaption="true" uiStyle="DEFAULT" :titleBarCloseMode="0" :isInfoGroupMode="false" >
<row>
<i-col v-show="detailsModel.f9.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.f9.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f9' :itemRules="this.rules().f9" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f9')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f9.error" :isEmptyCaption="false" labelPos="LEFT">
<dropdown-list
......@@ -158,7 +158,7 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f10.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f10.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f10' :itemRules="this.rules().f10" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f10')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f10.error" :isEmptyCaption="false" labelPos="LEFT">
<dropdown-list
......@@ -178,7 +178,7 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f11.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f11.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f11' :itemRules="this.rules().f11" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f11')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f11.error" :isEmptyCaption="false" labelPos="LEFT">
<div style="">
<app-checkbox :value="this.data.f11" @change="($event)=>{this.data.f11 = $event} " :disabled="detailsModel.f11.disabled"></app-checkbox>
......@@ -187,7 +187,7 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f12.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f12.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f12' :itemRules="this.rules().f12" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f12')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f12.error" :isEmptyCaption="false" labelPos="LEFT">
<app-radio-group
......@@ -207,7 +207,7 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f13.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f13.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f13' :itemRules="this.rules().f13" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f13')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f13.error" :isEmptyCaption="false" labelPos="LEFT">
<app-checkbox-list
......@@ -228,13 +228,13 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f14.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f14.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f14' :itemRules="this.rules().f14" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f14')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f14.error" :isEmptyCaption="false" labelPos="LEFT">
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f15.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f15.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f15' :itemRules="this.rules().f15" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f15')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f15.error" :isEmptyCaption="false" labelPos="LEFT">
</app-form-item>
......@@ -248,56 +248,56 @@
<i-col v-show="detailsModel.grouppanel2.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-group :uiService="appUIService" :data="transformData(data)" :manageContainerStatus="detailsModel.grouppanel2.manageContainerStatus" :isManageContainer="detailsModel.grouppanel2.isManageContainer" @managecontainerclick="manageContainerClick('grouppanel2')" layoutType="TABLE_24COL" titleStyle="" class='' :uiActionGroup="detailsModel.grouppanel2.uiActionGroup" @groupuiactionclick="groupUIActionClick($event)" :caption="$t('entities.ibizsample0001.main4_form.details.grouppanel2')" :isShowCaption="true" uiStyle="DEFAULT" :titleBarCloseMode="0" :isInfoGroupMode="false" >
<row>
<i-col v-show="detailsModel.f16.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f16.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f16' :itemRules="this.rules().f16" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f16')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f16.error" :isEmptyCaption="false" labelPos="LEFT">
<date-picker type="date" :transfer="true" format="yyyy-MM-dd" placeholder="占位提示-时间选择控件" :value="data.f16" :disabled="detailsModel.f16.disabled" style="min-width: 150px;width:160px; " @on-change="(val1, val2) => { this.data.f16 = val1 }"></date-picker>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f17.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f17.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f17' :itemRules="this.rules().f17" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f17')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f17.error" :isEmptyCaption="false" labelPos="LEFT">
<date-picker type="date" :transfer="true" format="yyyy-MM-dd" placeholder="占位提示-时间选择控件_无小时" :value="data.f17" :disabled="detailsModel.f17.disabled" style="min-width: 150px; width:100px;" @on-change="(val1, val2) => { this.data.f17 = val1 }"></date-picker>
<date-picker type="date" :transfer="true" format="yyyy-MM-dd" placeholder="占位提示-时间选择控件_无小时" :value="data.f17" :disabled="detailsModel.f17.disabled" style="min-width: 150px; width:160px;" @on-change="(val1, val2) => { this.data.f17 = val1 }"></date-picker>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f18.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f18.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f18' :itemRules="this.rules().f18" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f18')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f18.error" :isEmptyCaption="false" labelPos="LEFT">
<time-picker :value="data.f18" :transfer="true" :disabled="detailsModel.f18.disabled" format="HH:mm:ss" placeholder="占位提示-时间选择控件_无日期" style="min-width: 150px; width:90px;" @on-change="(val) => {this.data.f18 = val}"></time-picker>
<time-picker :value="data.f18" :transfer="true" :disabled="detailsModel.f18.disabled" format="HH:mm:ss" placeholder="占位提示-时间选择控件_无日期" style="min-width: 150px; width:160px;" @on-change="(val) => {this.data.f18 = val}"></time-picker>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f19.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f19.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f19' :itemRules="this.rules().f19" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f19')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f19.error" :isEmptyCaption="false" labelPos="LEFT">
<time-picker :value="data.f19" :transfer="true" :disabled="detailsModel.f19.disabled" format="HH" placeholder="占位提示-时间选择控件_小时" style="min-width: 150px; width:120px;" @on-change="(val) => {this.data.f19 = val}"></time-picker>
<time-picker :value="data.f19" :transfer="true" :disabled="detailsModel.f19.disabled" format="HH" placeholder="占位提示-时间选择控件_小时" style="min-width: 150px; width:160px;" @on-change="(val) => {this.data.f19 = val}"></time-picker>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f20.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f20.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f20' :itemRules="this.rules().f20" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f20')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f20.error" :isEmptyCaption="false" labelPos="LEFT">
<time-picker :value="data.f20" :transfer="true" :disabled="detailsModel.f20.disabled" format="mm" placeholder="占位提示-时间选择控件_分钟" style="min-width: 150px; width:140px;" @on-change="(val) => {this.data.f20 = val}"></time-picker>
<time-picker :value="data.f20" :transfer="true" :disabled="detailsModel.f20.disabled" format="mm" placeholder="占位提示-时间选择控件_分钟" style="min-width: 150px; width:160px;" @on-change="(val) => {this.data.f20 = val}"></time-picker>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f21.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f21.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f21' :itemRules="this.rules().f21" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f21')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f21.error" :isEmptyCaption="false" labelPos="LEFT">
<time-picker :value="data.f21" :transfer="true" :disabled="detailsModel.f21.disabled" format="ss" placeholder="占位提示-时间选择控件_秒钟" style="min-width: 150px; width:160px;" @on-change="(val) => {this.data.f21 = val}"></time-picker>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f22.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f22.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f22' :itemRules="this.rules().f22" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f22')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f22.error" :isEmptyCaption="false" labelPos="LEFT">
<time-picker :value="data.f22" :transfer="true" :disabled="detailsModel.f22.disabled" format="HH:mm" placeholder="占位提示-时间选择控件_无日期无秒钟" style="min-width: 150px; width:70px;" @on-change="(val) => {this.data.f22 = val}"></time-picker>
<time-picker :value="data.f22" :transfer="true" :disabled="detailsModel.f22.disabled" format="HH:mm" placeholder="占位提示-时间选择控件_无日期无秒钟" style="min-width: 150px; width:160px;" @on-change="(val) => {this.data.f22 = val}"></time-picker>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f23.visible" :style="{}" :lg="{ span: 24, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<i-col v-show="detailsModel.f23.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f23' :itemRules="this.rules().f23" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f23')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f23.error" :isEmptyCaption="false" labelPos="LEFT">
<date-picker type="datetime" :transfer="true" format="yyyy-MM-dd HH:mm:ss" placeholder="占位提示-时间选择控件(新)" :value="data.f23" :disabled="detailsModel.f23.disabled" style="min-width: 150px; width:160px;" @on-change="(val1, val2) => { this.data.f23 = val1 }"></date-picker>
......@@ -308,11 +308,40 @@
</row>
</app-form-group>
</i-col>
<i-col v-show="detailsModel.grouppanel5.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-group :uiService="appUIService" :data="transformData(data)" :manageContainerStatus="detailsModel.grouppanel5.manageContainerStatus" :isManageContainer="detailsModel.grouppanel5.isManageContainer" @managecontainerclick="manageContainerClick('grouppanel5')" layoutType="TABLE_24COL" titleStyle="" class='' :uiActionGroup="detailsModel.grouppanel5.uiActionGroup" @groupuiactionclick="groupUIActionClick($event)" :caption="$t('entities.ibizsample0001.main4_form.details.grouppanel5')" :isShowCaption="true" uiStyle="DEFAULT" :titleBarCloseMode="0" :isInfoGroupMode="false" >
<row>
<i-col v-show="detailsModel.f35.visible" :style="{}" :sm="{ span: 12, offset: 0 }" :md="{ span: 12, offset: 0 }" :lg="{ span: 12, offset: 0 }" :xl="{ span: 12, offset: 0 }">
<app-form-item name='f35' :itemRules="this.rules().f35" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f35')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f35.error" :isEmptyCaption="false" labelPos="LEFT">
<app-image-upload :multiple="false" :formState="formState" :ignorefieldvaluechange="ignorefieldvaluechange" @formitemvaluechange="onFormItemValueChange" :data="JSON.stringify(this.data)" name='f35' :value="data.f35" :disabled="detailsModel.f35.disabled" :uploadparams='{}' :exportparams='{}' ></app-image-upload>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f36.visible" :style="{}" :sm="{ span: 12, offset: 0 }" :md="{ span: 12, offset: 0 }" :lg="{ span: 12, offset: 0 }" :xl="{ span: 12, offset: 0 }">
<app-form-item name='f36' :itemRules="this.rules().f36" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f36')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f36.error" :isEmptyCaption="false" labelPos="LEFT">
<app-image-upload :multiple="true" :formState="formState" :ignorefieldvaluechange="ignorefieldvaluechange" @formitemvaluechange="onFormItemValueChange" :data="JSON.stringify(this.data)" name='f36' :value="data.f36" :disabled="detailsModel.f36.disabled" :uploadparams='{}' :exportparams='{}' style="overflow: auto;"></app-image-upload>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f37.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f37' :itemRules="this.rules().f37" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f37')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f37.error" :isEmptyCaption="false" labelPos="LEFT">
<app-file-upload :formState="formState" :ignorefieldvaluechange="ignorefieldvaluechange" @formitemvaluechange="onFormItemValueChange" :data="JSON.stringify(this.data)" name='f37' :value="data.f37" :disabled="detailsModel.f37.disabled" :uploadparams='{}' :exportparams='{}' style="overflow: auto;"></app-file-upload>
</app-form-item>
</i-col>
</row>
</app-form-group>
</i-col>
<i-col v-show="detailsModel.grouppanel1.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-group :uiService="appUIService" :data="transformData(data)" :manageContainerStatus="detailsModel.grouppanel1.manageContainerStatus" :isManageContainer="detailsModel.grouppanel1.isManageContainer" @managecontainerclick="manageContainerClick('grouppanel1')" layoutType="TABLE_24COL" titleStyle="" class='' :uiActionGroup="detailsModel.grouppanel1.uiActionGroup" @groupuiactionclick="groupUIActionClick($event)" :caption="$t('entities.ibizsample0001.main4_form.details.grouppanel1')" :isShowCaption="true" uiStyle="DEFAULT" :titleBarCloseMode="0" :isInfoGroupMode="false" >
<row>
<i-col v-show="detailsModel.f24.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.f24.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f24' :itemRules="this.rules().f24" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f24')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f24.error" :isEmptyCaption="false" labelPos="LEFT">
<app-picker
......@@ -339,7 +368,7 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f25.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.f25.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f25' :itemRules="this.rules().f25" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f25')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f25.error" :isEmptyCaption="false" labelPos="LEFT">
<app-picker
......@@ -366,7 +395,7 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f26.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.f26.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f26' :itemRules="this.rules().f26" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f26')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f26.error" :isEmptyCaption="false" labelPos="LEFT">
<app-picker
......@@ -390,7 +419,7 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f27.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.f27.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f27' :itemRules="this.rules().f27" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f27')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f27.error" :isEmptyCaption="false" labelPos="LEFT">
<app-picker
......@@ -415,7 +444,7 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f28.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.f28.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f28' :itemRules="this.rules().f28" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f28')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f28.error" :isEmptyCaption="false" labelPos="LEFT">
<app-picker
......@@ -441,7 +470,7 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f29.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.f29.visible" :style="{}" :sm="{ span: 8, offset: 0 }" :md="{ span: 8, offset: 0 }" :lg="{ span: 8, offset: 0 }" :xl="{ span: 8, offset: 0 }">
<app-form-item name='f29' :itemRules="this.rules().f29" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f29')" uiStyle="DEFAULT" :labelWidth="200" :isShowCaption="true" :error="detailsModel.f29.error" :isEmptyCaption="false" labelPos="LEFT">
<app-picker
......@@ -503,43 +532,6 @@
</row>
</app-form-group>
</i-col>
<i-col v-show="detailsModel.grouppanel5.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-group :uiService="appUIService" :data="transformData(data)" :manageContainerStatus="detailsModel.grouppanel5.manageContainerStatus" :isManageContainer="detailsModel.grouppanel5.isManageContainer" @managecontainerclick="manageContainerClick('grouppanel5')" layoutType="TABLE_24COL" titleStyle="" class='' :uiActionGroup="detailsModel.grouppanel5.uiActionGroup" @groupuiactionclick="groupUIActionClick($event)" :caption="$t('entities.ibizsample0001.main4_form.details.grouppanel5')" :isShowCaption="true" uiStyle="DEFAULT" :titleBarCloseMode="0" :isInfoGroupMode="false" >
<row>
<i-col v-show="detailsModel.f35.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f35' :itemRules="this.rules().f35" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f35')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f35.error" :isEmptyCaption="false" labelPos="LEFT">
<input-box
v-model="data.f35"
@enter="onEnter($event)"
:disabled="detailsModel.f35.disabled"
type='text'
placeholder="占位提示-代码编辑器"
style="">
</input-box>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f36.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f36' :itemRules="this.rules().f36" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f36')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f36.error" :isEmptyCaption="false" labelPos="LEFT">
<app-image-upload :multiple="true" :formState="formState" :ignorefieldvaluechange="ignorefieldvaluechange" @formitemvaluechange="onFormItemValueChange" :data="JSON.stringify(this.data)" name='f36' :value="data.f36" :disabled="detailsModel.f36.disabled" :uploadparams='{}' :exportparams='{}' style="overflow: auto;"></app-image-upload>
</app-form-item>
</i-col>
<i-col v-show="detailsModel.f37.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='f37' :itemRules="this.rules().f37" class='' :caption="$t('entities.ibizsample0001.main4_form.details.f37')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.f37.error" :isEmptyCaption="false" labelPos="LEFT">
<app-file-upload :formState="formState" :ignorefieldvaluechange="ignorefieldvaluechange" @formitemvaluechange="onFormItemValueChange" :data="JSON.stringify(this.data)" name='f37' :value="data.f37" :disabled="detailsModel.f37.disabled" :uploadparams='{}' :exportparams='{}' style="overflow: auto;"></app-file-upload>
</app-form-item>
</i-col>
</row>
</app-form-group>
</i-col>
</row>
......@@ -948,13 +940,13 @@ export default class Main4Base extends Vue implements ControlInterface {
formitem2: null,
formitem3: null,
formitem4: null,
f3: null,
f4: null,
f34: null,
f5: null,
f6: null,
f7: null,
f8: null,
f7: null,
f3: null,
f4: null,
f34: null,
f9: null,
f10: null,
f11: null,
......@@ -970,6 +962,9 @@ export default class Main4Base extends Vue implements ControlInterface {
f21: null,
f22: null,
f23: null,
f35: null,
f36: null,
f37: null,
f24: null,
f25: null,
f26: null,
......@@ -981,9 +976,6 @@ export default class Main4Base extends Vue implements ControlInterface {
f31: null,
f32: null,
f33: null,
f35: null,
f36: null,
f37: null,
ibizsample0001id: null,
ibizsample0001:null,
};
......@@ -1064,18 +1056,6 @@ export default class Main4Base extends Vue implements ControlInterface {
{ required: this.detailsModel.formitem4.required, type: 'string', message: '评分器 值不能为空', trigger: 'change' },
{ required: this.detailsModel.formitem4.required, type: 'string', message: '评分器 值不能为空', trigger: 'blur' },
],
f3: [
{ required: this.detailsModel.f3.required, type: 'string', message: '多行输入框 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f3.required, type: 'string', message: '多行输入框 值不能为空', trigger: 'blur' },
],
f4: [
{ required: this.detailsModel.f4.required, type: 'string', message: '多行输入框(10行) 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f4.required, type: 'string', message: '多行输入框(10行) 值不能为空', trigger: 'blur' },
],
f34: [
{ required: this.detailsModel.f34.required, type: 'string', message: 'HTML编辑框 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f34.required, type: 'string', message: 'HTML编辑框 值不能为空', trigger: 'blur' },
],
f5: [
{ required: this.detailsModel.f5.required, type: 'string', message: 'IP地址输入框 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f5.required, type: 'string', message: 'IP地址输入框 值不能为空', trigger: 'blur' },
......@@ -1084,13 +1064,25 @@ export default class Main4Base extends Vue implements ControlInterface {
{ required: this.detailsModel.f6.required, type: 'string', message: '直接内容 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f6.required, type: 'string', message: '直接内容 值不能为空', trigger: 'blur' },
],
f8: [
{ required: this.detailsModel.f8.required, type: 'string', message: '标签(旧) 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f8.required, type: 'string', message: '标签(旧) 值不能为空', trigger: 'blur' },
],
f7: [
{ required: this.detailsModel.f7.required, type: 'string', message: '标签 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f7.required, type: 'string', message: '标签 值不能为空', trigger: 'blur' },
],
f8: [
{ required: this.detailsModel.f8.required, type: 'string', message: '标签(旧) 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f8.required, type: 'string', message: '标签(旧) 值不能为空', trigger: 'blur' },
f3: [
{ required: this.detailsModel.f3.required, type: 'string', message: '多行输入框 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f3.required, type: 'string', message: '多行输入框 值不能为空', trigger: 'blur' },
],
f4: [
{ required: this.detailsModel.f4.required, type: 'string', message: '多行输入框(10行) 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f4.required, type: 'string', message: '多行输入框(10行) 值不能为空', trigger: 'blur' },
],
f34: [
{ required: this.detailsModel.f34.required, type: 'string', message: 'HTML编辑框 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f34.required, type: 'string', message: 'HTML编辑框 值不能为空', trigger: 'blur' },
],
f9: [
{ required: this.detailsModel.f9.required, type: 'string', message: '下拉列表框 值不能为空', trigger: 'change' },
......@@ -1152,6 +1144,18 @@ export default class Main4Base extends Vue implements ControlInterface {
{ required: this.detailsModel.f23.required, type: 'string', message: '时间选择器(新) 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f23.required, type: 'string', message: '时间选择器(新) 值不能为空', trigger: 'blur' },
],
f35: [
{ required: this.detailsModel.f35.required, type: 'string', message: '代码编辑器 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f35.required, type: 'string', message: '代码编辑器 值不能为空', trigger: 'blur' },
],
f36: [
{ required: this.detailsModel.f36.required, type: 'string', message: '图片控件 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f36.required, type: 'string', message: '图片控件 值不能为空', trigger: 'blur' },
],
f37: [
{ required: this.detailsModel.f37.required, type: 'string', message: '文件上传控件 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f37.required, type: 'string', message: '文件上传控件 值不能为空', trigger: 'blur' },
],
f24: [
{ required: this.detailsModel.f24.required, type: 'string', message: '数据选择 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f24.required, type: 'string', message: '数据选择 值不能为空', trigger: 'blur' },
......@@ -1180,18 +1184,6 @@ export default class Main4Base extends Vue implements ControlInterface {
{ required: this.detailsModel.f30.required, type: 'string', message: '自动填充 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f30.required, type: 'string', message: '自动填充 值不能为空', trigger: 'blur' },
],
f35: [
{ required: this.detailsModel.f35.required, type: 'string', message: '代码编辑器 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f35.required, type: 'string', message: '代码编辑器 值不能为空', trigger: 'blur' },
],
f36: [
{ required: this.detailsModel.f36.required, type: 'string', message: '图片控件 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f36.required, type: 'string', message: '图片控件 值不能为空', trigger: 'blur' },
],
f37: [
{ required: this.detailsModel.f37.required, type: 'string', message: '文件上传控件 值不能为空', trigger: 'change' },
{ required: this.detailsModel.f37.required, type: 'string', message: '文件上传控件 值不能为空', trigger: 'blur' },
],
}
}
......@@ -1297,17 +1289,17 @@ export default class Main4Base extends Vue implements ControlInterface {
* @memberof Main4Base
*/
public detailsModel: any = {
grouppanel7: new FormGroupPanelModel({ caption: '分组面板', detailType: 'GROUPPANEL', name: 'grouppanel7', visible: true, isShowCaption: true, form: this, isControlledContent: false , uiActionGroup: { caption: '', langbase: 'entities.ibizsample0001.main4_form', extractMode: 'ITEM', details: [] }, isManageContainer: false, showMoreModeItems: [] })
grouppanel7: new FormGroupPanelModel({ caption: '基础类', detailType: 'GROUPPANEL', name: 'grouppanel7', visible: true, isShowCaption: true, form: this, isControlledContent: false , uiActionGroup: { caption: '', langbase: 'entities.ibizsample0001.main4_form', extractMode: 'ITEM', details: [] }, isManageContainer: false, showMoreModeItems: [] })
,
grouppanel3: new FormGroupPanelModel({ caption: '选择控件', detailType: 'GROUPPANEL', name: 'grouppanel3', visible: true, isShowCaption: true, form: this, isControlledContent: false , uiActionGroup: { caption: '', langbase: 'entities.ibizsample0001.main4_form', extractMode: 'ITEM', details: [] }, isManageContainer: false, showMoreModeItems: [] })
grouppanel3: new FormGroupPanelModel({ caption: '选择', detailType: 'GROUPPANEL', name: 'grouppanel3', visible: true, isShowCaption: true, form: this, isControlledContent: false , uiActionGroup: { caption: '', langbase: 'entities.ibizsample0001.main4_form', extractMode: 'ITEM', details: [] }, isManageContainer: false, showMoreModeItems: [] })
,
grouppanel2: new FormGroupPanelModel({ caption: '时间控件', detailType: 'GROUPPANEL', name: 'grouppanel2', visible: true, isShowCaption: true, form: this, isControlledContent: false , uiActionGroup: { caption: '', langbase: 'entities.ibizsample0001.main4_form', extractMode: 'ITEM', details: [] }, isManageContainer: false, showMoreModeItems: [] })
grouppanel2: new FormGroupPanelModel({ caption: '时间', detailType: 'GROUPPANEL', name: 'grouppanel2', visible: true, isShowCaption: true, form: this, isControlledContent: false , uiActionGroup: { caption: '', langbase: 'entities.ibizsample0001.main4_form', extractMode: 'ITEM', details: [] }, isManageContainer: false, showMoreModeItems: [] })
,
grouppanel1: new FormGroupPanelModel({ caption: '数据选择', detailType: 'GROUPPANEL', name: 'grouppanel1', visible: true, isShowCaption: true, form: this, isControlledContent: false , uiActionGroup: { caption: '', langbase: 'entities.ibizsample0001.main4_form', extractMode: 'ITEM', details: [] }, isManageContainer: false, showMoreModeItems: [] })
grouppanel5: new FormGroupPanelModel({ caption: '文件上传类', detailType: 'GROUPPANEL', name: 'grouppanel5', visible: true, isShowCaption: true, form: this, isControlledContent: false , uiActionGroup: { caption: '', langbase: 'entities.ibizsample0001.main4_form', extractMode: 'ITEM', details: [] }, isManageContainer: false, showMoreModeItems: [] })
,
grouppanel4: new FormGroupPanelModel({ caption: '自动填充', detailType: 'GROUPPANEL', name: 'grouppanel4', visible: true, isShowCaption: true, form: this, isControlledContent: false , uiActionGroup: { caption: '', langbase: 'entities.ibizsample0001.main4_form', extractMode: 'ITEM', details: [] }, isManageContainer: false, showMoreModeItems: [] })
grouppanel1: new FormGroupPanelModel({ caption: '数据选择类', detailType: 'GROUPPANEL', name: 'grouppanel1', visible: true, isShowCaption: true, form: this, isControlledContent: false , uiActionGroup: { caption: '', langbase: 'entities.ibizsample0001.main4_form', extractMode: 'ITEM', details: [] }, isManageContainer: false, showMoreModeItems: [] })
,
grouppanel5: new FormGroupPanelModel({ caption: '其他', detailType: 'GROUPPANEL', name: 'grouppanel5', visible: true, isShowCaption: true, form: this, isControlledContent: false , uiActionGroup: { caption: '', langbase: 'entities.ibizsample0001.main4_form', extractMode: 'ITEM', details: [] }, isManageContainer: false, showMoreModeItems: [] })
grouppanel4: new FormGroupPanelModel({ caption: '自动填充类', detailType: 'GROUPPANEL', name: 'grouppanel4', visible: true, isShowCaption: true, form: this, isControlledContent: false , uiActionGroup: { caption: '', langbase: 'entities.ibizsample0001.main4_form', extractMode: 'ITEM', details: [] }, isManageContainer: false, showMoreModeItems: [] })
,
group1: new FormGroupPanelModel({ caption: '编辑器', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, isControlledContent: false , uiActionGroup: { caption: '', langbase: 'entities.ibizsample0001.main4_form', extractMode: 'ITEM', details: [] }, isManageContainer: false, showMoreModeItems: [] })
,
......@@ -1342,20 +1334,20 @@ export default class Main4Base extends Vue implements ControlInterface {
formitem3: new FormItemModel({ caption: '滑动输入条', detailType: 'FORMITEM', name: 'formitem3', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
formitem4: new FormItemModel({ caption: '评分器', detailType: 'FORMITEM', name: 'formitem4', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f3: new FormItemModel({ caption: '多行输入框', detailType: 'FORMITEM', name: 'f3', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f4: new FormItemModel({ caption: '多行输入框(10行)', detailType: 'FORMITEM', name: 'f4', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f34: new FormItemModel({ caption: 'HTML编辑框', detailType: 'FORMITEM', name: 'f34', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f5: new FormItemModel({ caption: 'IP地址输入框', detailType: 'FORMITEM', name: 'f5', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f6: new FormItemModel({ caption: '直接内容', detailType: 'FORMITEM', name: 'f6', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f8: new FormItemModel({ caption: '标签(旧)', detailType: 'FORMITEM', name: 'f8', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f7: new FormItemModel({ caption: '标签', detailType: 'FORMITEM', name: 'f7', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f8: new FormItemModel({ caption: '标签(旧)', detailType: 'FORMITEM', name: 'f8', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
f3: new FormItemModel({ caption: '多行输入框', detailType: 'FORMITEM', name: 'f3', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f4: new FormItemModel({ caption: '多行输入框(10行)', detailType: 'FORMITEM', name: 'f4', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f34: new FormItemModel({ caption: 'HTML编辑框', detailType: 'FORMITEM', name: 'f34', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f9: new FormItemModel({ caption: '下拉列表框', detailType: 'FORMITEM', name: 'f9', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
......@@ -1386,6 +1378,12 @@ export default class Main4Base extends Vue implements ControlInterface {
f22: new FormItemModel({ caption: '时间选择控件_无日期无秒钟', detailType: 'FORMITEM', name: 'f22', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f23: new FormItemModel({ caption: '时间选择器(新)', detailType: 'FORMITEM', name: 'f23', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f35: new FormItemModel({ caption: '代码编辑器', detailType: 'FORMITEM', name: 'f35', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f36: new FormItemModel({ caption: '图片控件', detailType: 'FORMITEM', name: 'f36', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f37: new FormItemModel({ caption: '文件上传控件', detailType: 'FORMITEM', name: 'f37', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f24: new FormItemModel({ caption: '数据选择', detailType: 'FORMITEM', name: 'f24', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
......@@ -1408,12 +1406,6 @@ export default class Main4Base extends Vue implements ControlInterface {
f32: new FormItemModel({ caption: '自动填充(无按钮)', detailType: 'FORMITEM', name: 'f32', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f33: new FormItemModel({ caption: '自动填充(只能选择、无按钮)', detailType: 'FORMITEM', name: 'f33', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f35: new FormItemModel({ caption: '代码编辑器', detailType: 'FORMITEM', name: 'f35', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f36: new FormItemModel({ caption: '图片控件', detailType: 'FORMITEM', name: 'f36', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
f37: new FormItemModel({ caption: '文件上传控件', detailType: 'FORMITEM', name: 'f37', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
ibizsample0001id: new FormItemModel({ caption: 'IBIZSAMPLE0001标识', detailType: 'FORMITEM', name: 'ibizsample0001id', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
......@@ -1600,87 +1592,87 @@ export default class Main4Base extends Vue implements ControlInterface {
}
/**
* 监控表单属性 f3
* 监控表单属性 f5
*
* @param {*} newVal
* @param {*} oldVal
* @memberof Main4Base
*/
@Watch('data.f3')
onF3Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f3', newVal: newVal, oldVal: oldVal });
@Watch('data.f5')
onF5Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f5', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 f4
* 监控表单属性 f6
*
* @param {*} newVal
* @param {*} oldVal
* @memberof Main4Base
*/
@Watch('data.f4')
onF4Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f4', newVal: newVal, oldVal: oldVal });
@Watch('data.f6')
onF6Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f6', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 f34
* 监控表单属性 f8
*
* @param {*} newVal
* @param {*} oldVal
* @memberof Main4Base
*/
@Watch('data.f34')
onF34Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f34', newVal: newVal, oldVal: oldVal });
@Watch('data.f8')
onF8Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f8', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 f5
* 监控表单属性 f7
*
* @param {*} newVal
* @param {*} oldVal
* @memberof Main4Base
*/
@Watch('data.f5')
onF5Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f5', newVal: newVal, oldVal: oldVal });
@Watch('data.f7')
onF7Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f7', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 f6
* 监控表单属性 f3
*
* @param {*} newVal
* @param {*} oldVal
* @memberof Main4Base
*/
@Watch('data.f6')
onF6Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f6', newVal: newVal, oldVal: oldVal });
@Watch('data.f3')
onF3Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f3', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 f7
* 监控表单属性 f4
*
* @param {*} newVal
* @param {*} oldVal
* @memberof Main4Base
*/
@Watch('data.f7')
onF7Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f7', newVal: newVal, oldVal: oldVal });
@Watch('data.f4')
onF4Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f4', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 f8
* 监控表单属性 f34
*
* @param {*} newVal
* @param {*} oldVal
* @memberof Main4Base
*/
@Watch('data.f8')
onF8Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f8', newVal: newVal, oldVal: oldVal });
@Watch('data.f34')
onF34Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f34', newVal: newVal, oldVal: oldVal });
}
/**
......@@ -1863,6 +1855,42 @@ export default class Main4Base extends Vue implements ControlInterface {
this.formDataChange({ name: 'f23', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 f35 值
*
* @param {*} newVal
* @param {*} oldVal
* @memberof Main4Base
*/
@Watch('data.f35')
onF35Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f35', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 f36 值
*
* @param {*} newVal
* @param {*} oldVal
* @memberof Main4Base
*/
@Watch('data.f36')
onF36Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f36', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 f37 值
*
* @param {*} newVal
* @param {*} oldVal
* @memberof Main4Base
*/
@Watch('data.f37')
onF37Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f37', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 f24 值
*
......@@ -1995,42 +2023,6 @@ export default class Main4Base extends Vue implements ControlInterface {
this.formDataChange({ name: 'f33', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 f35 值
*
* @param {*} newVal
* @param {*} oldVal
* @memberof Main4Base
*/
@Watch('data.f35')
onF35Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f35', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 f36 值
*
* @param {*} newVal
* @param {*} oldVal
* @memberof Main4Base
*/
@Watch('data.f36')
onF36Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f36', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 f37 值
*
* @param {*} newVal
* @param {*} oldVal
* @memberof Main4Base
*/
@Watch('data.f37')
onF37Change(newVal: any, oldVal: any) {
this.formDataChange({ name: 'f37', newVal: newVal, oldVal: oldVal });
}
/**
* 监控表单属性 ibizsample0001id 值
*
......
......@@ -85,32 +85,32 @@ export default class Main4Model {
dataType:'FORMITEM',
},
{
name: 'f3',
name: 'f5',
dataType:'FORMITEM',
},
{
name: 'f4',
dataType:'FORMITEM',
name: 'f6',
prop: 'field01',
dataType: 'TEXT',
},
{
name: 'f34',
name: 'f8',
dataType:'FORMITEM',
},
{
name: 'f5',
name: 'f7',
dataType:'FORMITEM',
},
{
name: 'f6',
prop: 'field01',
dataType: 'TEXT',
name: 'f3',
dataType:'FORMITEM',
},
{
name: 'f7',
name: 'f4',
dataType:'FORMITEM',
},
{
name: 'f8',
name: 'f34',
dataType:'FORMITEM',
},
{
......@@ -173,6 +173,18 @@ export default class Main4Model {
name: 'f23',
dataType:'FORMITEM',
},
{
name: 'f35',
dataType:'FORMITEM',
},
{
name: 'f36',
dataType:'FORMITEM',
},
{
name: 'f37',
dataType:'FORMITEM',
},
{
name: 'f24',
dataType:'FORMITEM',
......@@ -218,18 +230,6 @@ export default class Main4Model {
{
name: 'f33',
},
{
name: 'f35',
dataType:'FORMITEM',
},
{
name: 'f36',
dataType:'FORMITEM',
},
{
name: 'f37',
dataType:'FORMITEM',
},
{
name: 'ibizsample0001id',
prop: 'ibizsample0001id',
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册