提交 0f3a4443 编写于 作者: ibizdev's avatar ibizdev

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

上级 ebf9ae51
......@@ -27,6 +27,10 @@ function getLocaleResource(){
'app.commonWords.other': 'other',
'app.commonWords.isExist': 'is exist',
'app.commonWords.valueNotEmpty': 'The value cannot be null',
'app.commonWords.valueMustBe': "The value must be",
'app.commonWords.number': "number",
'app.commonWords.string': "string",
'app.commonWords.kind': "type",
'app.local.new': 'New',
'app.local.add': 'Add',
'app.grid.exportexcel.error': 'Export Failed',
......
......@@ -27,6 +27,10 @@ function getLocaleResource(){
'app.commonWords.other': "其他",
'app.commonWords.isExist': '已经存在',
'app.commonWords.valueNotEmpty': "值不能为空",
'app.commonWords.valueMustBe': "值必须为",
'app.commonWords.number': "数值",
'app.commonWords.string': "字符串",
'app.commonWords.kind': "类型",
'app.local.new': "新建",
'app.local.add': "增加",
'app.grid.exportexcel.error': '导出失败',
......
......@@ -639,7 +639,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public load(opt: any = {}): void {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORListView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORGridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -675,7 +675,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORListView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORGridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return;
}
const arg: any = { ...opt } ;
......
......@@ -366,14 +366,14 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public rules: any = {
n_ibizbookname_like: [
{ type: 'string', message: '图书名称(%) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '图书名称(%) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZBOOK.N_IBIZBOOKNAME_LIKE', '图书名称(%)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZBOOK.N_IBIZBOOKNAME_LIKE', '图书名称(%)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ibizbookname_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZBOOK.N_IBIZBOOKNAME_LIKE', '图书名称(%)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ibizbookname_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZBOOK.N_IBIZBOOKNAME_LIKE', '图书名称(%)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
n_price_gtandeq: [
{ type: 'number', message: '图书价格(>=) 值必须为数值类型', trigger: 'change' },
{ type: 'number', message: '图书价格(>=) 值必须为数值类型', trigger: 'blur' },
{ type: 'number', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZBOOK.N_PRICE_GTANDEQ', '图书价格(>=)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.number')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'number', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZBOOK.N_PRICE_GTANDEQ', '图书价格(>=)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.number')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_price_gtandeq.required, type: 'number', message: `${this.$t('CONTROL.DEFSFITEM.IBIZBOOK.N_PRICE_GTANDEQ', '图书价格(>=)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_price_gtandeq.required, type: 'number', message: `${this.$t('CONTROL.DEFSFITEM.IBIZBOOK.N_PRICE_GTANDEQ', '图书价格(>=)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
......@@ -870,4 +870,5 @@ export default class DefaultBase extends Vue implements ControlInterface {
<style lang='less'>
@import './default-searchform.less';
</style>;
</style>
\ No newline at end of file
......@@ -1344,7 +1344,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
*/
public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1395,7 +1395,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
*/
public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1465,7 +1465,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1573,7 +1573,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -1781,7 +1781,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -1447,7 +1447,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
*/
public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1499,7 +1499,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1569,7 +1569,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1677,7 +1677,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -1885,7 +1885,7 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -369,7 +369,7 @@ export default class GuideBase extends Vue implements ControlInterface {
* @type {Boolean}
* @memberof GuideBase
*/
public isShowStepBar: Boolean = true ;
public isShowStepBar: Boolean = false ;
/**
* 获取多项数据
......
......@@ -1683,7 +1683,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9EditView' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -1735,7 +1735,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9EditView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return;
}
const arg: any = { ...opt } ;
......@@ -1806,7 +1806,7 @@ export default class MainBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9EditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg,{viewparams:this.viewparams});
......@@ -1914,7 +1914,7 @@ export default class MainBase extends Vue implements ControlInterface {
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9EditView' + (this.$t('app.formpage.notconfig.actionname') as string) });
return;
}
Object.assign(arg, { viewparams: this.viewparams });
......@@ -2128,7 +2128,7 @@ export default class MainBase extends Vue implements ControlInterface {
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr6EditView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr9EditView' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return;
}
const arg: any = opt[0];
......
......@@ -342,8 +342,8 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public rules: any = {
n_ibizbookname_like: [
{ type: 'string', message: '图书名称(%) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '图书名称(%) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZBOOK.N_IBIZBOOKNAME_LIKE', '图书名称(%)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZBOOK.N_IBIZBOOKNAME_LIKE', '图书名称(%)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ibizbookname_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZBOOK.N_IBIZBOOKNAME_LIKE', '图书名称(%)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ibizbookname_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZBOOK.N_IBIZBOOKNAME_LIKE', '图书名称(%)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
......
......@@ -348,8 +348,8 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public rules: any = {
n_ibizcustomname_like: [
{ type: 'string', message: '自定义名称(%) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '自定义名称(%) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZCUSTOM.N_IBIZCUSTOMNAME_LIKE', '自定义名称(%)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZCUSTOM.N_IBIZCUSTOMNAME_LIKE', '自定义名称(%)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ibizcustomname_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZCUSTOM.N_IBIZCUSTOMNAME_LIKE', '自定义名称(%)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ibizcustomname_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZCUSTOM.N_IBIZCUSTOMNAME_LIKE', '自定义名称(%)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
......
......@@ -348,8 +348,8 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public rules: any = {
formitem: [
{ type: 'string', message: '客户名称(%) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '客户名称(%) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`客户名称(%)` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`客户名称(%)` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.formitem.required, type: 'string', message: `${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.formitem.required, type: 'string', message: `${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
......
......@@ -348,8 +348,8 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public rules: any = {
n_ibizcustomername_like: [
{ type: 'string', message: '客户名称(%) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '客户名称(%) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZCUSTOMER.N_IBIZCUSTOMERNAME_LIKE', '客户名称(%)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZCUSTOMER.N_IBIZCUSTOMERNAME_LIKE', '客户名称(%)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ibizcustomername_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZCUSTOMER.N_IBIZCUSTOMERNAME_LIKE', '客户名称(%)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ibizcustomername_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZCUSTOMER.N_IBIZCUSTOMERNAME_LIKE', '客户名称(%)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
......
......@@ -964,7 +964,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) {
this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZOrderDetailGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
desc: "IBIZOrderDetailSGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
});
return;
}
......@@ -1123,7 +1123,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) {
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string)
desc: 'IBIZOrderDetailSGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string)
});
return;
}
......@@ -1237,7 +1237,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public addBatch(arg: any = {}): void {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return;
}
if(!arg){
......@@ -2132,7 +2132,7 @@ export default class MainBase extends Vue implements ControlInterface {
try {
if (Object.is(item.rowDataState, 'create')) {
if (!this.createAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.createAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2141,7 +2141,7 @@ export default class MainBase extends Vue implements ControlInterface {
}
}else if (Object.is(item.rowDataState, 'update')){
if (!this.updateAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2217,7 +2217,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
desc: 'IBIZOrderDetailSGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
});
return;
}
......
......@@ -768,7 +768,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
*/
public async load(opt: any = {}, isReset: boolean = false): Promise<any> {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.fetchAction') as string) });
return;
}
const arg: any = {...opt};
......@@ -862,7 +862,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
*/
public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
return;
}
let _datas:any[] = [];
......@@ -978,7 +978,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
try {
if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.createAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
......@@ -986,7 +986,7 @@ export default class CardNavigationBase extends Vue implements ControlInterface
}
}else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView' + (this.$t('app.list.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDataViewExpView_layout' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
if(item.ibizorder){
......
......@@ -399,26 +399,26 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public rules: any = {
n_ibizcustomername_like: [
{ type: 'string', message: '客户名称(文本包含(%)) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '客户名称(文本包含(%)) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZCUSTOMERNAME_LIKE', '客户名称(文本包含(%))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZCUSTOMERNAME_LIKE', '客户名称(文本包含(%))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ibizcustomername_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZCUSTOMERNAME_LIKE', '客户名称(文本包含(%))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ibizcustomername_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZCUSTOMERNAME_LIKE', '客户名称(文本包含(%))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
n_ibizordername_like: [
{ type: 'string', message: '订单名称(%) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '订单名称(%) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZORDERNAME_LIKE', '订单名称(%)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZORDERNAME_LIKE', '订单名称(%)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ibizordername_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZORDERNAME_LIKE', '订单名称(%)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ibizordername_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZORDERNAME_LIKE', '订单名称(%)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
n_ordertime_gtandeq: [
{ type: 'string', message: '订单时间(大于等于(>=)) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '订单时间(大于等于(>=)) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERTIME_GTANDEQ', '订单时间(大于等于(>=))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERTIME_GTANDEQ', '订单时间(大于等于(>=))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ordertime_gtandeq.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERTIME_GTANDEQ', '订单时间(大于等于(>=))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ordertime_gtandeq.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERTIME_GTANDEQ', '订单时间(大于等于(>=))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
n_ordertype_eq: [
{ type: 'string', message: '订单类型(等于(=)) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '订单类型(等于(=)) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERTYPE_EQ', '订单类型(等于(=))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERTYPE_EQ', '订单类型(等于(=))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ordertype_eq.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERTYPE_EQ', '订单类型(等于(=))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ordertype_eq.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERTYPE_EQ', '订单类型(等于(=))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
......
......@@ -395,26 +395,26 @@ export default class UIPART_0013Base extends Vue implements ControlInterface {
*/
public rules: any = {
n_ibizordername_like: [
{ type: 'string', message: '订单名称 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '订单名称 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_IBIZORDERNAME_LIKE', '订单名称')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_IBIZORDERNAME_LIKE', '订单名称')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ibizordername_like.required, type: 'string', message: `${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_IBIZORDERNAME_LIKE', '订单名称')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ibizordername_like.required, type: 'string', message: `${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_IBIZORDERNAME_LIKE', '订单名称')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
n_orderstate_eq: [
{ type: 'string', message: '订单状态 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '订单状态 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_ORDERSTATE_EQ', '订单状态')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_ORDERSTATE_EQ', '订单状态')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_orderstate_eq.required, type: 'string', message: `${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_ORDERSTATE_EQ', '订单状态')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_orderstate_eq.required, type: 'string', message: `${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_ORDERSTATE_EQ', '订单状态')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
n_ordertime_gt: [
{ type: 'string', message: '订单时间从 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '订单时间从 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_ORDERTIME_GT', '订单时间从')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_ORDERTIME_GT', '订单时间从')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ordertime_gt.required, type: 'string', message: `${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_ORDERTIME_GT', '订单时间从')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ordertime_gt.required, type: 'string', message: `${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_ORDERTIME_GT', '订单时间从')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
n_ordertime_lt: [
{ type: 'string', message: '到 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '到 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_ORDERTIME_LT', '')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_ORDERTIME_LT', '')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ordertime_lt.required, type: 'string', message: `${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_ORDERTIME_LT', '到')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ordertime_lt.required, type: 'string', message: `${this.$t('CONTROL.DEFORM.IBIZORDER.UIPART_0013.FORMITEM.N_ORDERTIME_LT', '到')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
......
......@@ -399,26 +399,26 @@ export default class Usr1121660606Base extends Vue implements ControlInterface {
*/
public rules: any = {
n_ibizcustomername_like: [
{ type: 'string', message: '客户名称(文本包含(%)) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '客户名称(文本包含(%)) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZCUSTOMERNAME_LIKE', '客户名称(文本包含(%))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZCUSTOMERNAME_LIKE', '客户名称(文本包含(%))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ibizcustomername_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZCUSTOMERNAME_LIKE', '客户名称(文本包含(%))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ibizcustomername_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZCUSTOMERNAME_LIKE', '客户名称(文本包含(%))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
n_ibizordername_like: [
{ type: 'string', message: '订单名称(文本包含(%)) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '订单名称(文本包含(%)) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZORDERNAME_LIKE', '订单名称(文本包含(%))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZORDERNAME_LIKE', '订单名称(文本包含(%))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ibizordername_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZORDERNAME_LIKE', '订单名称(文本包含(%))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ibizordername_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_IBIZORDERNAME_LIKE', '订单名称(文本包含(%))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
n_orderstate_eq: [
{ type: 'string', message: '订单状态(等于(=)) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '订单状态(等于(=)) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERSTATE_EQ', '订单状态(等于(=))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERSTATE_EQ', '订单状态(等于(=))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_orderstate_eq.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERSTATE_EQ', '订单状态(等于(=))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_orderstate_eq.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERSTATE_EQ', '订单状态(等于(=))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
n_ordertime_gtandeq: [
{ type: 'string', message: '订单时间(大于等于(>=)) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '订单时间(大于等于(>=)) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERTIME_GTANDEQ', '订单时间(大于等于(>=))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERTIME_GTANDEQ', '订单时间(大于等于(>=))')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ordertime_gtandeq.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERTIME_GTANDEQ', '订单时间(大于等于(>=))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ordertime_gtandeq.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZORDER.N_ORDERTIME_GTANDEQ', '订单时间(大于等于(>=))')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
......
......@@ -348,8 +348,8 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public rules: any = {
n_ibizsample0003name_like: [
{ type: 'string', message: '名称(%) 值必须为字符串类型', trigger: 'change' },
{ type: 'string', message: '名称(%) 值必须为字符串类型', trigger: 'blur' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZSAMPLE0003.N_IBIZSAMPLE0003NAME_LIKE', '名称(%)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'change' },
{ type: 'string', message: '`${this.$t('CONTROL.DEFSFITEM.IBIZSAMPLE0003.N_IBIZSAMPLE0003NAME_LIKE', '名称(%)')}` this.$t('app.commonWords.valueMustBe')this.$t('app.commonWords.string')this.$t('app.commonWords.kind')', trigger: 'blur' },
{ required: this.detailsModel.n_ibizsample0003name_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZSAMPLE0003.N_IBIZSAMPLE0003NAME_LIKE', '名称(%)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'change' },
{ required: this.detailsModel.n_ibizsample0003name_like.required, type: 'string', message: `${this.$t('CONTROL.DEFSFITEM.IBIZSAMPLE0003.N_IBIZSAMPLE0003NAME_LIKE', '名称(%)')}${this.$t('app.commonWords.valueNotEmpty')}`, trigger: 'blur' },
],
......
......@@ -35,18 +35,6 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime",
"mOSFilePath" : "psdetreecols/lendouttime",
"name" : "lendouttime",
"rTMOSFilePath" : "psdetreecols/lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
......@@ -59,6 +47,18 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime",
"mOSFilePath" : "psdetreecols/lendouttime",
"name" : "lendouttime",
"rTMOSFilePath" : "psdetreecols/lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
......
......@@ -20,13 +20,13 @@
}
} ],
"getPSDETreeColumns" : [ {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"caption" : "图书描述",
"codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"mOSFilePath" : "psdetreecols/ibizbookname",
"name" : "ibizbookname",
"rTMOSFilePath" : "psdetreecols/ibizbookname",
"dataItemName" : "subtext",
"mOSFilePath" : "psdetreecols/subtext",
"name" : "subtext",
"rTMOSFilePath" : "psdetreecols/subtext",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
......@@ -44,13 +44,13 @@
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书描述",
"codeName" : "subtext",
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext",
"mOSFilePath" : "psdetreecols/subtext",
"name" : "subtext",
"rTMOSFilePath" : "psdetreecols/subtext",
"dataItemName" : "ibizbookname",
"mOSFilePath" : "psdetreecols/ibizbookname",
"name" : "ibizbookname",
"rTMOSFilePath" : "psdetreecols/ibizbookname",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
......
......@@ -69,18 +69,6 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime",
"mOSFilePath" : "psdetreecols/lendouttime",
"name" : "lendouttime",
"rTMOSFilePath" : "psdetreecols/lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "作者",
"codeName" : "author",
......@@ -93,6 +81,18 @@
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "借出日期",
"codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime",
"mOSFilePath" : "psdetreecols/lendouttime",
"name" : "lendouttime",
"rTMOSFilePath" : "psdetreecols/lendouttime",
"width" : 200,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称",
"codeName" : "ibizbookname",
......
......@@ -100,13 +100,13 @@
"id" : "TREEGRIDEX"
},
"getPSDETreeColumns" : [ {
"caption" : "图书名称",
"codeName" : "ibizbookname",
"caption" : "图书描述",
"codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname",
"mOSFilePath" : "psdetreecols/ibizbookname",
"name" : "ibizbookname",
"rTMOSFilePath" : "psdetreecols/ibizbookname",
"dataItemName" : "subtext",
"mOSFilePath" : "psdetreecols/subtext",
"name" : "subtext",
"rTMOSFilePath" : "psdetreecols/subtext",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
......@@ -124,13 +124,13 @@
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书描述",
"codeName" : "subtext",
"caption" : "图书名称",
"codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext",
"mOSFilePath" : "psdetreecols/subtext",
"name" : "subtext",
"rTMOSFilePath" : "psdetreecols/subtext",
"dataItemName" : "ibizbookname",
"mOSFilePath" : "psdetreecols/ibizbookname",
"name" : "ibizbookname",
"rTMOSFilePath" : "psdetreecols/ibizbookname",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册