提交 215faa4e 编写于 作者: ibizdev's avatar ibizdev

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

上级 99113eeb
...@@ -486,6 +486,74 @@ export default { ...@@ -486,6 +486,74 @@ export default {
usr5gridviewtoolbar_toolbar: { usr5gridviewtoolbar_toolbar: {
}, },
valuerulesgridviewtoolbar_toolbar: { valuerulesgridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
deuiaction2: {
caption: "Save",
tip: "Save",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem6: {
caption: "Copy",
tip: "Copy {0}",
},
deuiaction3: {
caption: "Filter",
tip: "Filter",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem24: {
caption: "行编辑",
tip: "行编辑",
},
tbitem25: {
caption: "新建行",
tip: "新建行",
},
tbitem26: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "Export",
tip: "Export {0} Data To Excel",
},
deuiaction1: {
caption: "导入",
tip: "导入",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem16: {
caption: "其它",
tip: "其它",
},
tbitem21: {
caption: "Export Data Model",
tip: "导出数据模型",
},
tbitem23: {
caption: "数据导入",
tip: "数据导入",
},
}, },
usr3gridviewtoolbar_toolbar: { usr3gridviewtoolbar_toolbar: {
}, },
......
...@@ -485,6 +485,74 @@ export default { ...@@ -485,6 +485,74 @@ export default {
usr5gridviewtoolbar_toolbar: { usr5gridviewtoolbar_toolbar: {
}, },
valuerulesgridviewtoolbar_toolbar: { valuerulesgridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
deuiaction2: {
caption: "保存",
tip: "保存",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
tbitem6: {
caption: "拷贝",
tip: "拷贝",
},
deuiaction3: {
caption: "过滤",
tip: "过滤",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem24: {
caption: "行编辑",
tip: "行编辑",
},
tbitem25: {
caption: "新建行",
tip: "新建行",
},
tbitem26: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "批量删除",
tip: "批量删除",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "导出",
tip: "导出",
},
deuiaction1: {
caption: "导入",
tip: "导入",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem16: {
caption: "其它",
tip: "其它",
},
tbitem21: {
caption: "导出数据模型",
tip: "导出数据模型",
},
tbitem23: {
caption: "数据导入",
tip: "数据导入",
},
}, },
usr3gridviewtoolbar_toolbar: { usr3gridviewtoolbar_toolbar: {
}, },
......
...@@ -16,4 +16,5 @@ ...@@ -16,4 +16,5 @@
// this is less // this is less
.deepskyblueToolBar {color:white !important;background-color:#108cee !important;}
...@@ -29,7 +29,21 @@ ...@@ -29,7 +29,21 @@
</span> </span>
</template> </template>
<template v-slot="{row,column,$index}"> <template v-slot="{row,column,$index}">
<template > <template v-if="actualIsOpenEdit && !row.children">
<app-form-item :error="gridItemsModel[$index][column.property].error">
<input-box
:disabled="getColumnDisabled(row,column.property)"
v-model="row[column.property]"
style=""
type="text"
@change="($event)=>{gridEditItemChange(row, column.property, $event, $index)}">
</input-box>
</app-form-item>
</template>
<template v-if="!actualIsOpenEdit">
<app-span name='ibizbookname' editorType="TEXTBOX" :value="row.ibizbookname" dataType="TEXT" precision="0" ></app-span> <app-span name='ibizbookname' editorType="TEXTBOX" :value="row.ibizbookname" dataType="TEXT" precision="0" ></app-span>
</template> </template>
</template> </template>
...@@ -43,7 +57,21 @@ ...@@ -43,7 +57,21 @@
</span> </span>
</template> </template>
<template v-slot="{row,column,$index}"> <template v-slot="{row,column,$index}">
<template > <template v-if="actualIsOpenEdit && !row.children">
<app-form-item :error="gridItemsModel[$index][column.property].error">
<input-box
:disabled="getColumnDisabled(row,column.property)"
v-model="row[column.property]"
style=""
type="text"
@change="($event)=>{gridEditItemChange(row, column.property, $event, $index)}">
</input-box>
</app-form-item>
</template>
<template v-if="!actualIsOpenEdit">
<app-span name='author' editorType="TEXTBOX" :value="row.author" dataType="TEXT" precision="0" ></app-span> <app-span name='author' editorType="TEXTBOX" :value="row.author" dataType="TEXT" precision="0" ></app-span>
</template> </template>
</template> </template>
...@@ -57,7 +85,21 @@ ...@@ -57,7 +85,21 @@
</span> </span>
</template> </template>
<template v-slot="{row,column,$index}"> <template v-slot="{row,column,$index}">
<template > <template v-if="actualIsOpenEdit && !row.children">
<app-form-item :error="gridItemsModel[$index][column.property].error">
<input-box
:disabled="getColumnDisabled(row,column.property)"
v-model="row[column.property]"
style=""
type="text"
@change="($event)=>{gridEditItemChange(row, column.property, $event, $index)}">
</input-box>
</app-form-item>
</template>
<template v-if="!actualIsOpenEdit">
<app-span name='type' editorType="TEXTBOX" :value="row.type" dataType="TEXT" precision="0" ></app-span> <app-span name='type' editorType="TEXTBOX" :value="row.type" dataType="TEXT" precision="0" ></app-span>
</template> </template>
</template> </template>
...@@ -71,7 +113,21 @@ ...@@ -71,7 +113,21 @@
</span> </span>
</template> </template>
<template v-slot="{row,column,$index}"> <template v-slot="{row,column,$index}">
<template > <template v-if="actualIsOpenEdit && !row.children">
<app-form-item :error="gridItemsModel[$index][column.property].error">
<input-box
:disabled="getColumnDisabled(row,column.property)"
v-model="row[column.property]"
style=""
type="text"
@change="($event)=>{gridEditItemChange(row, column.property, $event, $index)}">
</input-box>
</app-form-item>
</template>
<template v-if="!actualIsOpenEdit">
<app-span name='press' editorType="TEXTBOX" :value="row.press" dataType="TEXT" precision="0" ></app-span> <app-span name='press' editorType="TEXTBOX" :value="row.press" dataType="TEXT" precision="0" ></app-span>
</template> </template>
</template> </template>
...@@ -85,7 +141,20 @@ ...@@ -85,7 +141,20 @@
</span> </span>
</template> </template>
<template v-slot="{row,column,$index}"> <template v-slot="{row,column,$index}">
<template > <template v-if="actualIsOpenEdit && !row.children">
<app-form-item :error="gridItemsModel[$index][column.property].error">
<input-box
:disabled="getColumnDisabled(row,column.property)"
v-model="row[column.property]"
type="number"
:precision="0"
style=""
@change="($event)=>{gridEditItemChange(row, column.property, $event, $index)}">
</input-box>
</app-form-item>
</template>
<template v-if="!actualIsOpenEdit">
<app-span name='price' editorType="NUMBER" :value="row.price" dataType="CURRENCY" precision="0" ></app-span> <app-span name='price' editorType="NUMBER" :value="row.price" dataType="CURRENCY" precision="0" ></app-span>
</template> </template>
</template> </template>
...@@ -654,7 +723,7 @@ export default class RowRulesBase extends Vue implements ControlInterface { ...@@ -654,7 +723,7 @@ export default class RowRulesBase extends Vue implements ControlInterface {
langtag: 'entities.ibizbook.rowrules_grid.columns.ibizbookname', langtag: 'entities.ibizbook.rowrules_grid.columns.ibizbookname',
show: true, show: true,
unit: 'PX', unit: 'PX',
isEnableRowEdit: false, isEnableRowEdit: true,
enableCond: 3 , enableCond: 3 ,
}, },
{ {
...@@ -663,7 +732,7 @@ export default class RowRulesBase extends Vue implements ControlInterface { ...@@ -663,7 +732,7 @@ export default class RowRulesBase extends Vue implements ControlInterface {
langtag: 'entities.ibizbook.rowrules_grid.columns.author', langtag: 'entities.ibizbook.rowrules_grid.columns.author',
show: true, show: true,
unit: 'PX', unit: 'PX',
isEnableRowEdit: false, isEnableRowEdit: true,
enableCond: 3 , enableCond: 3 ,
}, },
{ {
...@@ -672,7 +741,7 @@ export default class RowRulesBase extends Vue implements ControlInterface { ...@@ -672,7 +741,7 @@ export default class RowRulesBase extends Vue implements ControlInterface {
langtag: 'entities.ibizbook.rowrules_grid.columns.type', langtag: 'entities.ibizbook.rowrules_grid.columns.type',
show: true, show: true,
unit: 'PX', unit: 'PX',
isEnableRowEdit: false, isEnableRowEdit: true,
enableCond: 3 , enableCond: 3 ,
}, },
{ {
...@@ -681,7 +750,7 @@ export default class RowRulesBase extends Vue implements ControlInterface { ...@@ -681,7 +750,7 @@ export default class RowRulesBase extends Vue implements ControlInterface {
langtag: 'entities.ibizbook.rowrules_grid.columns.press', langtag: 'entities.ibizbook.rowrules_grid.columns.press',
show: true, show: true,
unit: 'PX', unit: 'PX',
isEnableRowEdit: false, isEnableRowEdit: true,
enableCond: 3 , enableCond: 3 ,
}, },
{ {
...@@ -690,7 +759,7 @@ export default class RowRulesBase extends Vue implements ControlInterface { ...@@ -690,7 +759,7 @@ export default class RowRulesBase extends Vue implements ControlInterface {
langtag: 'entities.ibizbook.rowrules_grid.columns.price', langtag: 'entities.ibizbook.rowrules_grid.columns.price',
show: true, show: true,
unit: 'PX', unit: 'PX',
isEnableRowEdit: false, isEnableRowEdit: true,
enableCond: 3 , enableCond: 3 ,
}, },
] ]
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册