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

update:更新

上级 9da0f4a7
...@@ -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);
} }
/** /**
......
<#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');
......
<#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');
......
...@@ -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"
......
...@@ -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{
......
...@@ -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 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册