Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
E
exhibition_backstage
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
龙菲
exhibition_backstage
Commits
fa8f85da
提交
fa8f85da
authored
10月 31, 2022
作者:
龙菲
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复展览bug
上级
06f4f6e5
显示空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
33 行增加
和
19 行删除
+33
-19
InfoEditDialog.vue
src/views/culturalRelic/components/InfoEditDialog.vue
+3
-3
InfoEditDialog.vue
src/views/display/components/InfoEditDialog.vue
+15
-4
index.vue
src/views/login/index.vue
+6
-3
InfoEditDialog.vue
src/views/museum/components/InfoEditDialog.vue
+2
-2
InfoEditDialog.vue
src/views/product/components/InfoEditDialog.vue
+2
-2
DataEditDialog.vue
src/views/role/components/DataEditDialog.vue
+1
-1
InfoEditDialog.vue
src/views/user/components/InfoEditDialog.vue
+2
-2
InfoEditDialog.vue
src/views/virtual/components/InfoEditDialog.vue
+2
-2
没有找到文件。
src/views/culturalRelic/components/InfoEditDialog.vue
浏览文件 @
fa8f85da
...
...
@@ -408,13 +408,13 @@ export default {
value
:
"value"
,
label
:
"label"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
culturalRelicTextureProps
:
{
value
:
"value"
,
label
:
"label"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
dialogVisible
:
false
,
orgTreeData
:
[],
...
...
@@ -422,7 +422,7 @@ export default {
value
:
"id"
,
label
:
"name"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
rules
:
{
name
:
[{
required
:
true
,
message
:
"请输入文物名称"
,
trigger
:
"blur"
}],
...
...
src/views/display/components/InfoEditDialog.vue
浏览文件 @
fa8f85da
...
...
@@ -351,6 +351,7 @@ import { themeTypeOptions } from "../contants";
import
{
deleteFiles
}
from
"@/api/file"
;
import
VueQuillEditor
from
"@/components/VueQuillEditor"
;
import
{
getVirtualListPer
}
from
"@/api/vitual"
;
export
default
{
name
:
"InfoEditDialog"
,
components
:
{
...
...
@@ -561,13 +562,13 @@ export default {
value
:
"id"
,
label
:
"name"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
culturalRegionProps
:
{
value
:
"code"
,
label
:
"name"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
regionTree
:
[],
rules
:
{
...
...
@@ -890,8 +891,18 @@ export default {
}
}
}
let
crIdArr
=
unit
.
crIds
;
unit
.
crIds
=
crIdArr
?
crIdArr
.
join
(
","
)
:
""
;
let
crIdArr
=
JSON
.
parse
(
JSON
.
stringify
(
unit
.
crIds
));
if
(
crIdArr
)
{
if
(
crIdArr
instanceof
Array
)
{
unit
.
crIds
=
crIdArr
.
join
(
","
);
}
else
if
(
crIdArr
instanceof
String
)
{
unit
.
crIds
=
[
crIdArr
];
}
}
else
{
unit
.
crIds
=
""
;
}
var
deleteArr
=
[
"euId"
];
deleteArr
.
forEach
((
i
)
=>
{
if
(
unit
[
i
])
{
...
...
src/views/login/index.vue
浏览文件 @
fa8f85da
...
...
@@ -204,6 +204,7 @@ $cursor: #fff;
@supports
(
-webkit-mask
:
none
)
and
(
not
(
cater-color
:
$
cursor
))
{
.login-container
.el-input
input
{
color
:
$cursor
;
}
}
...
...
@@ -215,7 +216,7 @@ $cursor: #fff;
width
:
85%
;
input
{
background
:
transparent
;
background
:
transparent
!
important
;
border
:
0px
;
-webkit-appearance
:
none
;
border-radius
:
0px
;
...
...
@@ -226,8 +227,10 @@ $cursor: #fff;
// caret-color: $cursor;
caret-color
:
#333
;
&
:
-
webkit-autofill
{
box-shadow
:
0
0
0px
1000px
$bg
inset
!
important
;
-webkit-text-fill-color
:
$cursor
!
important
;
// box-shadow: 0 0 0px 1000px $bg inset !important;
box-shadow
:
0
0
0px
1000px
transparent
inset
!
important
;
// -webkit-text-fill-color: $cursor !important;
}
}
}
...
...
src/views/museum/components/InfoEditDialog.vue
浏览文件 @
fa8f85da
...
...
@@ -201,13 +201,13 @@ export default {
value
:
"id"
,
label
:
"name"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
regionOptionProps
:
{
value
:
"code"
,
label
:
"name"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
regionTree
:
[],
status
:
true
,
...
...
src/views/product/components/InfoEditDialog.vue
浏览文件 @
fa8f85da
...
...
@@ -179,13 +179,13 @@ export default {
value
:
"id"
,
label
:
"name"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
regionOptionProps
:
{
value
:
"code"
,
label
:
"name"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
regionTree
:
[],
status
:
true
,
...
...
src/views/role/components/DataEditDialog.vue
浏览文件 @
fa8f85da
...
...
@@ -103,7 +103,7 @@ export default {
value
:
"id"
,
label
:
"name"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
depts
:
[],
//自定义部门
dataScopeData
:
null
,
...
...
src/views/user/components/InfoEditDialog.vue
浏览文件 @
fa8f85da
...
...
@@ -222,13 +222,13 @@ export default {
value
:
"id"
,
label
:
"label"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
culturalRegionProps
:
{
value
:
"code"
,
label
:
"name"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
regionTree
:
[],
rules
:
{
...
...
src/views/virtual/components/InfoEditDialog.vue
浏览文件 @
fa8f85da
...
...
@@ -194,13 +194,13 @@ export default {
value
:
"id"
,
label
:
"name"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
regionOptionProps
:
{
value
:
"code"
,
label
:
"name"
,
children
:
"children"
,
checkStrictly
:
true
,
//单选选择任意一级选项
},
regionTree
:
[],
status
:
true
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论