Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bill-manager-ui
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
赵啸非
bill-manager-ui
Commits
14652c18
Commit
14652c18
authored
Jun 25, 2024
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加站点分类查询
parent
c8c53866
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
23 additions
and
52 deletions
+23
-52
admin/src/router.js
admin/src/router.js
+4
-1
admin/src/views/ph/queue/list.vue
admin/src/views/ph/queue/list.vue
+2
-2
admin/src/views/ph/queue/stat/list.vue
admin/src/views/ph/queue/stat/list.vue
+3
-14
admin/src/views/ph/queue/view.vue
admin/src/views/ph/queue/view.vue
+4
-7
admin/src/views/pj/evaluate/list.vue
admin/src/views/pj/evaluate/list.vue
+3
-7
admin/src/views/pj/evaluate/stat/list.vue
admin/src/views/pj/evaluate/stat/list.vue
+3
-14
admin/src/views/pj/evaluate/view.vue
admin/src/views/pj/evaluate/view.vue
+3
-6
admin/vue.config.js
admin/vue.config.js
+1
-1
No files found.
admin/src/router.js
View file @
14652c18
...
...
@@ -68,7 +68,7 @@ function restBuilder(path, component = path) {
arr
.
push
(
builder
(
`
${
path
}
/list`
,
`
${
component
}
/list`
));
arr
.
push
(
builder
(
`
${
path
}
/edit`
,
`
${
component
}
/show`
));
arr
.
push
(
builder
(
`
${
path
}
/add`
,
`
${
component
}
/show`
));
arr
.
push
(
builder
(
`
${
path
}
/view`
,
`
${
component
}
/
sho
w`
));
arr
.
push
(
builder
(
`
${
path
}
/view`
,
`
${
component
}
/
vie
w`
));
return
arr
;
}
...
...
@@ -95,6 +95,9 @@ function getComponent(fileName) {
try
{
return
require
(
"
./views/
"
+
fileName
).
default
;
}
catch
(
error
)
{
//console.error(error)
return
fileNotFound
;
}
}
...
...
admin/src/views/ph/queue/list.vue
View file @
14652c18
...
...
@@ -33,9 +33,9 @@
this
.
$refs
.
drawerform
.
edit
(
row
);
},
/** 重写查看方法 */
toView
(
row
)
{
/*
toView(row) {
this.$refs.drawerform.view(row);
},
},
*/
},
data
()
{
...
...
admin/src/views/ph/queue/stat/list.vue
View file @
14652c18
<
template
>
<div
class=
"page"
>
<LayoutTable
:data=
"tableData"
:config=
"tableConfig"
>
<LayoutTable
:data=
"tableData"
notDel
:config=
"tableConfig"
>
</LayoutTable>
...
...
@@ -41,11 +41,8 @@
search
:
[
],
columns
:
[
{
type
:
"
selection
"
,
width
:
60
},
{
type
:
"
index
"
,
label
:
"
序号
"
,
width
:
50
},
{
label
:
"
站点Id
"
,
prop
:
"
siteId
"
,
formatter
:
this
.
formatter
},
{
label
:
"
站点编码
"
,
prop
:
"
siteCode
"
},
{
label
:
"
站点名称
"
,
prop
:
"
siteName
"
},
...
...
@@ -63,15 +60,7 @@
{
label
:
"
月
"
,
prop
:
"
month
"
,
formatter
:
this
.
formatter
},
{
label
:
"
日
"
,
prop
:
"
day
"
,
formatter
:
this
.
formatter
},
{
label
:
"
操作
"
,
width
:
240
,
formatter
:
row
=>
{
return
(
<
table
-
buttons
noAdd
row
=
{
row
}
onEdit
=
{
this
.
toEdit
}
onView
=
{
this
.
toView
}
onDel
=
{
this
.
toDel
}
/
>
);
}
}
]
}
};
...
...
admin/src/views/ph/queue/view.vue
View file @
14652c18
<
template
>
<layout-view>
<el-descriptions
:title=
"title"
:column=
"column"
:size=
"size"
:colon=
"false"
border
>
<template
slot=
"title"
>
<i
class=
"el-icon-tickets"
></i>
基本详细信息
</
template
>
<el-descriptions
style=
"margin-top: 10px"
:title=
"title"
:column=
"column"
:size=
"size"
:colon=
"false"
border
>
<template
slot=
"extra"
>
<el-button
type=
"primary"
@
click=
"$router.go(-1)"
size=
"small"
>
返回
</el-button>
</
template
>
<el-descriptions-item
label=
"预约编号
,为空现场取号
"
label-class-name=
"labelClass"
content-class-name=
"contentClass"
>
<el-descriptions-item
label=
"预约编号"
label-class-name=
"labelClass"
content-class-name=
"contentClass"
>
{{form.ordernumber}}
</el-descriptions-item>
<el-descriptions-item
label=
"叫号状态 "
label-class-name=
"labelClass"
content-class-name=
"contentClass"
>
...
...
admin/src/views/pj/evaluate/list.vue
View file @
14652c18
...
...
@@ -2,23 +2,19 @@
<div
class=
"page"
>
<LayoutTable
:data=
"tableData"
notAdd
notDel
:config=
"tableConfig"
>
</LayoutTable>
<drawer-show
ref=
"drawerform"
@
ok=
"getData"
/>
<view-show
ref=
"viewform"
@
ok=
"getData"
/>
</div>
</
template
>
<
script
>
/** 表单弹出框模式需引入 */
import
drawerShow
from
"
./drawershow
"
;
import
viewShow
from
"
./view
"
;
import
table
from
"
@/assets/mixins/table
"
;
import
session
from
"
@/assets/utils/session
"
;
export
default
{
name
:
"
PjEvaluateList
"
,
components
:
{
drawerShow
,
viewShow
drawerShow
},
mixins
:
[
table
],
created
()
{
...
...
@@ -35,9 +31,9 @@
this
.
$refs
.
drawerform
.
edit
(
row
);
},
/** 重写查看方法 */
toView
(
row
)
{
/*
toView(row) {
this.$refs.drawerform.view(row);
},
},
*/
},
data
()
{
...
...
admin/src/views/pj/evaluate/stat/list.vue
View file @
14652c18
<
template
>
<div
class=
"page"
>
<LayoutTable
:data=
"tableData"
:config=
"tableConfig"
>
<LayoutTable
:data=
"tableData"
notDel
:config=
"tableConfig"
>
</LayoutTable>
...
...
@@ -41,11 +41,8 @@
search
:
[
],
columns
:
[
{
type
:
"
selection
"
,
width
:
60
},
{
type
:
"
index
"
,
label
:
"
序号
"
,
width
:
50
},
{
label
:
"
站点Id
"
,
prop
:
"
siteId
"
,
formatter
:
this
.
formatter
},
{
label
:
"
站点编码
"
,
prop
:
"
siteCode
"
},
{
label
:
"
站点名称
"
,
prop
:
"
siteName
"
},
...
...
@@ -63,15 +60,7 @@
{
label
:
"
月
"
,
prop
:
"
month
"
,
formatter
:
this
.
formatter
},
{
label
:
"
日
"
,
prop
:
"
day
"
,
formatter
:
this
.
formatter
},
{
label
:
"
操作
"
,
width
:
240
,
formatter
:
row
=>
{
return
(
<
table
-
buttons
noAdd
row
=
{
row
}
onEdit
=
{
this
.
toEdit
}
onView
=
{
this
.
toView
}
onDel
=
{
this
.
toDel
}
/
>
);
}
}
]
}
};
...
...
admin/src/views/pj/evaluate/view.vue
View file @
14652c18
<
template
>
<layout-view>
<el-descriptions
:title=
"title"
:column=
"column"
:size=
"size"
:colon=
"false"
border
>
<template
slot=
"title"
>
<i
class=
"el-icon-tickets"
></i>
基本详细信息
</
template
>
<el-descriptions
style=
"margin-top: 10px"
:title=
"title"
:column=
"column"
:size=
"size"
:colon=
"false"
border
>
<template
slot=
"extra"
>
<el-button
type=
"primary"
@
click=
"$router.go(-1)"
size=
"small"
>
返回
</el-button>
</
template
>
...
...
@@ -115,7 +112,7 @@
data
()
{
return
{
size
:
"
small
"
,
title
:
"
small
"
,
title
:
""
,
column
:
2
,
toString
:[
],
...
...
admin/vue.config.js
View file @
14652c18
...
...
@@ -9,7 +9,7 @@ module.exports = {
hot
:
true
,
//自动保存
proxy
:
{
"
/bill
"
:
{
target
:
"
http://192.168.0.98:110
78
"
,
target
:
"
http://192.168.0.98:110
19
"
,
//target: 'http://127.0.0.1:18222',
changeOrigin
:
true
,
secure
:
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