提交 3eaa454a 编写于 作者: tony001's avatar tony001

update:更新

上级 9da0f4a7
......@@ -7,8 +7,8 @@
<#if ctrl.getEmbeddedPSAppView()??>
<${srffilepath2(ctrl.getEmbeddedPSAppView().getCodeName())}
class="viewcontainer2"
:viewdata="toString(item.viewdata)"
:viewparam="toString(item.viewparam)"
:viewdata="JSON.stringify(item.viewdata)"
:viewparam="JSON.stringify(item.viewparam)"
:viewDefaultUsage="false"
:panelState="panelState"
@viewdataschange="viewDataChange"
......@@ -128,16 +128,6 @@
this.$emit('drdatasaved', false);
}
}
/**
* 对象转字符串
*
* @type {*}
* @memberof ${srfclassname('${ctrl.codeName}')}Base
*/
public toString(item:any): string{
return JSON.stringify(item);
}
/**
......
<#assign import_block>
import AppCenterService from '@/service/app/app-center-service';
</#assign>
<#assign self_content>
/**
* 工具栏模型数据
......@@ -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 });
return;
}
AppCenterService.notifyMessage({name:"srfwftodo",action:'appRefresh',data});
if (this.viewdata) {
this.$emit('viewdataschange', [{ ...data }]);
this.$emit('close');
......
<#assign import_block>
import AppCenterService from '@/service/app/app-center-service';
</#assign>
<#assign self_content>
/**
* 工具栏模型数据
......@@ -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 });
return;
}
AppCenterService.notifyMessage({name:"srfwftodo",action:'appRefresh',data});
if (this.viewdata) {
this.$emit('viewdataschange', [{ ...data }]);
this.$emit('close');
......
......@@ -7,10 +7,10 @@ TARGET=PSSYSAPP
"private": true,
"scripts": {
"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",
"dev-serve": "yarn run copy && node --max_old_space_size=8102 ./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",
"dev-build": "node --max_old_space_size=8102 ./node_modules/@vue/cli-service/bin/vue-cli-service build --mode development",
"serve": "node --max_old_space_size=4096 ./node_modules/@vue/cli-service/bin/vue-cli-service serve --mode test",
"dev-serve": "node --max_old_space_size=4096 ./node_modules/@vue/cli-service/bin/vue-cli-service serve --mode development",
"build": "node --max_old_space_size=4096 ./node_modules/@vue/cli-service/bin/vue-cli-service build",
"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:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint"
......
......@@ -126,16 +126,18 @@ module.exports = {
return element.workersNumber && element.memoryLimit;
})
}
if (Object.is(config.mode, 'production')) {
// 最大进程数
ForkTsCheckerPlugin.workersNumber = os.cpus().length > 4 ? 4 : os.cpus().length; // 会占用额外内存不释放,不建议开发阶段使用
// 单个进程最大使用内存
ForkTsCheckerPlugin.memoryLimit = 4096;
} else {
// 最大进程数
// ForkTsCheckerPlugin.workersNumber = os.cpus().length > 4 ? 4 : os.cpus().length; // 会占用额外内存不释放,不建议开发阶段使用
// 单个进程最大使用内存
ForkTsCheckerPlugin.memoryLimit = 4096;
if(ForkTsCheckerPlugin){
if (Object.is(config.mode, 'production')) {
// 最大进程数
ForkTsCheckerPlugin.workersNumber = os.cpus().length > 4 ? 4 : os.cpus().length; // 会占用额外内存不释放,不建议开发阶段使用
// 单个进程最大使用内存
ForkTsCheckerPlugin.memoryLimit = 4096;
} else {
// 最大进程数
// ForkTsCheckerPlugin.workersNumber = os.cpus().length > 4 ? 4 : os.cpus().length; // 会占用额外内存不释放,不建议开发阶段使用
// 单个进程最大使用内存
ForkTsCheckerPlugin.memoryLimit = 4096;
}
}
<#-- if(Object.is(config.mode, 'production')){
return{
......
......@@ -181,4 +181,4 @@ $ yarn build
2.加入钉钉 Vue_R7自助服务群(中文)
<img src="./imgs/getting-started/vue-r7-group.png" height="400" width="400">
\ No newline at end of file
<img src="./imgs/getting-started/vue-r7-group.png" height="400" width="400">
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册