Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzwf
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzwf
提交
b965b5c0
提交
b965b5c0
编写于
12月 07, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zhouweidong 部署微服务应用 [ibz-wf,统一工作流]
上级
a903759d
变更
6
展开全部
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
5493 行增加
和
4347 行删除
+5493
-4347
package.json
app_web/package.json
+0
-2
dropdown-list.vue
app_web/src/components/dropdown-list/dropdown-list.vue
+54
-22
yarn.lock
app_web/yarn.lock
+5418
-4321
config.xml
config.xml
+5
-0
Dockerfile
ibzwf-app/ibzwf-app-web/src/main/docker/Dockerfile
+1
-1
ibzwf-app-web.yaml
ibzwf-app/ibzwf-app-web/src/main/docker/ibzwf-app-web.yaml
+15
-1
未找到文件。
app_web/package.json
浏览文件 @
b965b5c0
...
@@ -53,10 +53,8 @@
...
@@ -53,10 +53,8 @@
"@types/mockjs"
:
"^1.0.2"
,
"@types/mockjs"
:
"^1.0.2"
,
"@types/qs"
:
"^6.9.0"
,
"@types/qs"
:
"^6.9.0"
,
"@vue/cli-plugin-babel"
:
"^4.1.0"
,
"@vue/cli-plugin-babel"
:
"^4.1.0"
,
"@vue/cli-plugin-e2e-cypress"
:
"^4.1.0"
,
"@vue/cli-plugin-router"
:
"^4.1.0"
,
"@vue/cli-plugin-router"
:
"^4.1.0"
,
"@vue/cli-plugin-typescript"
:
"^4.1.0"
,
"@vue/cli-plugin-typescript"
:
"^4.1.0"
,
"@vue/cli-plugin-unit-jest"
:
"^4.1.0"
,
"@vue/cli-plugin-vuex"
:
"^4.1.0"
,
"@vue/cli-plugin-vuex"
:
"^4.1.0"
,
"@vue/cli-service"
:
"^4.1.0"
,
"@vue/cli-service"
:
"^4.1.0"
,
"@vue/test-utils"
:
"1.0.0-beta.29"
,
"@vue/test-utils"
:
"1.0.0-beta.29"
,
...
...
app_web/src/components/dropdown-list/dropdown-list.vue
浏览文件 @
b965b5c0
...
@@ -170,10 +170,20 @@ export default class DropDownList extends Vue {
...
@@ -170,10 +170,20 @@ export default class DropDownList extends Vue {
/**
/**
* 属性类型
* 属性类型
* @type {string}
*
* @type {'string' | 'number'}
* @memberof DropDownList
* @memberof DropDownList
*/
*/
@
Prop
()
public
valueType
?:
string
;
@
Prop
({
default
:
'string'
})
public
valueType
!
:
'string'
|
'number'
;
/**
* 选择实际值
*
* @type {*}
* @memberof DropDownList
*/
public
value
:
any
=
null
;
/**
/**
* 计算属性(当前值)
* 计算属性(当前值)
...
@@ -204,7 +214,7 @@ export default class DropDownList extends Vue {
...
@@ -204,7 +214,7 @@ export default class DropDownList extends Vue {
})
})
return
JSON
.
stringify
([
result
]);
return
JSON
.
stringify
([
result
]);
}
}
return
this
.
itemV
alue
;
return
this
.
v
alue
;
}
}
/**
/**
...
@@ -263,10 +273,12 @@ export default class DropDownList extends Vue {
...
@@ -263,10 +273,12 @@ export default class DropDownList extends Vue {
this
.
formStateEvent
=
this
.
formState
.
subscribe
(({
type
,
data
})
=>
{
this
.
formStateEvent
=
this
.
formState
.
subscribe
(({
type
,
data
})
=>
{
if
(
Object
.
is
(
'load'
,
type
))
{
if
(
Object
.
is
(
'load'
,
type
))
{
this
.
loadData
();
this
.
loadData
();
this
.
readyValue
();
}
}
});
});
}
}
this
.
loadData
();
this
.
loadData
();
this
.
readyValue
();
}
}
/**
/**
...
@@ -299,6 +311,29 @@ export default class DropDownList extends Vue {
...
@@ -299,6 +311,29 @@ export default class DropDownList extends Vue {
}
}
}
}
/**
* 准备值
*
* @memberof DropDownList
*/
public
readyValue
()
{
if
(
this
.
itemValue
==
null
)
{
this
.
value
=
null
;
return
;
}
if
(
this
.
$util
.
typeOf
(
this
.
itemValue
)
===
this
.
valueType
)
{
this
.
value
=
this
.
itemValue
;
}
else
if
(
this
.
valueType
===
'number'
)
{
if
(
this
.
itemValue
.
indexOf
(
'.'
)
===
-
1
)
{
this
.
value
=
parseInt
(
this
.
itemValue
);
}
else
{
this
.
value
=
parseFloat
(
this
.
itemValue
);
}
}
else
{
this
.
value
=
this
.
itemValue
.
toString
();
}
}
/**
/**
* 下拉点击事件
* 下拉点击事件
*
*
...
@@ -331,15 +366,14 @@ export default class DropDownList extends Vue {
...
@@ -331,15 +366,14 @@ export default class DropDownList extends Vue {
* @memberof DropDownList
* @memberof DropDownList
*/
*/
public
formatCodeList
(
items
:
Array
<
any
>
){
public
formatCodeList
(
items
:
Array
<
any
>
){
let
matching
:
boolean
=
tru
e
;
let
matching
:
boolean
=
fals
e
;
this
.
items
=
[];
this
.
items
=
[];
try
{
try
{
if
(
this
.
valueType
){
items
.
forEach
((
item
:
any
)
=>
{
items
.
forEach
((
item
:
any
)
=>
{
const
type
=
this
.
$util
.
typeOf
(
item
.
value
);
const
type
=
this
.
$util
.
typeOf
(
item
.
value
);
if
(
type
!=
this
.
valueType
){
if
(
type
!=
this
.
valueType
){
matching
=
fals
e
;
matching
=
tru
e
;
if
(
type
==
'number'
){
if
(
type
=
==
'number'
){
item
.
value
=
item
.
value
.
toString
();
item
.
value
=
item
.
value
.
toString
();
}
else
{
}
else
{
if
(
item
.
value
.
indexOf
(
'.'
)
==
-
1
){
if
(
item
.
value
.
indexOf
(
'.'
)
==
-
1
){
...
@@ -351,12 +385,10 @@ export default class DropDownList extends Vue {
...
@@ -351,12 +385,10 @@ export default class DropDownList extends Vue {
}
}
this
.
items
.
push
(
item
);
this
.
items
.
push
(
item
);
});
});
if
(
!
matching
){
if
(
matching
){
console
.
warn
(
`代码表
${
this
.
tag
}
值类型和属性类型不匹配,已自动强制转换,请修正代码表值类型和属性类型匹配`
);
console
.
warn
(
`代码表
${
this
.
tag
}
值类型和属性类型不匹配,已自动强制转换,请修正代码表值类型和属性类型匹配`
);
}
}
}
else
{
this
.
items
=
items
;
}
}
catch
(
error
){
}
catch
(
error
){
console
.
warn
(
'代码表值类型和属性类型不匹配,自动强制转换异常,请修正代码表值类型和属性类型匹配'
);
console
.
warn
(
'代码表值类型和属性类型不匹配,自动强制转换异常,请修正代码表值类型和属性类型匹配'
);
}
}
...
...
app_web/yarn.lock
浏览文件 @
b965b5c0
此差异已折叠。
点击以展开。
config.xml
浏览文件 @
b965b5c0
...
@@ -37,6 +37,11 @@
...
@@ -37,6 +37,11 @@
git clone -b master $para2 ibzwf/
git clone -b master $para2 ibzwf/
export NODE_OPTIONS=--max-old-space-size=4096
export NODE_OPTIONS=--max-old-space-size=4096
cd ibzwf/
cd ibzwf/
mvn clean package -Pweb
cd ibzwf-app/ibzwf-app-web
mvn -Pweb docker:build
mvn -Pweb docker:push
docker -H $para1 stack deploy --compose-file=src/main/docker/ibzwf-app-web.yaml ibzlab-rt --with-registry-auth
</command>
</command>
</hudson.tasks.Shell>
</hudson.tasks.Shell>
</builders>
</builders>
...
...
ibzwf-app/ibzwf-app-web/src/main/docker/Dockerfile
浏览文件 @
b965b5c0
...
@@ -12,6 +12,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \
...
@@ -12,6 +12,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \
sleep ${IBIZ_SLEEP} && \
sleep ${IBIZ_SLEEP} && \
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /ibzwf-app-web.jar
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /ibzwf-app-web.jar
EXPOSE
8080
EXPOSE
30003
ADD
ibzwf-app-web.jar /ibzwf-app-web.jar
ADD
ibzwf-app-web.jar /ibzwf-app-web.jar
ibzwf-app/ibzwf-app-web/src/main/docker/ibzwf-app-web.yaml
浏览文件 @
b965b5c0
...
@@ -3,9 +3,23 @@ services:
...
@@ -3,9 +3,23 @@ services:
ibzwf-app-web
:
ibzwf-app-web
:
image
:
registry.cn-shanghai.aliyuncs.com/ibizsys/ibzwf-app-web:latest
image
:
registry.cn-shanghai.aliyuncs.com/ibizsys/ibzwf-app-web:latest
ports
:
ports
:
-
"
8080:8080
"
-
"
30003:30003
"
networks
:
networks
:
-
agent_network
-
agent_network
environment
:
-
SPRING_CLOUD_NACOS_DISCOVERY_IP=172.16.180.237
-
SERVER_PORT=30003
-
SPRING_CLOUD_NACOS_DISCOVERY_SERVER-ADDR=172.16.100.243:8848
-
SPRING_REDIS_HOST=172.16.100.243
-
SPRING_REDIS_PORT=6379
-
SPRING_REDIS_DATABASE=0
-
SPRING_DATASOURCE_USERNAME=a_A_5d9d78509
-
SPRING_DATASOURCE_PASSWORD=@6dEfb3@
-
SPRING_DATASOURCE_URL=jdbc:mysql://172.16.180.232:3306/a_A_5d9d78509?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&useOldAliasMetadataBehavior=true&allowMultiQueries=true
-
SPRING_DATASOURCE_DRIVER-CLASS-NAME=com.mysql.jdbc.Driver
-
SPRING_DATASOURCE_DEFAULTSCHEMA=a_A_5d9d78509
-
NACOS=172.16.100.243:8848
-
SPRING_CLOUD_NACOS_DISCOVERY_GROUP=ibizdev
deploy
:
deploy
:
resources
:
resources
:
limits
:
limits
:
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录