Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
28d62ed4
提交
28d62ed4
编写于
11月 04, 2022
作者:
glod-money-money
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:更新
上级
c3d3c2a3
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
93 行增加
和
53 行删除
+93
-53
app-field-image-dynamic.vue
...media/app-field-image-dynamic/app-field-image-dynamic.vue
+23
-19
app-rawitem-carousel.vue
...ement/media/app-rawitem-carousel/app-rawitem-carousel.vue
+19
-13
app-rawitem-image.vue
...out-element/media/app-rawitem-image/app-rawitem-image.vue
+22
-15
app-rawitem-video.vue
...out-element/media/app-rawitem-video/app-rawitem-video.vue
+29
-6
未找到文件。
src/components/layout-element/media/app-field-image-dynamic/app-field-image-dynamic.vue
浏览文件 @
28d62ed4
<
template
>
<div
:class=
"
{'app-field-image-dynamic':true,[`${cssClass}`]:cssClass?true:false}
">
<img
:style=
"
cssStyle
"
:src=
"imgUrl"
/>
<div
:class=
"
['app-field-image-dynamic', model.sysCss]"
:style=
"containerStyle
"
>
<img
:style=
"
model.sysCss
"
:src=
"imgUrl"
/>
</div>
</
template
>
<
script
lang =
'ts'
>
import
{
Vue
,
Component
,
Prop
,
Watch
,
Provide
}
from
'vue-property-decorator'
;
import
{
ImgurlBase64
}
from
'@/utils'
;
import
{
Environment
}
from
"@/environments/environment"
;
import
{
PanelFieldModel
}
from
'@/model/panel-detail'
;
@
Component
({})
export
default
class
AppFieldImageDynamic
extends
Vue
{
...
...
@@ -14,57 +15,60 @@ export default class AppFieldImageDynamic extends Vue {
* 输入值
*
* @type {string}
* @memberof App
RawItemImage
* @memberof App
FieldImageDynamic
*/
@
Prop
()
public
value
:
any
;
/**
*
样式
*
模型
*
* @type {string}
* @memberof AppRawItemImage
*/
@
Prop
()
public
cssStyle
?:
string
;
/**
* 样式表类名
*
* @type {string}
* @memberof AppRawItemImage
* @type {*}
* @memberof AppFieldImageDynamic
*/
@
Prop
({
default
:
''
})
public
cssClass
?:
string
;
@
Prop
()
public
model
!
:
PanelFieldModel
;
/**
* 动态图片路径
*
* @memberof App
PresetRawitem
* @memberof App
FieldImageDynamic
*/
protected
dynaImgUrl
:
string
=
''
;
/**
* 下载文件路径
*
* @memberof App
PresetRawitem
* @memberof App
FieldImageDynamic
*/
public
downloadUrl
=
Environment
.
ExportFile
;
/**
* 容器样式
*
* @type {any}
* @memberof AppFieldImageDynamic
*/
public
containerStyle
:
any
=
null
;
/**
* 图片路径
*
* @memberof App
PresetRawitem
* @memberof App
FieldImageDynamic
*/
get
imgUrl
():
string
{
return
this
.
dynaImgUrl
;
}
created
()
{
if
(
this
.
model
)
{
this
.
containerStyle
=
this
.
model
.
getElementStyle
();
}
this
.
handleDynaImg
();
}
/**
* 处理动态图片
*
* @memberof App
PresetRawitem
* @memberof App
FieldImageDynamic
*/
protected
handleDynaImg
()
{
if
(
this
.
value
&&
typeof
this
.
value
==
"string"
)
{
...
...
src/components/layout-element/media/app-rawitem-carousel/app-rawitem-carousel.vue
浏览文件 @
28d62ed4
<
template
>
<div
class=
"app-rawitem-carousel"
>
<div
:class=
"['app-rawitem-carousel',model.sysCss]"
:style=
"containerStyle"
>
<el-carousel
class=
"carsouel-container"
height=
"150px"
indicator-position=
"outside"
...
...
@@ -16,6 +16,7 @@
</div>
</
template
>
<
script
lang=
'ts'
>
import
{
PanelFieldModel
}
from
'@/model/panel-detail'
;
import
{
Component
,
Vue
,
Prop
,
Watch
}
from
'vue-property-decorator'
;
@
Component
({})
export
default
class
AppCarousel
extends
Vue
{
...
...
@@ -23,7 +24,7 @@ export default class AppCarousel extends Vue {
* 父项所有数据
*
* @type {*}
* @memberof App
Preset
Carousel
* @memberof AppCarousel
*/
@
Prop
()
public
data
?:
any
;
...
...
@@ -35,18 +36,12 @@ export default class AppCarousel extends Vue {
@
Prop
()
public
value
?:
any
;
/**
* @description 轮播图样式
* @param {*}
* 模型
*
* @type {*}
* @memberof AppCarousel
*/
@
Prop
()
public
cssStyle
?:
any
;
/**
* @description 样式表
* @param {*}
* @memberof AppCarousel
*/
@
Prop
()
public
cssClass
?:
any
;
@
Prop
()
public
model
!
:
PanelFieldModel
;
/**
* 名称
...
...
@@ -77,6 +72,14 @@ export default class AppCarousel extends Vue {
*/
public
swipeConfig
:
any
=
{};
/**
* 容器样式
*
* @type {any}
* @memberof AppCarousel
*/
public
containerStyle
:
any
=
null
;
/**
* data值变化
*
...
...
@@ -87,7 +90,7 @@ export default class AppCarousel extends Vue {
@
Watch
(
'value'
,
{
immediate
:
true
,
deep
:
true
})
public
onDataChange
(
newVal
:
any
,
oldVal
:
any
)
{
if
(
newVal
)
{
//
this.handleSwipData(newVal);
this
.
handleSwipData
(
newVal
);
}
}
...
...
@@ -96,6 +99,9 @@ export default class AppCarousel extends Vue {
* @memberof AppCarousel
*/
created
()
{
if
(
this
.
model
)
{
this
.
containerStyle
=
this
.
model
.
getElementStyle
();
}
//处理轮播图-动态数据
if
(
this
.
type
===
"FIELD_CAROUSEL"
)
{
if
(
this
.
value
&&
typeof
this
.
value
===
'string'
)
{
...
...
src/components/layout-element/media/app-rawitem-image/app-rawitem-image.vue
浏览文件 @
28d62ed4
<
template
>
<div
class=
'app-rawitem-image'
>
<img
:style=
"cssStyle"
v-if=
"imgUrl"
:src=
"imgUrl"
/>
<i
:style=
"cssStyle"
v-else
:class=
"imageClass ? imageClass : ''"
></i>
<div
:class=
"['app-rawitem-image', model.sysCss]"
:style=
"containerStyle"
>
<img
v-if=
"imgUrl"
:src=
"imgUrl"
/>
<i
v-else
:class=
"imageClass ? imageClass : ''"
></i>
</div>
</
template
>
<
script
lang =
'ts'
>
import
{
PanelFieldModel
}
from
'@/model/panel-detail'
;
import
{
Vue
,
Component
,
Prop
,
Watch
,
Provide
}
from
'vue-property-decorator'
;
@
Component
({})
export
default
class
AppRawItemImage
extends
Vue
{
/**
*
样式
*
模型
*
* @type {
string
}
* @type {
*
}
* @memberof AppRawItemImage
*/
@
Prop
()
public
cssStyle
:
any
;
@
Prop
()
public
model
!
:
PanelFieldModel
;
/**
*
样式表
*
图片地址
*
* @type {string}
* @memberof AppRawItemImage
*/
@
Prop
()
public
cssClass
:
any
;
@
Prop
()
public
imgUrl
?:
string
;
/**
* 图
片地址
* 图
标
*
* @type {string}
* @memberof AppRawItemImage
*/
@
Prop
()
public
im
gUrl
?:
string
;
@
Prop
()
public
im
ageClass
?:
string
;
/**
*
图标
*
容器样式
*
* @type {
string
}
* @type {
any
}
* @memberof AppRawItemImage
*/
@
Prop
()
public
imageClass
?:
string
;
public
containerStyle
:
any
=
null
;
created
()
{
if
(
this
.
model
)
{
this
.
containerStyle
=
this
.
model
.
getElementStyle
();
}
}
}
</
script
>
<
style
lang =
"less"
>
...
...
src/components/layout-element/media/app-rawitem-video/app-rawitem-video.vue
浏览文件 @
28d62ed4
...
...
@@ -10,19 +10,41 @@
</
template
>
<
script
lang=
"ts"
>
import
{
PanelFieldModel
}
from
'@/model/panel-detail'
;
import
{
Util
}
from
'@/utils'
;
import
{
Component
,
Vue
,
Prop
}
from
'vue-property-decorator'
;
@
Component
({})
export
default
class
AppVideo
extends
Vue
{
export
default
class
AppRawItemVideo
extends
Vue
{
/**
* 视频播放数据
* @memberof AppRawItemVideo
*/
@
Prop
()
public
videoParmas
?:
any
;
/**
* 模型
*
* @type {*}
* @memberof @memberof AppRawItemVideo
*/
@
Prop
()
public
model
!
:
PanelFieldModel
;
/**
* 播放器唯一标识
* @memberof AppRawItemVideo
*/
public
uuid
:
string
=
Util
.
createUUID
();
/**
* 视频播放数据
* 容器样式
*
* @type {any}
* @memberof AppRawItemVideo
*/
@
Prop
()
public
videoParmas
?:
any
;
public
containerStyle
:
any
=
null
;
//视频播放参数
public
playerParams
=
{
...
...
@@ -39,6 +61,7 @@ export default class AppVideo extends Vue {
/**
* 生命周期
* @memberof AppRawItemVideo
*/
public
mounted
()
{
this
.
handleStaticVideo
();
...
...
@@ -47,15 +70,15 @@ export default class AppVideo extends Vue {
/**
* 处理静态视频播放
*
* @memberof App
PresetRawitem
* @memberof App
RawItemVideo
*/
protected
handleStaticVideo
()
{
if
(
this
.
videoParmas
&&
this
.
videoParmas
.
length
>
0
)
{
const
rawParams
:
any
=
{};
const
rawParams
:
any
=
{};
this
.
videoParmas
.
forEach
((
param
:
any
)
=>
{
rawParams
[
param
.
key
]
=
param
.
value
;
})
Object
.
assign
(
this
.
playerParams
,
rawParams
);
Object
.
assign
(
this
.
playerParams
,
rawParams
);
}
}
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录