Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
confucius
Commits
dae9b6fa
Commit
dae9b6fa
authored
Apr 07, 2022
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
0a663f77
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
217 additions
and
4 deletions
+217
-4
index.js
src/api/teacher/index.js
+26
-0
assess-form.vue
src/components/teacher/assess-form.vue
+170
-0
assessmentType.vue
src/pages/teacher/assessmentType.vue
+21
-4
No files found.
src/api/teacher/index.js
View file @
dae9b6fa
...
...
@@ -458,6 +458,32 @@ export function queryAssessmentTypeList(data) {
})
}
/**
* 获取配置数据
* @param {*} data
*/
export
function
GetAssessmentType
(
data
)
{
return
request
({
url
:
'/TeacherAssessment/GetAssessmentType'
,
method
:
'post'
,
data
})
}
/**
* 保存配置数据
* @param {*} data
*/
export
function
SetAssessmentType
(
data
)
{
return
request
({
url
:
'/TeacherAssessment/SetAssessmentType'
,
method
:
'post'
,
data
})
}
src/components/teacher/assess-form.vue
0 → 100644
View file @
dae9b6fa
<
style
scoped
>
.wenjuan_Shuru
{
position
:
relative
;
}
.SurverDel
{
position
:
absolute
;
right
:
-5px
;
top
:
-5px
;
}
.childConfig
{
border
:
1px
dashed
#d1d1d1
;
padding
:
20px
;
margin-bottom
:
20px
;
position
:
relative
;
}
.SubChild
{
position
:
absolute
;
right
:
0
;
top
:
0
;
}
</
style
>
<
template
>
<q-dialog
v-model=
"persistent"
content-class=
"bg-grey-1"
persistent
transition-show=
"scale"
transition-hide=
"scale"
>
<q-card
style=
"width: 600px;max-width:600px;"
>
<q-card-section>
<div
class=
"text-h6"
>
{{
addMsg
.
Id
==
0
?
'新增配置'
:
'修改配置'
}}
</div>
</q-card-section>
<q-card-section
class=
"q-pt-none scroll"
style=
"max-height: 70vh"
>
<div
class=
"row wrap"
>
<div
class=
"col-12 q-pb-lg"
>
<q-input
filled
v-model=
"addMsg.TypeName"
ref=
"TypeName"
label=
"标题"
></q-input>
</div>
<div
class=
"q-pb-lg"
>
<q-btn
size=
"10px"
@
click=
"addChild()"
round
color=
"primary"
icon=
"iconfont icon-img_haha"
/>
</div>
</div>
<div
v-for=
"(item,index) in addMsg.SubtypeList"
class=
"row wrap childConfig"
>
<q-btn
size=
"10px"
@
click=
"delChild(index)"
class=
"SubChild"
round
color=
"red"
icon=
"iconfont icon-guanbi1"
/>
<div
class=
"col-12 q-pr-lg q-pb-lg"
>
<q-input
filled
v-model=
"item.SubTypeName"
ref=
"SubTypeName"
label=
"标题"
></q-input>
</div>
<div
class=
"q-pb-lg"
>
<q-btn
size=
"10px"
@
click=
"addSun(index)"
round
color=
"primary"
icon=
"iconfont icon-img_haha"
/>
</div>
<div
class=
"row wrap"
style=
"position:relative;"
v-for=
"(subItem,subIndex) in item.OptionList"
>
<div
class=
"col-4 q-pr-lg q-pb-lg"
>
<q-input
filled
v-model=
"subItem.LevelTitle"
dense
ref=
"SubTypeName"
label=
"标题"
></q-input>
</div>
<div
class=
"col-4 q-pr-lg q-pb-lg"
>
<q-input
filled
v-model=
"subItem.LevelDesc"
dense
ref=
"LevelDesc"
label=
"描述"
></q-input>
</div>
<div
class=
"col-4 q-pr-lg q-pb-lg"
>
<q-input
filled
v-model=
"subItem.LevelScore"
dense
ref=
"LevelScore"
label=
"分数"
></q-input>
</div>
<q-btn
size=
"5px"
@
click=
"delSun(index,subIndex)"
class=
"SubChild"
round
color=
"red"
icon=
"iconfont icon-guanbi1"
/>
</div>
</div>
</q-card-section>
<q-separator
/>
<q-card-actions
align=
"right"
class=
"bg-white"
>
<q-btn
label=
"取消"
flat
color=
"grey-10"
style=
"font-weight:400 !important"
@
click=
"closeSaveForm"
/>
<q-btn
label=
"立即提交"
color=
"accent q-px-md"
style=
"font-weight:400 !important"
:loading=
"saveLoading"
@
click=
"saveConfig"
/>
</q-card-actions>
</q-card>
</q-dialog>
</
template
>
<
script
>
import
{
SetAssessmentType
,
GetAssessmentType
}
from
'../../api/teacher/index'
;
export
default
{
props
:
{
saveObj
:
{
type
:
Object
,
default
:
null
}
},
data
()
{
return
{
persistent
:
true
,
addMsg
:
{
Id
:
0
,
TypeName
:
"基本素质"
,
SubtypeList
:
[]
},
saveLoading
:
false
,
}
},
mounted
()
{
this
.
initObj
()
},
methods
:
{
//初始化表单
initObj
()
{
if
(
this
.
saveObj
&&
this
.
saveObj
.
Id
>
0
)
{
let
obj
=
{
Id
:
this
.
saveObj
.
Id
}
GetAssessmentType
(
obj
).
then
(
res
=>
{
if
(
res
.
Code
==
1
){
this
.
addMsg
=
res
.
Data
;
}
})
}
else
{
this
.
addMsg
.
Id
=
0
;
this
.
addMsg
.
TypeName
=
''
;
this
.
addMsg
.
SubtypeList
=
[];
}
},
//关闭弹窗
closeSaveForm
()
{
this
.
$emit
(
'close'
)
this
.
persistent
=
false
},
//新增子类
addChild
()
{
let
obj
=
{
Id
:
0
,
SubTypeName
:
"业务工作"
,
OptionList
:
[]
};
this
.
addMsg
.
SubtypeList
.
push
(
obj
);
},
//新增孙类
addSun
(
index
)
{
let
obj
=
{
LevelTitle
:
""
,
LevelDesc
:
""
,
LevelScore
:
''
};
this
.
addMsg
.
SubtypeList
[
index
].
OptionList
.
push
(
obj
);
},
//保存数据
saveConfig
()
{
this
.
saveLoading
=
true
;
SetAssessmentType
(
this
.
addMsg
).
then
(
res
=>
{
this
.
saveLoading
=
false
;
if
(
res
.
Code
==
1
)
{
this
.
$q
.
notify
({
icon
:
'iconfont icon-chenggong'
,
color
:
'accent'
,
timeout
:
2000
,
message
:
'数据保存成功!'
,
position
:
'top'
})
this
.
$emit
(
'success'
);
this
.
$emit
(
'close'
);
}
})
},
//删除子类
delChild
(
index
)
{
this
.
addMsg
.
SubtypeList
.
splice
(
index
,
1
);
},
//删除孙类
delSun
(
index1
,
index2
)
{
this
.
addMsg
.
SubtypeList
[
index1
].
OptionList
.
splice
(
index2
,
1
);
}
}
}
</
script
>
src/pages/teacher/assessmentType.vue
View file @
dae9b6fa
...
...
@@ -29,7 +29,7 @@
</div>
</div>
</q-td>
<q-td
v-else-if=
"col.name == 'Id'"
:key=
"cIndex"
>
<q-td
style=
"width:100px;"
v-else-if=
"col.name == 'Id'"
:key=
"cIndex"
>
<q-btn
flat
size=
"xs"
icon=
"edit"
color=
"accent"
style=
"font-weight:400"
label=
"编辑"
@
click=
"AddMsg(props.row)"
/>
<q-btn
flat
size=
"xs"
icon=
"delete"
color=
"negative"
class=
"q-mr-xs"
label=
"删除"
...
...
@@ -38,23 +38,23 @@
</
template
>
</q-tr>
</template>
<
template
v-slot:bottom
></
template
>
</q-table>
</div>
<assess-form
v-if=
"isShowAssess"
:save-obj=
"objOption"
@
close=
"getClose()"
@
success=
"getRefresh"
></assess-form>
</div>
</template>
<
script
>
import
{
queryAssessmentTypeList
,
}
from
'../../api/teacher/index'
;
import
assessForm
from
'../../components/teacher/assess-form'
export
default
{
meta
:
{
title
:
"教师考评配置"
},
components
:
{
assessForm
},
data
()
{
return
{
...
...
@@ -81,6 +81,8 @@
}
],
dataList
:
[],
objOption
:
null
,
isShowAssess
:
false
}
},
created
()
{
...
...
@@ -99,6 +101,21 @@
this
.
dataList
=
res
.
Data
;
}
})
},
//新增修改
AddMsg
(
obj
){
if
(
obj
)
{
this
.
objOption
=
obj
}
else
{
this
.
objOption
=
null
}
this
.
isShowAssess
=
true
;
},
getClose
(){
this
.
isShowAssess
=
false
;
},
getRefresh
(){
this
.
getAssessmentTypeList
();
}
}
}
...
...
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