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
a9e36f61
Commit
a9e36f61
authored
Dec 08, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
61b0bb02
b464c6c9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
37 additions
and
13 deletions
+37
-13
portal-manager-ui/admin/src/api/dataAdmin.js
portal-manager-ui/admin/src/api/dataAdmin.js
+3
-0
portal-manager-ui/admin/src/components/reportformsForm/QueueSearch.vue
...r-ui/admin/src/components/reportformsForm/QueueSearch.vue
+25
-5
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/components/FormDetails.vue
...n/components/networkGovernance/components/FormDetails.vue
+2
-1
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/components/businessInfo.vue
...ataAdmin/components/queueCall/components/businessInfo.vue
+1
-1
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/components/userInfo.vue
...ws/dataAdmin/components/queueCall/components/userInfo.vue
+3
-3
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/components/workpeopleInfo.vue
...aAdmin/components/queueCall/components/workpeopleInfo.vue
+3
-3
No files found.
portal-manager-ui/admin/src/api/dataAdmin.js
View file @
a9e36f61
...
...
@@ -20,6 +20,9 @@ export function getBumenList(params) {
export
function
getTaskList
(
params
)
{
return
http
.
get
(
`
${
BASEURL
}
/admin/take/takelist`
,
params
);
}
export
function
getTakeableList
(
params
)
{
return
http
.
get
(
`
${
BASEURL
}
/admin/take/takeablelist`
,
params
);
}
//排队办理记录报表接口
export
function
getQueueData
(
params
)
{
return
http
.
post
(
`
${
BASEURL
}
/inter/reportform/quelist`
,
params
);
...
...
portal-manager-ui/admin/src/components/reportformsForm/QueueSearch.vue
View file @
a9e36f61
...
...
@@ -90,7 +90,7 @@ import YSelect from "@/components/YSelect.vue";
import
YRangePicker
from
"
@/components/YRangePicker.vue
"
;
import
storage
from
"
@/utils/js/Storage
"
;
import
{
mapMutations
}
from
"
vuex
"
;
import
{
getDatingList
,
getBumenList
,
getTaskList
}
from
"
@/api/dataAdmin
"
;
import
{
getDatingList
,
getBumenList
,
getTaskList
,
getTakeableList
}
from
"
@/api/dataAdmin
"
;
import
{
debounce
}
from
"
lodash
"
;
const
style
=
[
{
...
...
@@ -123,6 +123,7 @@ export default {
searchForm
:
{
id
:
""
,
// 排队机id
style
:
""
,
// 状态
device_type
:
""
,
//设备类型
time
:
[
this
.
$moment
().
format
(
"
YYYY-MM-DD
"
),
this
.
$moment
().
format
(
"
YYYY-MM-DD
"
),
...
...
@@ -136,7 +137,7 @@ export default {
created
()
{
this
.
getDatingListArr
();
this
.
getBumenListArr
();
this
.
getTa
sk
List
();
this
.
getTa
keable
List
();
},
methods
:
{
...
mapMutations
(
"
search
"
,
[
"
set_searForm
"
,
"
set_isExport
"
,
"
reset
"
]),
...
...
@@ -163,23 +164,42 @@ export default {
if
(
res
.
code
==
1
)
{
let
{
data
}
=
res
.
data
;
this
.
deptList
=
data
;
}
},
//获取排号机设备列表
async
getTa
sk
List
()
{
let
res
=
await
getTa
sk
List
({
async
getTa
keable
List
()
{
let
res
=
await
getTa
keable
List
({
page
:
1
,
size
:
-
1
,
});
if
(
res
.
code
==
1
)
{
let
{
data
}
=
res
.
data
;
let
{
data
}
=
res
;
this
.
deviceData
=
data
;
// console.log(this.deviceData)
}
},
// async getTaskList() {
// let res = await getTaskList({
// page: 1,
// size: -1,
// });
// if (res.code == 1) {
// let { data } = res.data;
// this.deviceData = data;
// console.log(this.deviceData)
// }
// },
// 搜索
handleSearch
()
{
if
(
this
.
searchForm
.
id
){
let
device
=
this
.
deviceData
.
filter
((
i
)
=>
{
return
this
.
searchForm
.
id
==
i
.
id
})
this
.
searchForm
.
device_type
=
device
[
0
].
device_type
}
this
.
set_searForm
(
this
.
searchForm
);
},
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/networkGovernance/components/FormDetails.vue
View file @
a9e36f61
...
...
@@ -81,7 +81,7 @@
<img
v-for=
"(item, index) in fromData.url"
:key=
"index"
:src=
"
process.env.VUE_APP_API_BASE_URL
+ item"
:src=
"
baseUrl
+ item"
/>
</div>
<div
v-else
>
--
</div>
...
...
@@ -273,6 +273,7 @@ export default {
data
()
{
return
{
fromData
:
{},
baseUrl
:
process
.
env
.
VUE_APP_API_BASE_URL
,
};
},
computed
:
{
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/components/businessInfo.vue
View file @
a9e36f61
...
...
@@ -39,7 +39,7 @@
</div>
</div>
<div
slot=
"footer"
class=
"btn-box"
>
<
a-button
type=
"primary"
@
click=
"checkAnalyse"
>
查看业务分析
</a-button
>
<
!--
<a-button
type=
"primary"
@
click=
"checkAnalyse"
>
查看业务分析
</a-button>
--
>
</div>
</a-modal>
</div>
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/components/userInfo.vue
View file @
a9e36f61
...
...
@@ -30,14 +30,14 @@
</div>
</div>
<div
slot=
"footer"
class=
"btn-box"
>
<a-space>
<
!--
<
a-space>
<a-button
type=
"primary"
@
click=
"checkPortrayal"
>
查看TA的数据画像
</a-button
>
<a-button
type=
"primary"
@
click=
"checkBlockchain"
>
区块链信息
</a-button
>
</a-space>
</a-space>
-->
</div>
</a-modal>
</div>
...
...
@@ -117,4 +117,4 @@ export default {
.btn-box {
text-align: right;
}
</
style
>
\ No newline at end of file
</
style
>
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/components/workpeopleInfo.vue
View file @
a9e36f61
...
...
@@ -66,14 +66,14 @@
</div>
</div>
<div
slot=
"footer"
class=
"btn-box"
>
<a-space>
<
!--
<
a-space>
<a-button
type=
"primary"
@
click=
"checkPortrayal"
>
查看TA的数据画像
</a-button
>
<a-button
type=
"primary"
@
click=
"checkBlockchain"
>
区块链信息
</a-button
>
</a-space>
</a-space>
-->
</div>
</a-modal>
</div>
...
...
@@ -168,4 +168,4 @@ export default {
.btn-box {
text-align: right;
}
</
style
>
\ No newline at end of file
</
style
>
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