Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
22
议题
22
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7
提交
3eaa454a
提交
3eaa454a
编写于
11月 24, 2022
作者:
tony001
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新
上级
9da0f4a7
变更
6
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
27 行增加
和
27 行删除
+27
-27
CONTROL-BASE.vue.ftl
@CONTROL/多编辑视图面板/CONTROL-BASE.vue.ftl
+2
-12
VIEW-BASE.vue.ftl
@VIEW/实体工作流动态编辑视图/VIEW-BASE.vue.ftl
+4
-0
VIEW-BASE.vue.ftl
@VIEW/实体工作流动态编辑视图(分页关系)/VIEW-BASE.vue.ftl
+4
-0
package.json.ftl
APP/package.json.ftl
+4
-4
vue.config.js.ftl
APP/vue.config.js.ftl
+12
-10
README.md
README.md
+1
-1
未找到文件。
@CONTROL/多编辑视图面板/CONTROL-BASE.vue.ftl
浏览文件 @
3eaa454a
...
@@ -7,8 +7,8 @@
...
@@ -7,8 +7,8 @@
<#if ctrl.getEmbeddedPSAppView()??>
<#if ctrl.getEmbeddedPSAppView()??>
<${srffilepath2(ctrl.getEmbeddedPSAppView().getCodeName())}
<${srffilepath2(ctrl.getEmbeddedPSAppView().getCodeName())}
class="viewcontainer2"
class="viewcontainer2"
:viewdata="
toString
(item.viewdata)"
:viewdata="
JSON.stringify
(item.viewdata)"
:viewparam="
toString
(item.viewparam)"
:viewparam="
JSON.stringify
(item.viewparam)"
:viewDefaultUsage="false"
:viewDefaultUsage="false"
:panelState="panelState"
:panelState="panelState"
@viewdataschange="viewDataChange"
@viewdataschange="viewDataChange"
...
@@ -128,16 +128,6 @@
...
@@ -128,16 +128,6 @@
this.$emit('drdatasaved', false);
this.$emit('drdatasaved', false);
}
}
}
/**
* 对象转字符串
*
* @type {*}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public toString(item:any): string{
return JSON.stringify(item);
}
}
/**
/**
...
...
@VIEW/实体工作流动态编辑视图/VIEW-BASE.vue.ftl
浏览文件 @
3eaa454a
<#assign import_block>
import AppCenterService from '@/service/app/app-center-service';
</#assign>
<#assign self_content>
<#assign self_content>
/**
/**
* 工具栏模型数据
* 工具栏模型数据
...
@@ -237,6 +240,7 @@
...
@@ -237,6 +240,7 @@
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: data.message ? data.message : this.$t('app.commonWords.sysException') as string });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: data.message ? data.message : this.$t('app.commonWords.sysException') as string });
return;
return;
}
}
AppCenterService.notifyMessage({name:"srfwftodo",action:'appRefresh',data});
if (this.viewdata) {
if (this.viewdata) {
this.$emit('viewdataschange', [{ ...data }]);
this.$emit('viewdataschange', [{ ...data }]);
this.$emit('close');
this.$emit('close');
...
...
@VIEW/实体工作流动态编辑视图(分页关系)/VIEW-BASE.vue.ftl
浏览文件 @
3eaa454a
<#assign import_block>
import AppCenterService from '@/service/app/app-center-service';
</#assign>
<#assign self_content>
<#assign self_content>
/**
/**
* 工具栏模型数据
* 工具栏模型数据
...
@@ -278,6 +281,7 @@
...
@@ -278,6 +281,7 @@
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: data.message ? data.message : this.$t('app.commonWords.sysException') as string });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: data.message ? data.message : this.$t('app.commonWords.sysException') as string });
return;
return;
}
}
AppCenterService.notifyMessage({name:"srfwftodo",action:'appRefresh',data});
if (this.viewdata) {
if (this.viewdata) {
this.$emit('viewdataschange', [{ ...data }]);
this.$emit('viewdataschange', [{ ...data }]);
this.$emit('close');
this.$emit('close');
...
...
APP/package.json.ftl
浏览文件 @
3eaa454a
...
@@ -7,10 +7,10 @@ TARGET=PSSYSAPP
...
@@ -7,10 +7,10 @@ TARGET=PSSYSAPP
"private": true,
"private": true,
"scripts": {
"scripts": {
"copy": "node copy.js",
"copy": "node copy.js",
"serve": "
yarn run copy && node --max_old_space_size=8102
./node_modules/@vue/cli-service/bin/vue-cli-service serve --mode test",
"serve": "
node --max_old_space_size=4096
./node_modules/@vue/cli-service/bin/vue-cli-service serve --mode test",
"dev-serve": "
yarn run copy && node --max_old_space_size=8102
./node_modules/@vue/cli-service/bin/vue-cli-service serve --mode development",
"dev-serve": "
node --max_old_space_size=4096
./node_modules/@vue/cli-service/bin/vue-cli-service serve --mode development",
"build": "
yarn run copy && node --max_old_space_size=8102
./node_modules/@vue/cli-service/bin/vue-cli-service build",
"build": "
node --max_old_space_size=4096
./node_modules/@vue/cli-service/bin/vue-cli-service build",
"dev-build": "node --max_old_space_size=
8102
./node_modules/@vue/cli-service/bin/vue-cli-service build --mode development",
"dev-build": "node --max_old_space_size=
4096
./node_modules/@vue/cli-service/bin/vue-cli-service build --mode development",
"test:unit": "vue-cli-service test:unit",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint"
"lint": "vue-cli-service lint"
...
...
APP/vue.config.js.ftl
浏览文件 @
3eaa454a
...
@@ -126,16 +126,18 @@ module.exports = {
...
@@ -126,16 +126,18 @@ module.exports = {
return element.workersNumber && element.memoryLimit;
return element.workersNumber && element.memoryLimit;
})
})
}
}
if (Object.is(config.mode, 'production')) {
if(ForkTsCheckerPlugin){
// 最大进程数
if (Object.is(config.mode, 'production')) {
ForkTsCheckerPlugin.workersNumber = os.cpus().length > 4 ? 4 : os.cpus().length; // 会占用额外内存不释放,不建议开发阶段使用
// 最大进程数
// 单个进程最大使用内存
ForkTsCheckerPlugin.workersNumber = os.cpus().length > 4 ? 4 : os.cpus().length; // 会占用额外内存不释放,不建议开发阶段使用
ForkTsCheckerPlugin.memoryLimit = 4096;
// 单个进程最大使用内存
} else {
ForkTsCheckerPlugin.memoryLimit = 4096;
// 最大进程数
} else {
// ForkTsCheckerPlugin.workersNumber = os.cpus().length > 4 ? 4 : os.cpus().length; // 会占用额外内存不释放,不建议开发阶段使用
// 最大进程数
// 单个进程最大使用内存
// ForkTsCheckerPlugin.workersNumber = os.cpus().length > 4 ? 4 : os.cpus().length; // 会占用额外内存不释放,不建议开发阶段使用
ForkTsCheckerPlugin.memoryLimit = 4096;
// 单个进程最大使用内存
ForkTsCheckerPlugin.memoryLimit = 4096;
}
}
}
<#-- if(Object.is(config.mode, 'production')){
<#-- if(Object.is(config.mode, 'production')){
return{
return{
...
...
README.md
浏览文件 @
3eaa454a
...
@@ -181,4 +181,4 @@ $ yarn build
...
@@ -181,4 +181,4 @@ $ yarn build
2.
加入钉钉 Vue_R7自助服务群(中文)
2.
加入钉钉 Vue_R7自助服务群(中文)
<img
src=
"./imgs/getting-started/vue-r7-group.png"
height=
"400"
width=
"400"
>
<img
src=
"./imgs/getting-started/vue-r7-group.png"
height=
"400"
width=
"400"
>
\ No newline at end of file
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录