文档服务地址:http://47.92.0.57:3000/ 周报索引地址:http://47.92.0.57:3000/s/NruNXRYmV

Commit 664a5b43 by 李严凡

审核打分逻辑修改

parent c370727c
......@@ -930,6 +930,7 @@ export default {
},
submit() {
// alert("打分成功");
console.log(this.$route.params)
if(this.scoreForm.score == '' || this.scoreForm.accuracy == ''){
alert("请打分和填写准确率");
return;
......@@ -937,7 +938,7 @@ export default {
this.axios({
method: "get",
params: {
userId: this.$store.state.userInfo.userId,
userId: this.$route.params.executor.id,
fileId: this.$route.params.file.id,
scoreForm: this.scoreForm
},
......
......@@ -194,7 +194,7 @@
let routeParams = this.$route.params
console.log("routeParams")
console.log(routeParams)
this.relationId = routeParams.relationId
this.relationId = routeParams.relationId
this.description = routeParams.piece.template
let res = await this.getLayerList()
......@@ -789,6 +789,8 @@
},
submit() {
// alert("打分成功");
// console.log("route:")
// console.log(this.$route.params.executor.id)
if(this.scoreForm.score == '' || this.scoreForm.accuracy == ''){
alert("请打分和填写准确率");
return;
......@@ -796,7 +798,7 @@
this.axios({
method: "get",
params: {
userId: this.$store.state.userInfo.userId,
userId: this.$route.params.executor.id,
fileId: this.$route.params.file.id,
scoreForm: this.scoreForm
},
......
......@@ -210,6 +210,8 @@ export default {
},
// 打分
addScore() {
// alert("Inin")
// console.log(this.$route.params.executor.id)
if (this.scoreForm.accuracy == "" || this.scoreForm.score == "")
this.$message("请输入内容");
else if (
......@@ -239,13 +241,13 @@ export default {
}
},
submit() {
alert("打分成功");
// alert("打分成功");
// this.$router.push({ path: "/taskhall" });
// alert("inin");
this.axios({
method: "get",
params: {
userId: this.$store.state.userInfo.userId,
userId: this.$route.params.executor.id,
fileId: this.file.id,
scoreForm: this.scoreForm
},
......
......@@ -288,14 +288,14 @@ export default {
},
submit(){
alert("打分成功");
// alert("打分成功");
// this.$router.push({path: '/taskhall'});
// alert("inin");
this.axios({
method:"get",
params:{
userId:this.$store.state.userInfo.userId,
userId:this.$route.params.executor.id,
fileId:this.file.id,
scoreForm:this.scoreForm
},
......
参加过一次软院心理讲座,但是未录入
有博雅记录的一共4次
总共5次博雅
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment