Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
attendance-performance-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
赵啸非
attendance-performance-platform
Commits
d6057f55
Commit
d6057f55
authored
Jul 06, 2023
by
王启林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
推
parent
55e47410
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
116 additions
and
93 deletions
+116
-93
attendance-performance-manager-ui/admin/package.json
attendance-performance-manager-ui/admin/package.json
+1
-0
attendance-performance-manager-ui/admin/src/router.js
attendance-performance-manager-ui/admin/src/router.js
+2
-1
attendance-performance-manager-ui/admin/src/views/feedback/addQuestion/list.vue
...-manager-ui/admin/src/views/feedback/addQuestion/list.vue
+14
-0
attendance-performance-manager-ui/admin/src/views/feedback/list.vue
...-performance-manager-ui/admin/src/views/feedback/list.vue
+99
-92
No files found.
attendance-performance-manager-ui/admin/package.json
View file @
d6057f55
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
"version"
:
"0.1.0"
,
"version"
:
"0.1.0"
,
"private"
:
true
,
"private"
:
true
,
"scripts"
:
{
"scripts"
:
{
"serve"
:
"set NODE_OPTIONS=--openssl-legacy-provider & vue-cli-service serve"
,
"dev"
:
"vue-cli-service serve"
,
"dev"
:
"vue-cli-service serve"
,
"build"
:
"vue-cli-service build"
,
"build"
:
"vue-cli-service build"
,
"test"
:
"vue-cli-service build --mode test"
,
"test"
:
"vue-cli-service build --mode test"
,
...
...
attendance-performance-manager-ui/admin/src/router.js
View file @
d6057f55
...
@@ -125,6 +125,7 @@ const router = new Router({
...
@@ -125,6 +125,7 @@ const router = new Router({
...
restBuilder
(
"
perform/attend/appeal/files
"
,
"
perform/attend/appeal/files
"
),
//绩效记录申诉信息附件列表
...
restBuilder
(
"
perform/attend/appeal/files
"
,
"
perform/attend/appeal/files
"
),
//绩效记录申诉信息附件列表
...
restBuilder
(
"
feedback
"
,
"
feedback
"
),
//反馈信息
...
restBuilder
(
"
feedback
"
,
"
feedback
"
),
//反馈信息
...
restBuilder
(
"
feedback/addQuestion
"
,
"
feedback/addQuestion
"
),
//新增反馈
...
restBuilder
(
"
feedback/question
"
,
"
feedback/question
"
),
//反馈问题
...
restBuilder
(
"
feedback/question
"
,
"
feedback/question
"
),
//反馈问题
...
restBuilder
(
"
feedback/option
"
,
"
feedback/option
"
),
//反馈选项
...
restBuilder
(
"
feedback/option
"
,
"
feedback/option
"
),
//反馈选项
...
...
attendance-performance-manager-ui/admin/src/views/feedback/addQuestion/list.vue
0 → 100644
View file @
d6057f55
<
template
>
<div
class=
"page"
>
111
</div>
</
template
>
<
script
>
export
default
{
}
</
script
>
<
style
lang=
"less"
scoped
>
</
style
>
\ No newline at end of file
attendance-performance-manager-ui/admin/src/views/feedback/list.vue
View file @
d6057f55
<
template
>
<
template
>
<div
class=
"page"
>
<div
class=
"page"
>
<LayoutTable
:data=
"tableData"
:config=
"tableConfig"
>
<LayoutTable
:data=
"tableData"
notDel
notSearch
:config=
"tableConfig"
>
</LayoutTable>
</LayoutTable>
...
@@ -9,14 +9,14 @@
...
@@ -9,14 +9,14 @@
</
template
>
</
template
>
<
script
>
<
script
>
/** 表单弹出框模式需引入 */
/** 表单弹出框模式需引入 */
import
drawerShow
from
"
./drawershow
"
;
import
drawerShow
from
"
./drawershow
"
;
import
table
from
"
@/assets/mixins/table
"
;
import
table
from
"
@/assets/mixins/table
"
;
export
default
{
export
default
{
name
:
"
FeedbackList
"
,
name
:
"
FeedbackList
"
,
components
:
{
components
:
{
drawerShow
drawerShow
},
},
mixins
:
[
table
],
mixins
:
[
table
],
created
()
{
created
()
{
},
},
...
@@ -41,7 +41,8 @@
...
@@ -41,7 +41,8 @@
},
},
/** 重写新增方法 */
/** 重写新增方法 */
toAdd
(
row
)
{
toAdd
(
row
)
{
this
.
$refs
.
drawerform
.
add
(
row
);
// this.$refs.drawerform.add(row);
this
.
$router
.
push
(
"
/feedback/addQuestion/list
"
);
},
},
/** 重写编辑方法 */
/** 重写编辑方法 */
toEdit
(
row
)
{
toEdit
(
row
)
{
...
@@ -56,33 +57,34 @@
...
@@ -56,33 +57,34 @@
data
()
{
data
()
{
return
{
return
{
/** 子表列元素 */
/** 子表列元素 */
columnSet
:
[
columnSet
:
[
{
label
:
"
反馈问卷id号
"
,
prop
:
"
feedbackId
"
,
formatter
:
this
.
formatter
},
{
label
:
"
反馈问卷id号
"
,
prop
:
"
feedbackId
"
,
formatter
:
this
.
formatter
},
{
label
:
"
问题内容
"
,
prop
:
"
content
"
},
{
label
:
"
问题内容
"
,
prop
:
"
content
"
},
{
label
:
"
问题类型
"
,
prop
:
"
questionType
"
,
formatter
:
this
.
formatter
},
{
label
:
"
问题类型
"
,
prop
:
"
questionType
"
,
formatter
:
this
.
formatter
},
{
label
:
"
是否必填
"
,
prop
:
"
require
"
,
formatter
:
this
.
formatter
},
{
label
:
"
是否必填
"
,
prop
:
"
require
"
,
formatter
:
this
.
formatter
},
{
label
:
"
备注
"
,
prop
:
"
remark
"
},
{
label
:
"
备注
"
,
prop
:
"
remark
"
},
],
],
config
:
{
config
:
{
isshowTabPane
:
fals
e
,
isshowTabPane
:
tru
e
,
search
:
[
search
:
[
],
],
columns
:
[
columns
:
[
{
type
:
"
selection
"
,
width
:
60
},
{
type
:
"
selection
"
,
width
:
60
},
{
type
:
"
index
"
,
label
:
"
序号
"
,
width
:
50
},
{
type
:
"
index
"
,
label
:
"
序号
"
,
width
:
50
},
{
label
:
"
问卷标题
"
,
prop
:
"
title
"
},
{
label
:
"
问卷标题
"
,
prop
:
"
title
"
},
{
label
:
"
反馈开始时间
"
,
prop
:
"
feedbackTimeStart
"
,
formatter
:
this
.
formatterDate
},
{
label
:
"
反馈开始时间
"
,
prop
:
"
feedbackTimeStart
"
,
formatter
:
this
.
formatterDate
},
{
label
:
"
反馈结束时间
"
,
prop
:
"
feedbackTimeEnd
"
,
formatter
:
this
.
formatterDate
},
{
label
:
"
反馈结束时间
"
,
prop
:
"
feedbackTimeEnd
"
,
formatter
:
this
.
formatterDate
},
{
label
:
"
邀请人数
"
,
prop
:
"
inviteNum
"
,
formatter
:
this
.
formatter
},
{
label
:
"
邀请人数
"
,
prop
:
"
inviteNum
"
,
formatter
:
this
.
formatter
},
{
label
:
"
反馈人数
"
,
prop
:
"
feedbackNum
"
,
formatter
:
this
.
formatter
},
{
label
:
"
反馈人数
"
,
prop
:
"
feedbackNum
"
,
formatter
:
this
.
formatter
},
{
label
:
"
创建用户
"
,
prop
:
"
createUserId
"
,
formatter
:
this
.
formatter
},
{
label
:
"
创建用户
"
,
prop
:
"
createUserId
"
,
formatter
:
this
.
formatter
},
{
label
:
"
绩效反馈问题
"
,
{
label
:
"
绩效反馈问题
"
,
width
:
120
,
width
:
120
,
prop
:
"
subColumns
"
,
prop
:
"
subColumns
"
,
formatter
:
(
row
)
=>
{
formatter
:
(
row
)
=>
{
...
@@ -110,5 +112,10 @@
...
@@ -110,5 +112,10 @@
}
}
};
};
}
}
};
};
</
script
>
</
script
>
<
style
lang=
"less"
scoped
>
/deep/ .buttons {
margin-bottom: 10px;
}
</
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