Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-Mob-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-Mob-R7
提交
2f76740a
提交
2f76740a
编写于
6月 12, 2020
作者:
zcdtk
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
表单,列表----代码格式整理
上级
3347c6aa
变更
2
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
51 行增加
和
37 行删除
+51
-37
CONTROL-BASE.vue.ftl
@CONTROL/列表/CONTROL-BASE.vue.ftl
+44
-31
CONTROL-BASE.vue.ftl
@CONTROL/表单/CONTROL-BASE.vue.ftl
+7
-6
未找到文件。
@CONTROL/列表/CONTROL-BASE.vue.ftl
浏览文件 @
2f76740a
...
...
@@ -85,10 +85,10 @@
/**
* 列表数组
*
* @param
{Array<any>}
* @type
{Array<any>}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public items:
Array<any> =
[];
public items:
Array<any> =
[];
/**
* 分页大小
...
...
@@ -96,7 +96,7 @@
* @type {number}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public pageSize: number = ${ctrl.getPagingSize()?c};
public pageSize: number = ${
ctrl.getPagingSize()?c};
/**
* 总页数
...
...
@@ -125,39 +125,31 @@
/**
* 格式化数据
*
* @type {boolean}
* @memberof ${srfclassname('${ctrl.codeName}')}
* @param {*} datelist
* @memberof IBizChartViewController
*/
public formatdate(datelist
: any)
{
public formatdate(datelist
: any)
{
this.items = datelist;
}
/**
* 多项
数据加载
*
数据加载
*
* @private
* @param {*} [arg={}]
* @protected
* @param {*} data
* @param {*} type
* @returns {Promise<any>}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
private load(data:any,type:any):void {
const post: Promise<any> = this.service.search(this.fetchAction,this.context, data, this.showBusyIndicator);
post.then((response: any) => {
if (!response || response.status !== 200) {
// this.$notifyMessage.danger('错误,' + response.info);
}
protected async load(data: any, type: any): Promise<any> {
const response: any = await this.service.search(this.fetchAction, this.context, data, this.showBusyIndicator);
if (response && response.status === 200) {
let datelist = response.data.records;
this.formatdate(datelist);
}).catch((response : any)=>{
if (response && response.status === 401) {
return;
}
if (!response || !response.status || !response.data) {
// this.$notifyMessage.danger('错误,系统异常!');
return;
}
} else if (response && response.status !== 401) {
const { data: _data } = response;
console.error(_data.title + _data.message);
});
this.$notice.error(_data.message)
}
}
/**
...
...
@@ -165,7 +157,7 @@
*
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
created() {
public
created() {
this.handleCreated();
}
...
...
@@ -174,17 +166,38 @@
*
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public handleCreated(){
public handleCreated()
{
if (this.viewState) {
this.viewStateEvent = this.viewState.subscribe(
({ tag, action, data }) => {
this.viewStateEvent = this.viewState.subscribe(({ tag, action, data }) => {
if (!Object.is(tag, this.name)) {
return;
}
this.load(Object.assign(data, { page: this.pageNumber, size: this.pageSize }),"");
this.load(Object.assign(data, { page: this.pageNumber, size: this.pageSize }), "");
});
}
}
);
/**
* vue 生命周期
*
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
protected destroyed() {
this.afterDestroy();
}
/**
* 执行destroyed后的逻辑
*
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
protected afterDestroy() {
if (this.viewStateEvent) {
this.viewStateEvent.unsubscribe();
}
<#if destroyed_block??>
${destroyed_block}
</#if>
}
<#ibizinclude>
...
...
@CONTROL/表单/CONTROL-BASE.vue.ftl
浏览文件 @
2f76740a
...
...
@@ -1060,18 +1060,19 @@ import { toastController, alertController } from '@ionic/core';
*
* @protected
* @param {*} data
* @param {*} linkItem
* @param {*} datas
* @returns {Promise<any>}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
protected async wfsubmit(data: any, linkItem: any,datas: any): Promise<any> {
const _this: any = this;
protected async wfsubmit(data: any, linkItem: any, datas: any): Promise<any> {
const arg: any = { ...data };
Object.assign(arg, this.viewparams,
linkItem);
Object.assign(arg, this.viewparams,
linkItem);
// 强制补充srfwfmemo
if(this.srfwfmemo)
{
Object.assign(datas,{srfwfmemo:this.srfwfmemo
});
if (this.srfwfmemo)
{
Object.assign(datas, { srfwfmemo: this.srfwfmemo
});
}
const response: any = await this.service.wfsubmit(this.currentAction,JSON.parse(JSON.stringify(this.context)), datas,
this.showBusyIndicator, arg);
const response: any = await this.service.wfsubmit(this.currentAction, { ...this.context }, datas,
this.showBusyIndicator, arg);
if (response && response.status === 200) {
this.$notice.success('工作流提交成功');
} else if (response && response.status !== 401) {
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录