Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzou
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzou
提交
b08f2e62
提交
b08f2e62
编写于
7月 17, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ibiz4j 发布系统代码
上级
838f9217
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
10948 行增加
和
0 行删除
+10948
-0
app-picker.vue
app_web/src/components/app-picker/app-picker.vue
+12
-0
vue.config.js
app_web/vue.config.js
+77
-0
yarn.lock
app_web/yarn.lock
+10859
-0
未找到文件。
app_web/src/components/app-picker/app-picker.vue
浏览文件 @
b08f2e62
...
...
@@ -176,6 +176,15 @@ export default class AppPicker extends Vue {
*/
@
Prop
()
public
valueitem
!
:
string
;
/**
* 排序
*
* @type {string}
* @memberof AppPicker
*/
@
Prop
()
public
sort
?:
string
;
/**
* 值
*
...
...
@@ -320,6 +329,9 @@ export default class AppPicker extends Vue {
query
=
''
;
}
this
.
inputState
=
false
;
if
(
this
.
sort
&&
!
Object
.
is
(
this
.
sort
,
""
))
{
Object
.
assign
(
_param
,
{
sort
:
this
.
sort
});
}
Object
.
assign
(
_param
,
{
query
:
query
});
// 错误信息国际化
let
error
:
string
=
(
this
.
$t
(
'components.appPicker.error'
)
as
any
);
...
...
app_web/vue.config.js
0 → 100644
浏览文件 @
b08f2e62
const
path
=
require
(
'path'
);
const
os
=
require
(
'os'
);
function
resolve
(
dir
)
{
return
path
.
join
(
__dirname
,
dir
)
}
module
.
exports
=
{
publicPath
:
'./'
,
// 去除 map 文件 1
productionSourceMap
:
false
,
outputDir
:
"../ibzou-app/ibzou-app-web/target/classes/META-INF/resources"
,
devServer
:
{
host
:
'0.0.0.0'
,
port
:
8111
,
compress
:
true
,
disableHostCheck
:
true
,
// proxy: "http://127.0.0.1:8080/",
historyApiFallback
:
{
rewrites
:
[
]
}
},
pages
:
{
ouindexview
:
{
// page 的入口
entry
:
'src/pages/ou/ouindex-view/main.ts'
,
// 模板来源
template
:
'src/template.html'
,
// 在 dist/index.html 的输出
filename
:
'index.html'
,
// 当使用 title 选项时,
// template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
title
:
'organizational-unit'
,
// 在这个页面中包含的块,默认情况下会包含
// 提取出来的通用 chunk 和 vendor chunk。
// chunks: ['chunk-vendors', 'chunk-common', 'index']
},
},
// 多核打包
parallel
:
os
.
cpus
().
length
>
1
,
chainWebpack
:
(
config
)
=>
{
// 删除自动计算预加载资源
config
.
plugins
.
delete
(
'preload-ouindexview'
)
// 删除预加载资源
config
.
plugins
.
delete
(
'prefetch-ouindexview'
)
config
.
resolve
.
alias
.
set
(
'@ibizsys'
,
resolve
(
'src/ibizsys'
))
.
set
(
'@pages'
,
resolve
(
'src/pages'
))
.
set
(
'@components'
,
resolve
(
'src/components'
))
.
set
(
'@widgets'
,
resolve
(
'src/widgets'
))
.
set
(
'@engine'
,
resolve
(
'src/engine'
))
.
set
(
'@interface'
,
resolve
(
'src/interface'
))
.
set
(
'@locale'
,
resolve
(
'src/locale'
))
.
set
(
'@mock'
,
resolve
(
'src/mock'
))
.
set
(
'@service'
,
resolve
(
'src/service'
))
.
set
(
'@codelist'
,
resolve
(
'src/codelist'
))
},
configureWebpack
:
config
=>
{
let
ForkTsCheckerPlugin
;
if
(
config
.
plugins
.
length
>
0
){
ForkTsCheckerPlugin
=
config
.
plugins
.
find
(
element
=>
{
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
;
}
},
}
\ No newline at end of file
app_web/yarn.lock
0 → 100644
浏览文件 @
b08f2e62
因为 它太大了无法显示 源差异 。您可以改为
查看blob
。
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录