提交 27ac5e62 编写于 作者: ibizdev's avatar ibizdev

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

上级 d1692b6a
......@@ -354,8 +354,8 @@ function getLocaleResourceBase(){
srfuf: commonLogic.appcommonhandle("",null),
srfdeid: commonLogic.appcommonhandle("",null),
srfsourcekey: commonLogic.appcommonhandle("",null),
field01: commonLogic.appcommonhandle("单选列表1",null),
field01_1: commonLogic.appcommonhandle("单选列表2",null),
field01: commonLogic.appcommonhandle("",null),
field01_1: commonLogic.appcommonhandle("",null),
ibizsample0001id: commonLogic.appcommonhandle("IBIZSAMPLE0001标识",null),
},
uiactions: {
......
......@@ -354,8 +354,8 @@ function getLocaleResourceBase(){
srfuf: commonLogic.appcommonhandle("",null),
srfdeid: commonLogic.appcommonhandle("",null),
srfsourcekey: commonLogic.appcommonhandle("",null),
field01: commonLogic.appcommonhandle("单选列表1",null),
field01_1: commonLogic.appcommonhandle("单选列表2",null),
field01: commonLogic.appcommonhandle("",null),
field01_1: commonLogic.appcommonhandle("",null),
ibizsample0001id: commonLogic.appcommonhandle("IBIZSAMPLE0001标识",null),
},
uiactions: {
......
......@@ -28,7 +28,7 @@ export default class ViewMsg66MessageServiceBase extends ViewMessageService {
this.name = "编辑器插件示例";
this.codename = "ViewMsg66";
this.title = "";
this.content = "该示例展示各编辑器插件的呈现样式";
this.content = "该示例展示编辑器的自定义插件。";
this.closeMode = 0;
this.position = "TOP";
this.type = "error";
......
......@@ -5,7 +5,7 @@
<i-col v-show="detailsModel.group1.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-group :uiService="appUIService" :data="transformData(data)" :manageContainerStatus="detailsModel.group1.manageContainerStatus" :isManageContainer="detailsModel.group1.isManageContainer" @managecontainerclick="manageContainerClick('group1')" layoutType="TABLE_24COL" titleStyle="" class='' :uiActionGroup="detailsModel.group1.uiActionGroup" @groupuiactionclick="groupUIActionClick($event)" :caption="$t('entities.ibizsample0001.main2_form.details.group1')" :isShowCaption="false" uiStyle="DEFAULT" :titleBarCloseMode="0" :isInfoGroupMode="false" >
<row>
<i-col v-show="detailsModel.field01.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.field01.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='field01' :itemRules="this.rules().field01" class='' :caption="$t('entities.ibizsample0001.main2_form.details.field01')" uiStyle="DEFAULT" :labelWidth="250" :isShowCaption="true" :error="detailsModel.field01.error" :isEmptyCaption="false" labelPos="TOP">
<app-radio-group
......@@ -25,7 +25,7 @@
</app-form-item>
</i-col>
<i-col v-show="detailsModel.field01_1.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<i-col v-show="detailsModel.field01_1.visible" :style="{}" :sm="{ span: 12, offset: 0 }" :md="{ span: 12, offset: 0 }" :lg="{ span: 12, offset: 0 }" :xl="{ span: 12, offset: 0 }">
<app-radio-button
v-model="data.field01_1"
:data="data"
......@@ -494,12 +494,12 @@ export default class Main2Base extends Vue implements ControlInterface {
public rules() :any {
return {
field01: [
{ required: this.detailsModel.field01.required, type: 'string', message: '单选列表1 值不能为空', trigger: 'change' },
{ required: this.detailsModel.field01.required, type: 'string', message: '单选列表1 值不能为空', trigger: 'blur' },
{ required: this.detailsModel.field01.required, type: 'string', message: ' 值不能为空', trigger: 'change' },
{ required: this.detailsModel.field01.required, type: 'string', message: ' 值不能为空', trigger: 'blur' },
],
field01_1: [
{ required: this.detailsModel.field01_1.required, type: 'string', message: '单选列表2 值不能为空', trigger: 'change' },
{ required: this.detailsModel.field01_1.required, type: 'string', message: '单选列表2 值不能为空', trigger: 'blur' },
{ required: this.detailsModel.field01_1.required, type: 'string', message: ' 值不能为空', trigger: 'change' },
{ required: this.detailsModel.field01_1.required, type: 'string', message: ' 值不能为空', trigger: 'blur' },
],
}
}
......@@ -628,9 +628,9 @@ export default class Main2Base extends Vue implements ControlInterface {
,
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
field01: new FormItemModel({ caption: '单选列表1', detailType: 'FORMITEM', name: 'field01', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
field01: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'field01', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
field01_1: new FormItemModel({ caption: '单选列表2', detailType: 'FORMITEM', name: 'field01_1', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
field01_1: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'field01_1', 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 })
,
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册