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
7a631e96
Commit
7a631e96
authored
Sep 04, 2023
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
perf:修改报表页面
parent
3a075924
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
30 additions
and
0 deletions
+30
-0
portal-manager-ui/admin/src/views/dataAdmin/components/Impossible/index.vue
...admin/src/views/dataAdmin/components/Impossible/index.vue
+2
-0
portal-manager-ui/admin/src/views/dataAdmin/components/evaluationRecordReport/departmentEvaluation.vue
...omponents/evaluationRecordReport/departmentEvaluation.vue
+2
-0
portal-manager-ui/admin/src/views/dataAdmin/components/evaluationRecordReport/matterEvaluation.vue
...in/components/evaluationRecordReport/matterEvaluation.vue
+2
-0
portal-manager-ui/admin/src/views/dataAdmin/components/evaluationRecordReport/windowEvaluation.vue
...in/components/evaluationRecordReport/windowEvaluation.vue
+2
-0
portal-manager-ui/admin/src/views/dataAdmin/components/makeRecordReport/makeRecordReport.vue
...ataAdmin/components/makeRecordReport/makeRecordReport.vue
+2
-0
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/letterRecordForm.vue
...taAdmin/components/networkGovernance/letterRecordForm.vue
+2
-0
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/networkForm.vue
...ws/dataAdmin/components/networkGovernance/networkForm.vue
+2
-0
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/callRecord.vue
...n/src/views/dataAdmin/components/queueCall/callRecord.vue
+8
-0
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/queueRecord.vue
.../src/views/dataAdmin/components/queueCall/queueRecord.vue
+8
-0
No files found.
portal-manager-ui/admin/src/views/dataAdmin/components/Impossible/index.vue
View file @
7a631e96
...
...
@@ -308,6 +308,7 @@ export default {
// 查看信息
checkInfo
(
id
)
{
this
.
loading
=
true
;
getImpossibleInfo
({
id
:
id
,
}).
then
((
res
)
=>
{
...
...
@@ -316,6 +317,7 @@ export default {
this
.
$refs
.
FormDetails
.
fromData
=
data
;
this
.
visible
=
true
;
}
this
.
loading
=
false
;
});
},
},
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/evaluationRecordReport/departmentEvaluation.vue
View file @
7a631e96
...
...
@@ -383,6 +383,7 @@ export default {
},
// 详情
async
checkInfo
(
id
)
{
this
.
loading
=
true
;
let
res
=
await
getEvaData
({
id
});
if
(
res
.
code
==
1
)
{
let
{
data
}
=
res
;
...
...
@@ -390,6 +391,7 @@ export default {
this
.
detailsInfo
=
data
;
this
.
detailsVisible
=
true
;
}
this
.
loading
=
false
;
},
// 删除
handleDel
(
id
)
{
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/evaluationRecordReport/matterEvaluation.vue
View file @
7a631e96
...
...
@@ -380,12 +380,14 @@ export default {
},
// 详情
async
checkInfo
(
id
)
{
this
.
loading
=
true
;
let
res
=
await
getQueEvaData
({
id
});
if
(
res
.
code
==
1
)
{
let
{
data
}
=
res
;
this
.
detailsInfo
=
data
;
this
.
detailsVisible
=
true
;
}
this
.
loading
=
false
;
},
// 删除
handleDel
(
id
)
{
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/evaluationRecordReport/windowEvaluation.vue
View file @
7a631e96
...
...
@@ -381,6 +381,7 @@ export default {
},
// 详情
async
checkInfo
(
id
)
{
this
.
loading
=
true
;
let
res
=
await
getEvaData
({
id
});
if
(
res
.
code
==
1
)
{
let
{
data
}
=
res
;
...
...
@@ -388,6 +389,7 @@ export default {
this
.
detailsInfo
=
data
;
this
.
detailsVisible
=
true
;
}
this
.
loading
=
false
;
},
// 删除
handleDel
(
id
)
{
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/makeRecordReport/makeRecordReport.vue
View file @
7a631e96
...
...
@@ -383,11 +383,13 @@ export default {
},
// 详情
async
checkInfo
({
id
})
{
this
.
loading
=
true
;
let
res
=
await
getOrderinfo
({
id
});
if
(
res
.
code
==
1
)
{
this
.
detailsInfo
=
res
.
data
;
this
.
visible
=
true
;
}
this
.
loading
=
false
;
},
},
};
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/letterRecordForm.vue
View file @
7a631e96
...
...
@@ -343,12 +343,14 @@ export default {
},
// 查看信息
checkInfo
(
id
)
{
this
.
loading
=
true
;
letterInfo
({
id
}).
then
((
res
)
=>
{
if
(
res
.
code
==
1
)
{
let
{
data
}
=
res
;
this
.
$refs
.
FormDetails
.
fromData
=
data
;
this
.
visible
=
true
;
}
this
.
loading
=
false
;
});
},
},
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/networkForm.vue
View file @
7a631e96
...
...
@@ -377,6 +377,7 @@ export default {
// 查看信息
checkInfo
(
id
)
{
this
.
loading
=
true
;
getWLLZInfo
({
id
:
id
,
}).
then
((
res
)
=>
{
...
...
@@ -385,6 +386,7 @@ export default {
this
.
$refs
.
FormDetails
.
fromData
=
data
;
this
.
visible
=
true
;
}
this
.
loading
=
false
;
});
},
},
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/callRecord.vue
View file @
7a631e96
...
...
@@ -372,6 +372,7 @@ export default {
// 查看用户信息
async
checkUser
(
row
)
{
this
.
loading
=
true
;
let
res
=
await
getPeopleanalyse
({
idcard
:
row
.
people_idcard
,
peopleid
:
row
.
peopleid
,
...
...
@@ -381,11 +382,13 @@ export default {
let
{
data
}
=
res
;
this
.
userInfo
=
{
...
row
,
...
data
};
}
this
.
loading
=
false
;
this
.
userInfoVisible
=
true
;
},
// 查看业务信息
async
checkBusiness
(
row
)
{
this
.
loading
=
true
;
let
res
=
await
getBusinessEvent
({
businessid
:
row
.
businessid
,
time
:
this
.
searchForm
.
time
,
...
...
@@ -397,10 +400,12 @@ export default {
this
.
businessInfo
=
data
;
this
.
analysisVisible
=
true
;
}
this
.
loading
=
false
;
},
// 查看工作人员
async
checkWorkman
(
id
)
{
this
.
loading
=
true
;
let
res
=
await
getWorkmananalyse
({
workmanid
:
id
,
time
:
this
.
searchForm
.
time
,
...
...
@@ -410,11 +415,13 @@ export default {
});
let
{
data
}
=
res
;
this
.
workerInfo
=
{
...
data
,
...
result
.
data
};
this
.
loading
=
false
;
this
.
workerInfoVisible
=
true
;
},
// 查看详细信息
async
checkInfo
(
id
)
{
this
.
loading
=
true
;
let
res
=
await
getQueueInfo
({
id
,
});
...
...
@@ -423,6 +430,7 @@ export default {
this
.
detailsInfo
=
data
;
this
.
detailsVisible
=
true
;
}
this
.
loading
=
false
;
},
// 勾选表格
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/queueRecord.vue
View file @
7a631e96
...
...
@@ -365,6 +365,7 @@ export default {
// 查看用户信息
async
checkUser
(
row
)
{
this
.
loading
=
true
;
let
res
=
await
getPeopleanalyse
({
idcard
:
row
.
people_idcard
,
peopleid
:
row
.
peopleid
,
...
...
@@ -374,11 +375,13 @@ export default {
let
{
data
}
=
res
;
this
.
userInfo
=
{
...
row
,
...
data
};
}
this
.
loading
=
false
;
this
.
userInfoVisible
=
true
;
},
// 查看业务信息
async
checkBusiness
(
row
)
{
this
.
loading
=
true
;
let
res
=
await
getBusinessEvent
({
businessid
:
row
.
businessid
,
time
:
this
.
searchForm
.
time
,
...
...
@@ -390,10 +393,12 @@ export default {
this
.
businessInfo
=
data
;
this
.
analysisVisible
=
true
;
}
this
.
loading
=
false
;
},
// 查看工作人员
async
checkWorkman
(
id
)
{
this
.
loading
=
true
;
let
res
=
await
getWorkmananalyse
({
workmanid
:
id
,
time
:
this
.
searchForm
.
time
,
...
...
@@ -403,11 +408,13 @@ export default {
});
let
{
data
}
=
res
;
this
.
workerInfo
=
{
...
data
,
...
result
.
data
};
this
.
loading
=
false
;
this
.
workerInfoVisible
=
true
;
},
// 查看详细信息
async
checkInfo
(
id
)
{
this
.
loading
=
true
;
let
res
=
await
getQueueInfo
({
id
,
});
...
...
@@ -416,6 +423,7 @@ export default {
this
.
detailsInfo
=
data
;
this
.
detailsVisible
=
true
;
}
this
.
loading
=
false
;
},
// 勾选表格
...
...
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