Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
22
议题
22
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7
提交
1691b89b
提交
1691b89b
编写于
11月 11, 2022
作者:
Shine-zwj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新
上级
5f5624c5
变更
7
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
41 行增加
和
35 行删除
+41
-35
DATA_CANCELCHANGES.ftl
...ANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/DATA_CANCELCHANGES.ftl
+10
-10
DATA_CREATEOBJECT.ftl
...PANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/DATA_CREATEOBJECT.ftl
+3
-3
DATA_REMOVEOBJECT.ftl
...PANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/DATA_REMOVEOBJECT.ftl
+9
-3
DATA_SAVECHANGES.ftl
...TPANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/DATA_SAVECHANGES.ftl
+4
-4
DATA_SYNCHRONIZE.ftl
...TPANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/DATA_SYNCHRONIZE.ftl
+1
-1
LOGIN.ftl
.../VIEW_LAYOUTPANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/LOGIN.ftl
+11
-11
LOGOUT.ftl
...VIEW_LAYOUTPANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/LOGOUT.ftl
+3
-3
未找到文件。
@VIEW/@MACRO/VIEW_LAYOUTPANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/DATA_CANCELCHANGES.ftl
浏览文件 @
1691b89b
...
...
@@ -12,23 +12,23 @@
* @param {*} [srfParentDeName] 父实体名称
*/
public ${item.getFullCodeName()}(args: any[], contextJO?:any, params?: any, $event?: any, xData?: any, actionContext?:any, srfParentDeName?:string) {
if (
this
.viewType === 'APPLOGINVIEW') {
const length = Object.keys(
this
.layoutData).length;
if (
actionContext
.viewType === 'APPLOGINVIEW') {
const length = Object.keys(
actionContext
.layoutData).length;
for (let i = length - 1; i >= 0; i--) {
const name = Object.keys(
this
.layoutData)[i];
if (
this.layoutData.hasOwnProperty(name) && !Object.is(this
.layoutModelDetails[name].itemType, 'CONTAINER')) {
this
.handleValueChange({ name, value: null });
const name = Object.keys(
actionContext
.layoutData)[i];
if (
actionContext.layoutData.hasOwnProperty(name) && !Object.is(actionContext
.layoutModelDetails[name].itemType, 'CONTAINER')) {
actionContext
.handleValueChange({ name, value: null });
}
}
this
.$nextTick(() => {
this
.$forceUpdate();
actionContext
.$nextTick(() => {
actionContext
.$forceUpdate();
})
} else {
const parentRef: any =
this
.$parent;
const parentRef: any =
actionContext
.$parent;
if (parentRef.closeView && (parentRef.closeView instanceof Function)) {
parentRef.closeView(args);
} else if (
this.closeView && (this
.closeView instanceof Function)) {
this
.closeView(args);
} else if (
actionContext.closeView && (actionContext
.closeView instanceof Function)) {
actionContext
.closeView(args);
}
}
}
...
...
@VIEW/@MACRO/VIEW_LAYOUTPANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/DATA_CREATEOBJECT.ftl
浏览文件 @
1691b89b
...
...
@@ -27,15 +27,15 @@
try {
service.Create(tempContext, data).then((response: any) => {
if (!response.status || response.status !== 200) {
this
.$Notice.error({ title: '错误', desc: '当前环境无法执行建立数据逻辑[执行行为异常]' });
actionContext
.$Notice.error({ title: '错误', desc: '当前环境无法执行建立数据逻辑[执行行为异常]' });
}
})
} catch (error: any) {
this
.$Notice.error({ title: '错误', desc: '当前环境无法执行建立数据逻辑[执行行为异常]' });
actionContext
.$Notice.error({ title: '错误', desc: '当前环境无法执行建立数据逻辑[执行行为异常]' });
}
}
<#else>
this
.$Notice.error({ title: '错误', desc: '建立数据行未配置实体' });
actionContext
.$Notice.error({ title: '错误', desc: '建立数据行未配置实体' });
</#if>
}
</#macro>
\ No newline at end of file
@VIEW/@MACRO/VIEW_LAYOUTPANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/DATA_REMOVEOBJECT.ftl
浏览文件 @
1691b89b
...
...
@@ -32,15 +32,21 @@
try {
service.Remove(tempContext, data).then((response: any) => {
if (!response.status || response.status !== 200) {
this.$Notice.error({ title: '错误', desc: '当前环境无法执行删除数据逻辑[执行行为异常]' });
actionContext.$Notice.error({ title: '错误', desc: '当前环境无法执行删除数据逻辑[执行行为异常]' });
}
const parentRef: any = actionContext.$parent;
if (parentRef.closeView && (parentRef.closeView instanceof Function)) {
parentRef.closeView(args);
} else if (actionContext.closeView && (actionContext.closeView instanceof Function)) {
actionContext.closeView(args);
}
})
} catch (error: any) {
this
.$Notice.error({ title: '错误', desc: '当前环境无法执行删除数据逻辑[执行行为异常]' });
actionContext
.$Notice.error({ title: '错误', desc: '当前环境无法执行删除数据逻辑[执行行为异常]' });
}
}
<#else>
this
.$Notice.error({ title: '错误', desc: '删除数据行未配置实体' });
actionContext
.$Notice.error({ title: '错误', desc: '删除数据行未配置实体' });
</#if>
}
</#macro>
\ No newline at end of file
@VIEW/@MACRO/VIEW_LAYOUTPANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/DATA_SAVECHANGES.ftl
浏览文件 @
1691b89b
...
...
@@ -38,18 +38,18 @@
if (service[action] && service[action] instanceof Function) {
service[action](tempContext, data).then((response: any) => {
if (!response.status || response.status !== 200) {
this
.$Notice.error({ title: '错误', desc: '当前环境无法执行保存变更逻辑[执行行为异常]' });
actionContext
.$Notice.error({ title: '错误', desc: '当前环境无法执行保存变更逻辑[执行行为异常]' });
}
})
} else {
this
.$Notice.error({ title: '错误', desc: '当前环境无法执行保存变更逻辑[执行行为异常]' });
actionContext
.$Notice.error({ title: '错误', desc: '当前环境无法执行保存变更逻辑[执行行为异常]' });
}
} catch (error: any) {
this
.$Notice.error({ title: '错误', desc: '当前环境无法执行保存变更逻辑[执行行为异常]' });
actionContext
.$Notice.error({ title: '错误', desc: '当前环境无法执行保存变更逻辑[执行行为异常]' });
}
}
<#else>
this
.$Notice.error({ title: '错误', desc: '保存变更行为未配置实体' });
actionContext
.$Notice.error({ title: '错误', desc: '保存变更行为未配置实体' });
</#if>
}
</#macro>
\ No newline at end of file
@VIEW/@MACRO/VIEW_LAYOUTPANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/DATA_SYNCHRONIZE.ftl
浏览文件 @
1691b89b
...
...
@@ -18,7 +18,7 @@
} else if (xData.refreshDataArea && (xData.refreshDataArea instanceof Function)) {
xData.refreshDataArea();
} else {
this
.$Notice.error({ title: '错误', desc: '同步数据行为未实现' });
actionContext
.$Notice.error({ title: '错误', desc: '同步数据行为未实现' });
}
}
}
...
...
@VIEW/@MACRO/VIEW_LAYOUTPANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/LOGIN.ftl
浏览文件 @
1691b89b
...
...
@@ -12,17 +12,17 @@
* @param {*} [srfParentDeName] 父实体名称
*/
public ${item.getFullCodeName()}(args: any[], contextJO?:any, params?: any, $event?: any, xData?: any, actionContext?:any, srfParentDeName?:string) {
if (
this
.viewType === 'APPLOGINVIEW') {
if (
actionContext
.viewType === 'APPLOGINVIEW') {
const layoutData = args.length > 0 ? args[0] : {};
const layoutModelDetails: any =
this
.layoutModelDetails || {};
const layoutModelDetails: any =
actionContext
.layoutModelDetails || {};
let userNameKey: string = Object.keys(layoutModelDetails).find((key: string) => Object.is(layoutModelDetails[key].predefinedType, 'AUTH_USERID')) || '';
let passwordKey: string = Object.keys(layoutModelDetails).find((key: string) => Object.is(layoutModelDetails[key].predefinedType, 'AUTH_PASSWORD')) || '';
let messageKey: string = Object.keys(layoutModelDetails).find((key: string) => Object.is(layoutModelDetails[key].predefinedType, 'AUTH_LOGINMSG')) || '';
if (!userNameKey || !passwordKey) {
if (messageKey) {
this
.handleValueChange({ name: messageKey, value: '用户名或密码未配置!' });
actionContext
.handleValueChange({ name: messageKey, value: '用户名或密码未配置!' });
} else {
this
.$message({ message: '用户名或密码未配置!',type: 'warning'});
actionContext
.$message({ message: '用户名或密码未配置!',type: 'warning'});
}
return;
}
...
...
@@ -30,9 +30,9 @@
const password: any = layoutData[passwordKey];
if (!loginname || !password) {
if (messageKey) {
this
.handleValueChange({ name: messageKey, value: '请输入用户名与密码' });
actionContext
.handleValueChange({ name: messageKey, value: '请输入用户名与密码' });
} else {
this
.$message({ message: '请输入用户名与密码',type: 'warning'});
actionContext
.$message({ message: '请输入用户名与密码',type: 'warning'});
}
return;
}
...
...
@@ -41,7 +41,7 @@
leftTime.setTime(leftTime.getSeconds() - 1000);
document.cookie = "ibzuaa-token=;expires=" + leftTime.toUTCString();
const data = { loginname, password };
const post: Promise<any> =
this
.$http.post('/v7/login', data, true);
const post: Promise<any> =
actionContext
.$http.post('/v7/login', data, true);
post.then((response: any) => {
if (response && response.status === 200) {
const data = response.data;
...
...
@@ -55,20 +55,20 @@
// 设置cookie,保存账号密码7天
Util.setCookie("loginname",loginname, 7);
// 跳转首页
const url: any =
this.$route.query.redirect ? this
.$route.query.redirect : '*';
this
.$router.push({path: url});
const url: any =
actionContext.$route.query.redirect ? actionContext
.$route.query.redirect : '*';
actionContext
.$router.push({path: url});
}
}).catch((error: any) => {
// 登录提示
const data = error.data;
if (data) {
if (messageKey) {
this
.handleValueChange({ name: messageKey, value: data.message || this.$t('components.login.loginfailed') });
actionContext
.handleValueChange({ name: messageKey, value: data.message || this.$t('components.login.loginfailed') });
}
}
});
} else {
this
.$router.push({ path: "/login", query: { redirect: window.location.hash.replace("#", '') } });
actionContext
.$router.push({ path: "/login", query: { redirect: window.location.hash.replace("#", '') } });
}
}
</#macro>
\ No newline at end of file
@VIEW/@MACRO/VIEW_LAYOUTPANEL/VIEW_LAYOUTPANEL_UIACTION/SYS/LOGOUT.ftl
浏览文件 @
1691b89b
...
...
@@ -12,13 +12,13 @@
* @param {*} [srfParentDeName] 父实体名称
*/
public ${item.getFullCodeName()}(args: any[], contextJO?:any, params?: any, $event?: any, xData?: any, actionContext?:any, srfParentDeName?:string) {
this
.$Modal.confirm({
actionContext
.$Modal.confirm({
title: '提示',
content: '确认要退出登录?',
okText: '确认',
cancelText: '取消',
onOk: () => {
this
.$http
actionContext
.$http
.get("/v7/logout")
.then((response: any) => {
if (response && response.status === 200) {
...
...
@@ -27,7 +27,7 @@
let leftTime = new Date();
leftTime.setTime(leftTime.getSeconds() - 1);
document.cookie = "ibzuaa-token=;expires=" + leftTime.toUTCString();
this
.$router.push({ path: "/login", query: { redirect: window.location.hash.replace("#", '') } });
actionContext
.$router.push({ path: "/login", query: { redirect: window.location.hash.replace("#", '') } });
}
})
.catch((error: any) => {
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录