Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
E
exhibition_backstage
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
龙菲
exhibition_backstage
Commits
b945d895
提交
b945d895
authored
9月 14, 2022
作者:
龙菲
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改布展类型和布展性质字典
上级
4a09f2af
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
15 行增加
和
15 行删除
+15
-15
CopyDialog.vue
src/views/display/components/CopyDialog.vue
+1
-1
InfoEditDialog.vue
src/views/display/components/InfoEditDialog.vue
+4
-4
ChStyle.vue
src/views/display/components/templates/ChStyle.vue
+6
-6
NormalStyle.vue
src/views/display/components/templates/NormalStyle.vue
+2
-2
index.vue
src/views/display/index.vue
+2
-2
没有找到文件。
src/views/display/components/CopyDialog.vue
浏览文件 @
b945d895
...
...
@@ -20,7 +20,7 @@
@
handleCurrentChange=
"handleCurrentChange"
>
<!--
<template
v-slot:displayType=
"data"
>
{{
dict
.
display
_t
ype
[
data
.
scope
.
type
]
}}
{{
dict
.
display
T
ype
[
data
.
scope
.
type
]
}}
</
template
>
-->
<
template
v-slot:faceImageUrl=
"data"
>
<img
...
...
src/views/display/components/InfoEditDialog.vue
浏览文件 @
b945d895
...
...
@@ -29,7 +29,7 @@
style=
"width: 100%"
>
<el-option
v-for=
"(value, key) in dicts.display
_t
ype"
v-for=
"(value, key) in dicts.display
T
ype"
:key=
"key"
:label=
"value"
:value=
"key"
...
...
@@ -48,7 +48,7 @@
style=
"width: 100%"
>
<el-option
v-for=
"(value, key) in dicts.display
_c
haracter"
v-for=
"(value, key) in dicts.display
C
haracter"
:key=
"key"
:label=
"value"
:value=
"key"
...
...
@@ -404,8 +404,8 @@ export default {
},
async
created
()
{
await
this
.
$store
.
dispatch
(
"dict/getDictList"
,
[
"display
_t
ype"
,
"display
_c
haracter"
,
"display
T
ype"
,
"display
C
haracter"
,
]);
},
...
...
src/views/display/components/templates/ChStyle.vue
浏览文件 @
b945d895
...
...
@@ -44,19 +44,19 @@
<div
class=
"label"
>
关键词:
</div>
<div
class=
"value"
>
{{
displayDetail
.
keyword
}}
</div>
</el-col>
<el-col
class=
"item"
v-if=
"dicts.display
_t
ype"
>
<el-col
class=
"item"
v-if=
"dicts.display
T
ype"
>
<div
class=
"label"
>
展览类型:
</div>
<div
class=
"value"
>
{{
dicts
.
display
_t
ype
[
displayDetail
.
type
]
}}
{{
dicts
.
display
T
ype
[
displayDetail
.
type
]
}}
</div>
</el-col>
</el-row>
<el-row>
<el-col
class=
"item"
v-if=
"dicts.display
_c
haracter"
>
<el-col
class=
"item"
v-if=
"dicts.display
C
haracter"
>
<div
class=
"label"
>
展览性质:
</div>
<div
class=
"value"
>
{{
dicts
.
display
_c
haracter
[
displayDetail
.
displayCharacter
]
dicts
.
display
C
haracter
[
displayDetail
.
displayCharacter
]
}}
</div>
</el-col>
...
...
@@ -280,8 +280,8 @@ export default {
},
async
mounted
()
{
await
this
.
$store
.
dispatch
(
"dict/getDictList"
,
[
"display
_t
ype"
,
"display
_c
haracter"
,
"display
T
ype"
,
"display
C
haracter"
,
]);
this
.
loadDetail
();
},
...
...
src/views/display/components/templates/NormalStyle.vue
浏览文件 @
b945d895
...
...
@@ -64,13 +64,13 @@
<div
class=
"body-item"
>
<span
class=
"label"
>
展览类型
</span>
<span
class=
"value"
>
{{
dicts
.
display
_t
ype
[
displayDetail
.
type
]
dicts
.
display
T
ype
[
displayDetail
.
type
]
}}
</span>
</div>
<div
class=
"body-item"
>
<span
class=
"label"
>
展览性质
</span>
<span
class=
"value"
>
{{
dicts
.
display
_c
haracter
[
displayDetail
.
displayCharacter
]
dicts
.
display
C
haracter
[
displayDetail
.
displayCharacter
]
}}
</span>
</div>
<div
class=
"body-item"
>
...
...
src/views/display/index.vue
浏览文件 @
b945d895
...
...
@@ -28,7 +28,7 @@
</el-popconfirm>
</
template
>
<
template
v-slot:displayType=
"data"
>
{{
dicts
.
display
_t
ype
[
data
.
scope
.
type
]
}}
{{
dicts
.
display
T
ype
[
data
.
scope
.
type
]
}}
</
template
>
<
template
v-slot:faceImageUrl=
"data"
>
<img
...
...
@@ -201,7 +201,7 @@ export default {
},
async
created
()
{
await
this
.
$store
.
dispatch
(
"dict/getDictList"
,
[
"display
_t
ype"
]);
await
this
.
$store
.
dispatch
(
"dict/getDictList"
,
[
"display
T
ype"
]);
this
.
loadData
();
},
methods
:
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论