Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
1c6b4c86
提交
1c6b4c86
编写于
12月 03, 2020
作者:
Mosher
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
新增下拉列表框对数值类型的处理逻辑
上级
7db66caf
变更
1
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
54 行增加
和
22 行删除
+54
-22
dropdown-list.vue
src/components/dropdown-list/dropdown-list.vue
+54
-22
未找到文件。
src/components/dropdown-list/dropdown-list.vue
浏览文件 @
1c6b4c86
...
...
@@ -170,10 +170,20 @@ export default class DropDownList extends Vue {
/**
* 属性类型
* @type {string}
*
* @type {'string' | 'number'}
* @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 {
})
return
JSON
.
stringify
([
result
]);
}
return
this
.
itemV
alue
;
return
this
.
v
alue
;
}
/**
...
...
@@ -263,10 +273,12 @@ export default class DropDownList extends Vue {
this
.
formStateEvent
=
this
.
formState
.
subscribe
(({
type
,
data
})
=>
{
if
(
Object
.
is
(
'load'
,
type
))
{
this
.
loadData
();
this
.
readyValue
();
}
});
}
this
.
loadData
();
this
.
readyValue
();
}
/**
...
...
@@ -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 {
* @memberof DropDownList
*/
public
formatCodeList
(
items
:
Array
<
any
>
){
let
matching
:
boolean
=
tru
e
;
let
matching
:
boolean
=
fals
e
;
this
.
items
=
[];
try
{
if
(
this
.
valueType
){
items
.
forEach
((
item
:
any
)
=>
{
const
type
=
this
.
$util
.
typeOf
(
item
.
value
);
if
(
type
!=
this
.
valueType
){
matching
=
fals
e
;
if
(
type
==
'number'
){
matching
=
tru
e
;
if
(
type
=
==
'number'
){
item
.
value
=
item
.
value
.
toString
();
}
else
{
if
(
item
.
value
.
indexOf
(
'.'
)
==
-
1
){
...
...
@@ -351,12 +385,10 @@ export default class DropDownList extends Vue {
}
this
.
items
.
push
(
item
);
});
if
(
!
matching
){
if
(
matching
){
console
.
warn
(
`代码表
${
this
.
tag
}
值类型和属性类型不匹配,已自动强制转换,请修正代码表值类型和属性类型匹配`
);
}
}
else
{
this
.
items
=
items
;
}
}
catch
(
error
){
console
.
warn
(
'代码表值类型和属性类型不匹配,自动强制转换异常,请修正代码表值类型和属性类型匹配'
);
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录