Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart-office-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart-office-platform
Commits
ef6a16b7
Commit
ef6a16b7
authored
Dec 14, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
26d69b95
63e569e1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
smart-office-manager-ui/admin/src/views/notice/list.vue
smart-office-manager-ui/admin/src/views/notice/list.vue
+5
-0
smart-office-manager-ui/admin/src/views/room/list.vue
smart-office-manager-ui/admin/src/views/room/list.vue
+9
-1
No files found.
smart-office-manager-ui/admin/src/views/notice/list.vue
View file @
ef6a16b7
...
...
@@ -39,6 +39,11 @@
return
{
config
:
{
search
:
[
{
name
:
'
title
'
,
type
:
'
text
'
,
label
:
'
标题
'
,
},
],
columns
:
[
{
type
:
"
selection
"
,
width
:
60
},
...
...
smart-office-manager-ui/admin/src/views/room/list.vue
View file @
ef6a16b7
...
...
@@ -80,7 +80,15 @@ export default {
formatter
:
(
row
)
=>
(
row
.
roomCode
?
row
.
roomCode
:
"
--
"
),
},
{
label
:
"
房间类型
"
,
prop
:
"
roomType
"
,
formatter
:
this
.
formatter
},
{
label
:
"
房间类型
"
,
prop
:
"
roomType
"
,
formatter
:
(
row
)
=>
{
console
.
log
(
this
.
tableData
.
dict
.
roomType
);
if
(
this
.
tableData
.
dict
.
roomType
){
return
(
this
.
tableData
.
dict
.
roomType
[
row
.
roomType
]?
this
.
tableData
.
dict
.
roomType
[
row
.
roomType
]:
'
--
'
)
}
else
{
return
'
--
'
}
}
},
{
label
:
"
绑定设备
"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment