Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
950b4ea9
提交
950b4ea9
编写于
12月 13, 2022
作者:
glod-money-money
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新
上级
cf2f28d7
变更
3
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
185 行增加
和
0 行删除
+185
-0
app-register.ts
src/app-register.ts
+2
-0
app-address-cascader.scss
...components/app-address-cascader/app-address-cascader.scss
+0
-0
app-address-cascader.vue
src/components/app-address-cascader/app-address-cascader.vue
+183
-0
未找到文件。
src/app-register.ts
浏览文件 @
950b4ea9
...
...
@@ -142,6 +142,7 @@ import AppGridPagination from './components/app-grid-pagination/app-grid-paginat
import
AppSearchbar
from
'./components/app-searchbar/app-searchbar.vue'
;
import
AppEYUpload
from
'./components/app-ey-upload/app-ey-upload.vue'
;
import
ExtendActionTimeline
from
'./components/extend-action-timeline/extend-action-timeline.vue'
;
import
AppAddressCascader
from
'./components/app-address-cascader/app-address-cascader.vue'
;
// 布局组件
import
AppIndexViewLayoutLeft
from
'./layout/index-view-layout-left/index-view-layout-left.vue'
;
import
AppIndexViewLayoutTop
from
'./layout/index-view-layout-top/index-view-layout-top.vue'
;
...
...
@@ -316,5 +317,6 @@ export const AppComponents = {
v
.
component
(
'app-pickup-view-layout'
,
AppPickUpViewLayout
);
v
.
component
(
'app-mpickup-view-layout'
,
AppMPickUpViewLayout
);
v
.
component
(
'app-pickup-grid-view-layout'
,
AppPickUpGridViewLayout
);
v
.
component
(
'app-address-cascader'
,
AppAddressCascader
);
},
};
\ No newline at end of file
src/components/app-address-cascader/app-address-cascader.scss
0 → 100644
浏览文件 @
950b4ea9
src/components/app-address-cascader/app-address-cascader.vue
0 → 100644
浏览文件 @
950b4ea9
<
template
>
<div
class=
"appAddressCascader"
>
<el-cascader
style=
"width: 100%"
:disabled=
"disabled"
size=
"medium"
v-model=
"CurrentVal"
:options=
"items"
>
</el-cascader>
</div>
</
template
>
<
script
lang=
"ts"
>
import
{
Component
,
Vue
,
Prop
,
Model
,
Watch
}
from
'vue-property-decorator'
;
import
CodeListService
from
'@/codelist/codelist-service'
;
@
Component
({})
export
default
class
AppAddressCascader
extends
Vue
{
/**
* 传入值
* @type {any}
* @memberof AppAddressCascader
*/
@
Prop
()
public
value
?:
any
;
/**
* 是否禁用
* @type {boolean}
* @memberof AppAddressCascader
*/
@
Prop
()
public
disabled
?:
boolean
;
/**
* 代码表标识
*
* @type {string}
* @memberof AppAddressCascader
*/
@
Prop
()
public
tag
?:
string
;
/**
* 局部上下文导航参数
*
* @type {any}
* @memberof AppCheckBox
*/
@
Prop
()
public
localContext
!
:
any
;
/**
* 局部导航参数
*
* @type {any}
* @memberof AppCheckBox
*/
@
Prop
()
public
localParam
!
:
any
;
/**
* 传入表单数据
*
* @type {*}
* @memberof AppCheckBox
*/
@
Prop
()
public
data
?:
any
;
/**
* 视图上下文
*
* @type {*}
* @memberof AppCheckBox
*/
@
Prop
()
public
context
!
:
any
;
/**
* 代码表类型
*
* @type {string}
* @memberof AppAddressCascader
*/
@
Prop
()
public
codelistType
?:
string
;
/**
* 视图参数
*
* @type {*}
* @memberof AppCheckBox
*/
@
Prop
()
public
viewparams
!
:
any
;
/**
* 代码表服务对象
*
* @type {CodeListService}
* @memberof AppAddressCascader
*/
public
codeListService
:
CodeListService
=
new
CodeListService
();
/**
* 当前值
*
* @memberof AppAddressCascader
*/
get
CurrentVal
()
{
return
this
.
value
;
}
/**
* 值变化
*
* @memberof AppAddressCascader
*/
set
CurrentVal
(
val
:
any
)
{
this
.
$emit
(
"change"
,
val
);
}
/**
* 城市数据
*
* @memberof AppAddressCascader
*/
public
items
:
any
=
[];
/**
* 获取树形代码表数据
*
* @memberof AppAddressCascader
*/
public
load
()
{
if
(
this
.
tag
)
{
if
(
Object
.
is
(
this
.
codelistType
,
"STATIC"
))
{
const
codelist
=
this
.
$store
.
getters
.
getCodeList
(
this
.
tag
);
if
(
codelist
)
{
this
.
items
=
[...
JSON
.
parse
(
JSON
.
stringify
(
codelist
.
items
))];
}
else
{
console
.
warn
(
`
${
this
.
tag
}
--代码表配置异常`
);
}
}
else
if
(
Object
.
is
(
this
.
codelistType
,
"DYNAMIC"
))
{
// 公共参数处理
let
data
:
any
=
{};
this
.
handlePublicParams
(
data
);
// 参数处理
let
_context
=
data
.
context
;
let
_param
=
data
.
param
;
this
.
codeListService
.
getItems
(
this
.
tag
,
_context
,
_param
).
then
((
res
:
any
)
=>
{
this
.
items
=
res
;
}).
catch
((
error
:
any
)
=>
{
console
.
error
(
error
);
});
}
}
}
/**
* 公共参数处理
*
* @param {*} arg
* @returns
* @memberof AppCheckBox
*/
public
handlePublicParams
(
arg
:
any
)
{
// 合并表单参数
arg
.
param
=
this
.
viewparams
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
viewparams
))
:
{};
arg
.
context
=
this
.
context
?
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
))
:
{};
// 附加参数处理
if
(
this
.
localContext
&&
Object
.
keys
(
this
.
localContext
).
length
>
0
)
{
let
_context
=
this
.
$util
.
computedNavData
(
this
.
data
,
arg
.
context
,
arg
.
param
,
this
.
localContext
);
Object
.
assign
(
arg
.
context
,
_context
);
}
if
(
this
.
localParam
&&
Object
.
keys
(
this
.
localParam
).
length
>
0
)
{
let
_param
=
this
.
$util
.
computedNavData
(
this
.
data
,
arg
.
param
,
arg
.
param
,
this
.
localParam
);
Object
.
assign
(
arg
.
param
,
_param
);
}
}
/**
* 生命周期
*
* @memberof AppAddressCascader
*/
public
created
()
{
this
.
load
();
}
}
</
script
>
<
style
lang=
"scss"
>
@import
"./app-address-cascader.scss"
;
</
style
>
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录