提交 10f6e63c 编写于 作者: ibizdev's avatar ibizdev

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

上级 b0be61f9
此差异已折叠。
...@@ -171,22 +171,14 @@ export default class AppMessagePopover extends Vue { ...@@ -171,22 +171,14 @@ export default class AppMessagePopover extends Vue {
* 点击标签事件 * 点击标签事件
*/ */
public handleTag(data: any) { public handleTag(data: any) {
if (!data) return; if(!data || !data.processDefinitionKey || !data.processInstanceBusinessKey || !data.taskDefinitionKey){
const baseUrl: any = Environment.BaseUrl; this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '参数不足,跳转失败' });
this.$http.get(baseUrl + `/wfcore/mytasks/${data.processDefinitionKey}/web/${data.processInstanceBusinessKey}/usertasks/${data.taskDefinitionKey}`).then((response: any) => { return;
const { status, data } = response; }
if (status && status == 200) { const srfappde = (data.processDefinitionKey as string).split('-')[1];
const url = data.substr(data.indexOf("#") + 1); const url = `/appwfdataredirectview?srfappde=${srfappde};srfappkey=${data.processInstanceBusinessKey};userTaskId=${data.taskDefinitionKey}`;
const indexPath = this.$viewTool.getIndexRoutePath(this.$route); const indexPath = this.$viewTool.getIndexRoutePath(this.$route);
this.$router.push({ path: `${indexPath}${url}` }); this.$router.push({ path: `${indexPath}${url}` });
} else {
const message = data.message ? data.message : '跳转失败';
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: message });
}
}).catch((error: any) => {
const message = error.message ? error.message : '跳转失败';
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: message });
})
} }
/** /**
......
...@@ -111,22 +111,14 @@ export default class AppTodoList extends Vue { ...@@ -111,22 +111,14 @@ export default class AppTodoList extends Vue {
* 处理点击 * 处理点击
*/ */
public handleClick(data: any) { public handleClick(data: any) {
if (!data) return; if(!data || !data.processDefinitionKey || !data.processInstanceBusinessKey || !data.taskDefinitionKey){
const baseUrl: any = Environment.BaseUrl; this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '参数不足,跳转失败' });
this.$http.get(baseUrl + `/wfcore/mytasks/${data.processDefinitionKey}/web/${data.processInstanceBusinessKey}/usertasks/${data.taskDefinitionKey}`).then((response: any) => { return;
const { status, data } = response; }
if (status && status == 200) { const srfappde = (data.processDefinitionKey as string).split('-')[1];
const url = data.substr(data.indexOf("#") + 1); const url = `/appwfdataredirectview?srfappde=${srfappde};srfappkey=${data.processInstanceBusinessKey};userTaskId=${data.taskDefinitionKey}`;
const indexPath = this.$viewTool.getIndexRoutePath(this.$route); const indexPath = this.$viewTool.getIndexRoutePath(this.$route);
this.$router.push({ path: `${indexPath}${url}` }); this.$router.push({ path: `${indexPath}${url}` });
} else {
const message = data.message ? data.message : '跳转失败';
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: message });
}
}).catch((error: any) => {
const message = error.message ? error.message : '跳转失败';
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: message });
})
} }
/** /**
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 动态数据看板服务对象基类 * 动态数据看板服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 账户服务对象基类 * 账户服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 应用部件服务对象基类 * 应用部件服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 编辑器服务对象基类 * 编辑器服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 扩展编辑器服务对象基类 * 扩展编辑器服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 应用视图服务对象基类 * 应用视图服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -7,7 +7,6 @@ import InitDataLogic from '@/service/ibizbook/init-data-logic'; ...@@ -7,7 +7,6 @@ import InitDataLogic from '@/service/ibizbook/init-data-logic';
import PrintLogic from '@/service/ibizbook/print-logic'; import PrintLogic from '@/service/ibizbook/print-logic';
/** /**
* 图书服务对象基类 * 图书服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 处理器服务对象基类 * 处理器服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 自定义服务对象基类 * 自定义服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 客户服务对象基类 * 客户服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 客户管理服务对象基类 * 客户管理服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 客户服务对象基类 * 客户服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 硬件服务对象基类 * 硬件服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -4,7 +4,6 @@ import CountMoneyLogic from '@/service/ibizorder-detail/count-money-logic'; ...@@ -4,7 +4,6 @@ import CountMoneyLogic from '@/service/ibizorder-detail/count-money-logic';
import GetUnitAndPriceLogic from '@/service/ibizorder-detail/get-unit-and-price-logic'; import GetUnitAndPriceLogic from '@/service/ibizorder-detail/get-unit-and-price-logic';
/** /**
* 订单明细服务对象基类 * 订单明细服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 订单类型服务对象基类 * 订单类型服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 订单服务对象基类 * 订单服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 示例数据库服务对象基类 * 示例数据库服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 示例实体01服务对象基类 * 示例实体01服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 示例实体02服务对象基类 * 示例实体02服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 示例实体03服务对象基类 * 示例实体03服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 多版本流程服务对象基类 * 多版本流程服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 多模式流程服务对象基类 * 多模式流程服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 嵌套流程(主)服务对象基类 * 嵌套流程(主)服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 嵌套流程(子)服务对象基类 * 嵌套流程(子)服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 自循环流程服务对象基类 * 自循环流程服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 商品价格明细服务对象基类 * 商品价格明细服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 订单服务对象基类 * 订单服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 订单明细服务对象基类 * 订单明细服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 订单服务对象基类 * 订单服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 订单明细服务对象基类 * 订单明细服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 员工服务对象基类 * 员工服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 项目服务对象基类 * 项目服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 项目成员服务对象基类 * 项目成员服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 订单服务对象基类 * 订单服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 示例实体18服务对象基类 * 示例实体18服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -3,7 +3,6 @@ import EntityService from '../entity-service'; ...@@ -3,7 +3,6 @@ import EntityService from '../entity-service';
import UpdateYGNameLogic from '@/service/ibizsample0019/update-ygname-logic'; import UpdateYGNameLogic from '@/service/ibizsample0019/update-ygname-logic';
/** /**
* 部门服务对象基类 * 部门服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 员工服务对象基类 * 员工服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 订单服务对象基类 * 订单服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 软件服务对象基类 * 软件服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 存储服务对象基类 * 存储服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 供货商服务对象基类 * 供货商服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 任务服务对象基类 * 任务服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 任务团队服务对象基类 * 任务团队服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 统一产品(索引主实体)服务对象基类 * 统一产品(索引主实体)服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils'; ...@@ -2,7 +2,6 @@ import { Http,Util } from '@/utils';
import EntityService from '../entity-service'; import EntityService from '../entity-service';
/** /**
* 微组件服务对象基类 * 微组件服务对象基类
* 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成 * 基于 APP/src/service/%DE_PKGPATH%/%DE_PKGPATH%-service-base.ts.ftl 生成
......
...@@ -1378,7 +1378,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1378,7 +1378,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
*/ */
public async load(opt: any = {}): Promise<any> { public async load(opt: any = {}): Promise<any> {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loadaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loadaction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -1425,7 +1425,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1425,7 +1425,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
*/ */
public async loadDraft(opt: any = {}): Promise<any> { public async loadDraft(opt: any = {}): Promise<any> {
if (!this.loaddraftAction) { if (!this.loaddraftAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.loaddraftaction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
...@@ -1495,7 +1495,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1495,7 +1495,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg,{viewparams:this.viewparams}); Object.assign(arg,{viewparams:this.viewparams});
...@@ -1603,7 +1603,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1603,7 +1603,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction; const action: any = Object.is(data.srfuf, '1') ? this.updateAction : this.createAction;
if(!action){ if(!action){
let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction"; let actionName:any = Object.is(data.srfuf, '1')?"updateAction":"createAction";
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.actionname') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.actionname') as string) });
return; return;
} }
Object.assign(arg, { viewparams: this.viewparams }); Object.assign(arg, { viewparams: this.viewparams });
...@@ -1695,7 +1695,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface ...@@ -1695,7 +1695,7 @@ export default class GuideBorrowFormBase extends Vue implements ControlInterface
public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> { public remove(opt:Array<any> = [],showResultInfo?: boolean): Promise<any> {
return new Promise((resolve: any, reject: any) => { return new Promise((resolve: any, reject: any) => {
if(!this.removeAction){ if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView' + (this.$t('app.formpage.notconfig.removeaction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKWizardView_layout' + (this.$t('app.formpage.notconfig.removeaction') as string) });
return; return;
} }
const arg: any = opt[0]; const arg: any = opt[0];
......
...@@ -1805,7 +1805,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface ...@@ -1805,7 +1805,7 @@ export default class GuideReturnFormBase extends Vue implements ControlInterface
} }
const post: Promise<any> = Object.is(arg.srfuf, '1')?this.service.update(this.updateAction, JSON.parse(JSON.stringify(this.context)),arg, this.showBusyIndicator,true):this.service.add(this.createAction,JSON.parse(JSON.stringify(this.context)),arg, this.showBusyIndicator,true); const post: Promise<any> = Object.is(arg.srfuf, '1')?this.service.update(this.updateAction, JSON.parse(JSON.stringify(this.context)),arg, this.showBusyIndicator,true):this.service.add(this.createAction,JSON.parse(JSON.stringify(this.context)),arg, this.showBusyIndicator,true);
post.then((response:any) =>{ post.then((response:any) =>{
const responseData:any = response.data; const responseData:any = response const responseData:any = response.data;
let tempResponseData:any = Util.deepCopy(response); let tempResponseData:any = Util.deepCopy(response);
this.service.handleResponse('save', tempResponseData); this.service.handleResponse('save', tempResponseData);
const arg:any = tempResponseData.data; const arg:any = tempResponseData.data;
......
...@@ -2202,4 +2202,5 @@ export default class GuideViewFormBase extends Vue implements ControlInterface { ...@@ -2202,4 +2202,5 @@ export default class GuideViewFormBase extends Vue implements ControlInterface {
<style lang='less'> <style lang='less'>
@import './guide-view-form-form.less'; @import './guide-view-form-form.less';
</style>uide-view-form-form.less';
</style> </style>
\ No newline at end of file
...@@ -957,7 +957,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -957,7 +957,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) { if (!this.fetchAction) {
this.$Notice.error({ this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string, title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZOrderDetailSGridView" + (this.$t("app.gridpage.notConfig.fetchAction") as string), desc: "IBIZOrderDetailSGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
}); });
return; return;
} }
...@@ -1086,7 +1086,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1086,7 +1086,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) { if (!this.removeAction) {
this.$Notice.error({ this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string), title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.removeAction') as string) desc: 'IBIZOrderDetailSGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string)
}); });
return; return;
} }
...@@ -1200,7 +1200,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1200,7 +1200,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public addBatch(arg: any = {}): void { public addBatch(arg: any = {}): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(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; return;
} }
if(!arg){ if(!arg){
...@@ -2094,7 +2094,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2094,7 +2094,7 @@ export default class MainBase extends Vue implements ControlInterface {
try { try {
if (Object.is(item.rowDataState, 'create')) { if (Object.is(item.rowDataState, 'create')) {
if (!this.createAction) { if (!this.createAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(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 { } else {
Object.assign(item, { viewparams: this.viewparams }); Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context); const tempContext = Util.deepCopy(this.context);
...@@ -2103,7 +2103,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2103,7 +2103,7 @@ export default class MainBase extends Vue implements ControlInterface {
} }
}else if (Object.is(item.rowDataState, 'update')){ }else if (Object.is(item.rowDataState, 'update')){
if (!this.updateAction) { if (!this.updateAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(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 { } else {
Object.assign(item, { viewparams: this.viewparams }); Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context); const tempContext = Util.deepCopy(this.context);
...@@ -2179,7 +2179,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2179,7 +2179,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string), title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string) desc: 'IBIZOrderDetailSGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
}); });
return; return;
} }
......
...@@ -97,7 +97,6 @@ export default class MainModel { ...@@ -97,7 +97,6 @@ export default class MainModel {
name: 'ibizorderdetail', name: 'ibizorderdetail',
prop: 'ibizorderdetailid', prop: 'ibizorderdetailid',
}, },
{ {
name:'size', name:'size',
prop:'size', prop:'size',
......
...@@ -8,32 +8,12 @@ module.exports = { ...@@ -8,32 +8,12 @@ module.exports = {
publicPath: './', publicPath: './',
// 去除 map 文件 1 // 去除 map 文件 1
productionSourceMap: false, productionSourceMap: false,
outputDir:"../demo-app/demo-app-web/target/classes/META-INF/resources",
devServer: { devServer: {
host: '0.0.0.0', host: '0.0.0.0',
port: 8111, port: 8111,
compress: true, compress: true,
disableHostCheck: true, disableHostCheck: true,
// proxy: { // proxy:"http://172.16.103.153:30093/",
// '/v7/*':{
// target: 'http://172.16.240.110:10000/'
// },
// '/appdata':{
// target: 'http://172.16.240.110:10000/'
// },
// '/sysorganizations/*':{
// target: 'http://172.16.240.110:10000/'
// },
// '/wfcore/*': {
// target: 'http://172.16.103.157:40003/',
// pathRewrite:{
// "^/wfcore": ""
// }
// },
// '/': {
// target: 'http://172.16.103.157:51000/demosys/demoapi',
// },
// },
historyApiFallback: { historyApiFallback: {
rewrites: [ rewrites: [
// { from: /^\/appindexview$/, to: '/appindexview.html' }, // { from: /^\/appindexview$/, to: '/appindexview.html' },
......
...@@ -11,51 +11,51 @@ ...@@ -11,51 +11,51 @@
"path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json" "path" : "PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
}, },
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "归还日期", "caption" : "作者",
"codeName" : "returntime", "codeName" : "author",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "returntime", "dataItemName" : "author",
"name" : "returntime", "name" : "author",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "出版社", "caption" : "图书名称",
"codeName" : "press", "codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "press", "dataItemName" : "ibizbookname",
"name" : "press", "name" : "ibizbookname",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "借出日期", "caption" : "归还日期",
"codeName" : "lendouttime", "codeName" : "returntime",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime", "dataItemName" : "returntime",
"name" : "lendouttime", "name" : "returntime",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "作者", "caption" : "出版社",
"codeName" : "author", "codeName" : "press",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author", "dataItemName" : "press",
"name" : "author", "name" : "press",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "图书名称", "caption" : "借出日期",
"codeName" : "ibizbookname", "codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname", "dataItemName" : "lendouttime",
"name" : "ibizbookname", "name" : "lendouttime",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
......
...@@ -19,6 +19,16 @@ ...@@ -19,6 +19,16 @@
} }
} ], } ],
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "图书描述",
"codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext",
"name" : "subtext",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称", "caption" : "图书名称",
"codeName" : "ibizbookname", "codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
...@@ -38,16 +48,6 @@ ...@@ -38,16 +48,6 @@
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, {
"caption" : "图书描述",
"codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext",
"name" : "subtext",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
} ], } ],
"getPSDETreeNodeRSs" : [ { "getPSDETreeNodeRSs" : [ {
"getChildPSDETreeNode" : { "getChildPSDETreeNode" : {
......
...@@ -34,51 +34,51 @@ ...@@ -34,51 +34,51 @@
"id" : "GANTT" "id" : "GANTT"
}, },
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "归还日期", "caption" : "作者",
"codeName" : "returntime", "codeName" : "author",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "returntime", "dataItemName" : "author",
"name" : "returntime", "name" : "author",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "出版社", "caption" : "图书名称",
"codeName" : "press", "codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "press", "dataItemName" : "ibizbookname",
"name" : "press", "name" : "ibizbookname",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "借出日期", "caption" : "归还日期",
"codeName" : "lendouttime", "codeName" : "returntime",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "lendouttime", "dataItemName" : "returntime",
"name" : "lendouttime", "name" : "returntime",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "作者", "caption" : "出版社",
"codeName" : "author", "codeName" : "press",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "author", "dataItemName" : "press",
"name" : "author", "name" : "press",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, { }, {
"caption" : "图书名称", "caption" : "借出日期",
"codeName" : "ibizbookname", "codeName" : "lendouttime",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "ibizbookname", "dataItemName" : "lendouttime",
"name" : "ibizbookname", "name" : "lendouttime",
"width" : 200, "width" : 200,
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
......
...@@ -75,6 +75,16 @@ ...@@ -75,6 +75,16 @@
"id" : "TREEGRIDEX" "id" : "TREEGRIDEX"
}, },
"getPSDETreeColumns" : [ { "getPSDETreeColumns" : [ {
"caption" : "图书描述",
"codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext",
"name" : "subtext",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
}, {
"caption" : "图书名称", "caption" : "图书名称",
"codeName" : "ibizbookname", "codeName" : "ibizbookname",
"columnType" : "DEFGRIDCOLUMN", "columnType" : "DEFGRIDCOLUMN",
...@@ -94,16 +104,6 @@ ...@@ -94,16 +104,6 @@
"widthUnit" : "px", "widthUnit" : "px",
"enableExpand" : false, "enableExpand" : false,
"enableSort" : false "enableSort" : false
}, {
"caption" : "图书描述",
"codeName" : "subtext",
"columnType" : "DEFGRIDCOLUMN",
"dataItemName" : "subtext",
"name" : "subtext",
"width" : 50,
"widthUnit" : "px",
"enableExpand" : false,
"enableSort" : false
} ], } ],
"getPSDETreeNodeRSs" : [ { "getPSDETreeNodeRSs" : [ {
"getChildPSDETreeNode" : { "getChildPSDETreeNode" : {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册