Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_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_gov_platform
Commits
1c9f114a
Commit
1c9f114a
authored
Apr 20, 2023
by
ww-xxy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改预约报表bug
parent
8d2afe0a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
8 deletions
+9
-8
portal-manager-ui/admin/src/views/dataAdmin/components/makeRecordReport/makeRecordReport.vue
...ataAdmin/components/makeRecordReport/makeRecordReport.vue
+4
-4
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/components/FormDetails.vue
...n/components/networkGovernance/components/FormDetails.vue
+4
-3
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/networkForm.vue
...ws/dataAdmin/components/networkGovernance/networkForm.vue
+1
-1
No files found.
portal-manager-ui/admin/src/views/dataAdmin/components/makeRecordReport/makeRecordReport.vue
View file @
1c9f114a
...
@@ -79,28 +79,28 @@
...
@@ -79,28 +79,28 @@
v-if=
"text.status == 0"
v-if=
"text.status == 0"
color=
"#108ee9"
color=
"#108ee9"
>
>
未签到
{{
statusItem
[
text
.
status
]
}}
</a-tag>
</a-tag>
<a-tag
<a-tag
@
click=
"openDetails(text.id)"
@
click=
"openDetails(text.id)"
v-else-if=
"text.status == 1"
v-else-if=
"text.status == 1"
color=
"#2db7f5"
color=
"#2db7f5"
>
>
排队中
{{
statusItem
[
text
.
status
]
}}
</a-tag>
</a-tag>
<a-tag
<a-tag
@
click=
"openDetails(text.id)"
@
click=
"openDetails(text.id)"
v-else-if=
"text.status == 2"
v-else-if=
"text.status == 2"
color=
"#f50"
color=
"#f50"
>
>
超时未取号
{{
statusItem
[
text
.
status
]
}}
</a-tag>
</a-tag>
<a-tag
<a-tag
@
click=
"openDetails(text.id)"
@
click=
"openDetails(text.id)"
v-else-if=
"text.status == 3"
v-else-if=
"text.status == 3"
color=
"red"
color=
"red"
>
>
已取消
{{
statusItem
[
text
.
status
]
}}
</a-tag>
</a-tag>
</
template
>
</
template
>
</a-table>
</a-table>
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/components/FormDetails.vue
View file @
1c9f114a
...
@@ -48,6 +48,7 @@
...
@@ -48,6 +48,7 @@
<img
v-for=
"(item,index) in fromData.url"
:key=
"index"
<img
v-for=
"(item,index) in fromData.url"
:key=
"index"
:src=
"process.env.VUE_APP_API_BASE_URL+item"
>
:src=
"process.env.VUE_APP_API_BASE_URL+item"
>
</div>
</div>
<div
v-else
>
--
</div>
</div>
</div>
<div
class=
"infoDetail"
>
<div
class=
"infoDetail"
>
<div
class=
"card"
>
<div
class=
"card"
>
...
@@ -81,7 +82,7 @@
...
@@ -81,7 +82,7 @@
<div
class=
"cardTitle"
>
<div
class=
"cardTitle"
>
回复内容
<span>
(必填)
</span>
回复内容
<span>
(必填)
</span>
</div>
</div>
<div
class=
"cardContent"
></div>
<div
class=
"cardContent"
>
{{
fromData
.
recontent
}}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -90,9 +91,9 @@
...
@@ -90,9 +91,9 @@
position: 'absolute', right: 0, bottom: 0, width: '100%', borderTop: '1px solid #e9e9e9',
position: 'absolute', right: 0, bottom: 0, width: '100%', borderTop: '1px solid #e9e9e9',
padding: '10px 16px', background: '#fff', textAlign: 'right', zIndex: 1,
padding: '10px 16px', background: '#fff', textAlign: 'right', zIndex: 1,
}">
}">
<a-button
type=
"primary"
@
click=
"onClose"
>
<
!--
<
a-button
type=
"primary"
@
click=
"onClose"
>
确定
确定
</a-button>
</a-button>
-->
<a-button
:style=
"
{ marginRight: '8px' }" @click="onClose">
<a-button
:style=
"
{ marginRight: '8px' }" @click="onClose">
取消
取消
</a-button>
</a-button>
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/networkForm.vue
View file @
1c9f114a
...
@@ -139,7 +139,7 @@ export default {
...
@@ -139,7 +139,7 @@ export default {
{
{
title
:
"
所属部门
"
,
title
:
"
所属部门
"
,
align
:
"
center
"
,
align
:
"
center
"
,
dataIndex
:
"
d
ate
Name
"
,
dataIndex
:
"
d
ept
Name
"
,
},
},
{
{
title
:
"
操作
"
,
title
:
"
操作
"
,
...
...
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