学年标签适配学生奖惩、学生资助模块
This commit is contained in:
@@ -15,6 +15,17 @@ export function listStuSportScore(stuNo) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据学年标签查询学生体测成绩
|
||||||
|
*/
|
||||||
|
export function listStuSportScoreByTag(stuNo,tag) {
|
||||||
|
return request({
|
||||||
|
url: '/comprehensive/biyeapply/listStuSportScoreByTag/' + stuNo,
|
||||||
|
method: 'get',
|
||||||
|
params:{tag}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
export function getStuScoreMajorRank(stuNo) {
|
export function getStuScoreMajorRank(stuNo) {
|
||||||
return request({
|
return request({
|
||||||
url: '/comprehensive/biyeapply/getStuScoreMajorRank/' + stuNo,
|
url: '/comprehensive/biyeapply/getStuScoreMajorRank/' + stuNo,
|
||||||
@@ -142,10 +153,11 @@ export function listFdy(params) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
export function listOwnSportScore() {
|
export function listOwnSportScoreByTag(tag) {
|
||||||
return request({
|
return request({
|
||||||
url: '/comprehensive/biyeapply/listOwnSportScore',
|
url: '/comprehensive/biyeapply/listOwnSportScoreByTag',
|
||||||
method: 'get'
|
method: 'get',
|
||||||
|
params: { tag: tag }
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export function doReApply(data) {
|
export function doReApply(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/comprehensive/knzzTufaApply/doReApply',
|
url: '/comprehensive/knzzTufaApply/doReApply',
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
|
||||||
|
// 查询所有学年
|
||||||
export function listAllYear(){
|
export function listAllYear(){
|
||||||
return request({
|
return request({
|
||||||
url:'/system/year/listAllYear',
|
url:'/system/year/listAllYear',
|
||||||
@@ -14,6 +15,7 @@ export function listQiyongYear(){
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export function listAllEnableYear(){
|
export function listAllEnableYear(){
|
||||||
return request({
|
return request({
|
||||||
url: '/system/year/listAllEnableYear',
|
url: '/system/year/listAllEnableYear',
|
||||||
@@ -84,3 +86,12 @@ export function assignTag(yearId,tag){
|
|||||||
params:{ tag: tag }
|
params:{ tag: tag }
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//根据标签获取指定学年
|
||||||
|
export function getYearByTag(tag){
|
||||||
|
return request({
|
||||||
|
url:'/system/year/by-tag',
|
||||||
|
method: 'get',
|
||||||
|
params:{ tag: tag }
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
@@ -119,6 +119,16 @@ export function listOwnScoreClassRank() {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//获取某学生指定学年的班级排名,是由前端查询的学年标签对应的学年
|
||||||
|
export function listOwnScoreClassRankByTag(tag) {
|
||||||
|
return request({
|
||||||
|
url: '/comprehensive/goodapply/listOwnScoreRankByTag',
|
||||||
|
method: 'GET',
|
||||||
|
params: {
|
||||||
|
tag
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
export function listOwnXyjxjApply(params) {
|
export function listOwnXyjxjApply(params) {
|
||||||
return request({
|
return request({
|
||||||
|
|||||||
@@ -170,6 +170,15 @@ export function listStuScoreClassRank(stuNo) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
export function listStuScoreClassRankByTag(stuNo,tag) {
|
||||||
|
return request({
|
||||||
|
method: 'GET',
|
||||||
|
url: '/comprehensive/goodapply/listStuScoreClassRankByTag/' + stuNo,
|
||||||
|
params: {tag}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
export function listStuYearCourseScore(stuNo, params = {}) {
|
export function listStuYearCourseScore(stuNo, params = {}) {
|
||||||
return request({
|
return request({
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<p style="line-height:33pt; margin:0pt; orphans:0; text-align:center; widows:0">
|
<p style="line-height:33pt; margin:0pt; orphans:0; text-align:center; widows:0">
|
||||||
<span v-if="localFormData.listAllYear.length > 0" style="font-family:方正小标宋简体; font-size:20pt">{{ localFormData.listAllYear[1].stuYearName }}</span>
|
<span v-if="localFormData.listAllYear.length > 0" style="font-family:方正小标宋简体; font-size:20pt">{{ localFormData.listAllYear[0].stuYearName }}</span>
|
||||||
<span style="font-family:方正小标宋简体; font-size:20pt">国家</span><span
|
<span style="font-family:方正小标宋简体; font-size:20pt">国家</span><span
|
||||||
style="font-family:方正小标宋简体; font-size:20pt"
|
style="font-family:方正小标宋简体; font-size:20pt"
|
||||||
>励志</span><span
|
>励志</span><span
|
||||||
@@ -688,7 +688,7 @@ import { doApply } from '@/api/comprehensive/knzzGlApply'
|
|||||||
import { boolImg, CheckImgExists, isEmpty, fullLoading } from '@/api/helpFunc'
|
import { boolImg, CheckImgExists, isEmpty, fullLoading } from '@/api/helpFunc'
|
||||||
import { getTokenKeySessionStorage as getToken } from '@/utils/auth'
|
import { getTokenKeySessionStorage as getToken } from '@/utils/auth'
|
||||||
import dayjs from 'dayjs'
|
import dayjs from 'dayjs'
|
||||||
import { listAllYear } from '@/api/stuCQS/basedata/year'
|
import { listAllYear,getYearByTag } from '@/api/stuCQS/basedata/year'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'GlApply',
|
name: 'GlApply',
|
||||||
@@ -848,7 +848,15 @@ export default {
|
|||||||
},
|
},
|
||||||
async getOwnKnrd() {
|
async getOwnKnrd() {
|
||||||
let res = await getOwnKnrd()
|
let res = await getOwnKnrd()
|
||||||
const response = await listAllYear()
|
/* const response = await listAllYear() */
|
||||||
|
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前页面的功能是获取'国家励志奖学金---NLZJ'标签对应的学年信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
尽量避免学年标签字典的更改!!!! */
|
||||||
|
|
||||||
|
const response = await getYearByTag('NLZJ')
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
let data = { ...res.data }
|
let data = { ...res.data }
|
||||||
let knrd = data.xsqmyj
|
let knrd = data.xsqmyj
|
||||||
|
|||||||
@@ -305,7 +305,7 @@ import { listDisciplinaryApplication } from '@/api/routine/disciplinaryApplicati
|
|||||||
import { getOwnStuScoreMajorRank } from '@/api/comprehensive/biyeapply'
|
import { getOwnStuScoreMajorRank } from '@/api/comprehensive/biyeapply'
|
||||||
|
|
||||||
import {
|
import {
|
||||||
listOwnScoreClassRank
|
listOwnScoreClassRank,listOwnScoreClassRankByTag
|
||||||
} from '@/api/stuCQS/good/apply'
|
} from '@/api/stuCQS/good/apply'
|
||||||
|
|
||||||
import { listStu as listView, doEdit, doCancel, doReApply } from '@/api/comprehensive/knzzGlApply'
|
import { listStu as listView, doEdit, doCancel, doReApply } from '@/api/comprehensive/knzzGlApply'
|
||||||
@@ -550,7 +550,13 @@ export default {
|
|||||||
},
|
},
|
||||||
async fetchcjpm() {
|
async fetchcjpm() {
|
||||||
let loading = fullLoading(this)
|
let loading = fullLoading(this)
|
||||||
let res = await listOwnScoreClassRank().catch(error => {
|
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前页面的功能是获取'国家励志奖学金---NLZJ'标签对应的学年信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
尽量避免学年标签字典的更改!!!! */
|
||||||
|
let res = await listOwnScoreClassRankByTag('NLZJ').catch(error => {
|
||||||
console.error('Error fetching score rank:', error)
|
console.error('Error fetching score rank:', error)
|
||||||
return { code: 500 }
|
return { code: 500 }
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -635,7 +635,7 @@ import {getOwnInfo, getOwnExtraInfo, getOwnKnrd, getOwnFamily} from '@/api/compr
|
|||||||
import {boolImg, CheckImgExists, isEmpty, fullLoading} from '@/api/helpFunc'
|
import {boolImg, CheckImgExists, isEmpty, fullLoading} from '@/api/helpFunc'
|
||||||
import {getTokenKeySessionStorage as getToken} from '@/utils/auth'
|
import {getTokenKeySessionStorage as getToken} from '@/utils/auth'
|
||||||
import {doApply} from '@/api/comprehensive/knzzZzqApply'
|
import {doApply} from '@/api/comprehensive/knzzZzqApply'
|
||||||
import { listAllEnableYear } from '@/api/stuCQS/basedata/year'
|
import { listAllEnableYear ,getYearByTag} from '@/api/stuCQS/basedata/year'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -712,7 +712,14 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
async fetchLeaderData() {
|
async fetchLeaderData() {
|
||||||
try {
|
try {
|
||||||
const response = await listAllEnableYear({ /* 你的查询参数 */ })
|
//const response = await listAllEnableYear({ /* 你的查询参数 */ })
|
||||||
|
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前页面的功能是获取'自治区人民政府奖学金---RMZF'标签对应的学年信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const response = await getYearByTag('RMZF')
|
||||||
this.leaderList = response.data
|
this.leaderList = response.data
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Failed to fetch leader data:', error)
|
console.error('Failed to fetch leader data:', error)
|
||||||
|
|||||||
@@ -276,7 +276,7 @@ import { getTokenKeySessionStorage as getToken } from '@/utils/auth'
|
|||||||
import {selectTestStu} from '@/api/stuCQS/info-fill/sportTest'
|
import {selectTestStu} from '@/api/stuCQS/info-fill/sportTest'
|
||||||
import { getDicts } from '@/api/system/dict/data'
|
import { getDicts } from '@/api/system/dict/data'
|
||||||
import { listDisciplinaryApplication } from '@/api/routine/disciplinaryApplication'
|
import { listDisciplinaryApplication } from '@/api/routine/disciplinaryApplication'
|
||||||
import { listOwnScoreClassRank } from '@/api/stuCQS/good/apply'
|
import { listOwnScoreClassRank,listOwnScoreClassRankByTag } from '@/api/stuCQS/good/apply'
|
||||||
|
|
||||||
import TufaApply from '@/views/comprehensive/knzzZzqApply/cpnt/TufaApply.vue'
|
import TufaApply from '@/views/comprehensive/knzzZzqApply/cpnt/TufaApply.vue'
|
||||||
import TufaLook from '@/views/comprehensive/knzzZzqApply/cpnt/TufaLook.vue'
|
import TufaLook from '@/views/comprehensive/knzzZzqApply/cpnt/TufaLook.vue'
|
||||||
@@ -506,7 +506,13 @@ export default {
|
|||||||
},
|
},
|
||||||
async fetchcjpm() {
|
async fetchcjpm() {
|
||||||
let loading = fullLoading(this)
|
let loading = fullLoading(this)
|
||||||
let res = await listOwnScoreClassRank().catch(error => {
|
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前页面的功能是获取'自治区人民政府奖学金---RMZF'标签对应的学年信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
let res = await listOwnScoreClassRankByTag('RMZF').catch(error => {
|
||||||
console.error('Error fetching score rank:', error)
|
console.error('Error fetching score rank:', error)
|
||||||
return { code: 500 }
|
return { code: 500 }
|
||||||
})
|
})
|
||||||
@@ -522,6 +528,7 @@ export default {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
this.$message.info('无法获取您的专业排名数据')
|
||||||
return false
|
return false
|
||||||
},
|
},
|
||||||
lookVClick(row) {
|
lookVClick(row) {
|
||||||
|
|||||||
@@ -73,8 +73,8 @@
|
|||||||
@pagination="getList"
|
@pagination="getList"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- 原辅导员审批宿舍管理申请对话框 -->
|
<!-- 添加或修改宿舍管理申请对话框 -->
|
||||||
<!-- <el-dialog :title="title" :visible.sync="open" width="700px" append-to-body>
|
<el-dialog :title="title" :visible.sync="open" width="700px" append-to-body>
|
||||||
<el-form ref="form" class="audit-form" :model="form" :rules="rules" label-width="80px">
|
<el-form ref="form" class="audit-form" :model="form" :rules="rules" label-width="80px">
|
||||||
<el-form-item label="学号" prop="stuNo">
|
<el-form-item label="学号" prop="stuNo">
|
||||||
<el-input v-model="form.stuNo" readonly />
|
<el-input v-model="form.stuNo" readonly />
|
||||||
@@ -155,7 +155,7 @@
|
|||||||
<el-button v-if="this.form.status == 0" type="primary" @click="submitForm">同 意</el-button>
|
<el-button v-if="this.form.status == 0" type="primary" @click="submitForm">同 意</el-button>
|
||||||
<el-button v-if="this.form.status == 0" @click="cancel">拒 绝</el-button>
|
<el-button v-if="this.form.status == 0" @click="cancel">拒 绝</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-dialog> -->
|
</el-dialog>
|
||||||
|
|
||||||
<!-- 查看学生调宿计划对话框 -->
|
<!-- 查看学生调宿计划对话框 -->
|
||||||
<el-dialog :visible.sync="taskV" title="查看学生调宿计划" width="90%">
|
<el-dialog :visible.sync="taskV" title="查看学生调宿计划" width="90%">
|
||||||
@@ -198,8 +198,14 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item label="学号" prop="stuNo">
|
<el-form-item label="学号" prop="stuNo">
|
||||||
<el-input v-model="applyForm.stuNo" style="width: 70%; display: inline-block;" />
|
<el-row :gutter="10">
|
||||||
<el-button type="primary" style="margin-left: 10px;" @click="fetchStudentInfo">查询</el-button>
|
<el-col :span="18">
|
||||||
|
<el-input v-model="applyForm.stuNo" />
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="6">
|
||||||
|
<el-button type="primary" style="width: 100%" @click="fetchStudentInfo">查询</el-button>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item label="姓名" prop="stuName">
|
<el-form-item label="姓名" prop="stuName">
|
||||||
@@ -215,7 +221,7 @@
|
|||||||
type="date"
|
type="date"
|
||||||
value-format="yyyy-MM-dd"
|
value-format="yyyy-MM-dd"
|
||||||
placeholder="请选择执行时间"
|
placeholder="请选择执行时间"
|
||||||
:picker-options="{ disabledDate: time => time.getTime() < new Date(new Date().setHours(0, 0, 0, 0)).getTime() }"
|
:picker-options="{ disabledDate: time => time.getTime() < Date.now() }"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
@@ -523,8 +529,8 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
/** 原辅导员审批提交按钮 */
|
/** 提交按钮 */
|
||||||
/* submitForm() {
|
submitForm() {
|
||||||
this.$refs['form'].validate(valid => {
|
this.$refs['form'].validate(valid => {
|
||||||
if (this.form.time == null && this.form.type != '3') {
|
if (this.form.time == null && this.form.type != '3') {
|
||||||
this.$message.info('请选择执行时间')
|
this.$message.info('请选择执行时间')
|
||||||
@@ -556,7 +562,7 @@ export default {
|
|||||||
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}, */
|
},
|
||||||
campusChange(e) {
|
campusChange(e) {
|
||||||
this.form.parkId = null
|
this.form.parkId = null
|
||||||
this.form.tarBuildingId = null
|
this.form.tarBuildingId = null
|
||||||
|
|||||||
@@ -304,7 +304,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { listAllEnableYear,listAllYear} from '@/api/stuCQS/basedata/year'
|
import { listAllEnableYear,listAllYear,getYearByTag} from '@/api/stuCQS/basedata/year'
|
||||||
|
|
||||||
import {
|
import {
|
||||||
listOwn as listApply,
|
listOwn as listApply,
|
||||||
getApply,
|
getApply,
|
||||||
@@ -319,6 +320,7 @@ import { listAllEnableYear,listAllYear} from '@/api/stuCQS/basedata/year'
|
|||||||
} from 'element-ui'
|
} from 'element-ui'
|
||||||
export default {
|
export default {
|
||||||
name: 'Apply',
|
name: 'Apply',
|
||||||
|
dicts: ['module_tag'],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
@@ -402,19 +404,47 @@ import { listAllEnableYear,listAllYear} from '@/api/stuCQS/basedata/year'
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
// 再查询列表数据
|
||||||
this.getList()
|
this.getList()
|
||||||
|
// 先获取学年数据
|
||||||
this.listAllStuYear()
|
this.listAllStuYear()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
||||||
//查所有年份
|
//查所有年份
|
||||||
listAllStuYear(){
|
listAllStuYear(){
|
||||||
listAllYear().then(res=>{
|
// 使用全局字典组件获取数据字典值
|
||||||
if(res.code == 200){
|
//const tagValue = this.$dict.type.module_tag.find(item => item.dictLabel === '困难认定')?.dictValue
|
||||||
this.enableYeas = res.data
|
|
||||||
this.stuYearId = this.enableYeas[0].id
|
|
||||||
}
|
|
||||||
|
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前页面的功能是获取'困难认定---KNRD'标签对应的学年信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
尽量避免学年标签字典的更改!!!! */
|
||||||
|
const tagValue = 'KNRD' /* <---"困难认定"标签对应的标签值 */
|
||||||
|
if (!tagValue) {
|
||||||
|
this.$modal.msgError('未找到标签值')
|
||||||
|
return // 如果没有标签值,则不执行后续操作
|
||||||
|
}
|
||||||
|
|
||||||
|
getYearByTag(tagValue).then(res=>{
|
||||||
|
if(res.code == 200){
|
||||||
|
this.enableYeas = res.data
|
||||||
|
if (this.enableYeas.length > 0) {
|
||||||
|
this.stuYearId = this.enableYeas[0].id
|
||||||
|
// 只有当有数据时才更新会话信息 sessionStorage
|
||||||
|
sessionStorage.setItem('knrdSelectedYear', JSON.stringify({
|
||||||
|
stuYearName: this.enableYeas[0].stuYearName,
|
||||||
|
id: this.enableYeas[0].id
|
||||||
|
}))
|
||||||
|
} else {
|
||||||
|
// 如果没有可用学年,清除 sessionStorage 中的相关数据
|
||||||
|
sessionStorage.removeItem('knrdSelectedYear')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).catch(error => {
|
||||||
|
console.error('获取学年信息失败:', error)
|
||||||
|
this.$modal.msgError('获取学年信息失败')
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
//确认选择学年
|
//确认选择学年
|
||||||
@@ -623,6 +653,16 @@ import { listAllEnableYear,listAllYear} from '@/api/stuCQS/basedata/year'
|
|||||||
...this.queryParams
|
...this.queryParams
|
||||||
}, `apply_${new Date().getTime()}.xlsx`)
|
}, `apply_${new Date().getTime()}.xlsx`)
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
mounted() {
|
||||||
|
// 确保数据字典已加载
|
||||||
|
/* if (!this.$dict.type.module_tag || this.$dict.type.module_tag.length === 0) {
|
||||||
|
// 如果数据字典未加载,重新加载并等待加载完成后再获取学年数据
|
||||||
|
this.$dict.reloadDict('module_tag').then(() => {
|
||||||
|
this.listAllStuYear();
|
||||||
|
});
|
||||||
|
} */
|
||||||
|
this.listAllStuYear();
|
||||||
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -136,7 +136,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { listAllEnableYear,listAllYear} from '@/api/stuCQS/basedata/year'
|
import { listAllEnableYear,listAllYear,getYearByTag} from '@/api/stuCQS/basedata/year'
|
||||||
import { listApply, getApply, delApply, addApply, updateApply, listOwn,isPoor,revoke} from '@/api/zxj/apply'
|
import { listApply, getApply, delApply, addApply, updateApply, listOwn,isPoor,revoke} from '@/api/zxj/apply'
|
||||||
import ImportTable from '../tool/gen/importTable.vue'
|
import ImportTable from '../tool/gen/importTable.vue'
|
||||||
|
|
||||||
@@ -221,13 +221,43 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
//查所有年份
|
//查所有年份
|
||||||
listAllStuYear(){
|
listAllStuYear(){
|
||||||
listAllYear().then(res=>{
|
/* listAllYear().then(res=>{
|
||||||
if(res.code == 200){
|
if(res.code == 200){
|
||||||
this.enableYeas = res.data
|
this.enableYeas = res.data
|
||||||
this.stuYearId = this.enableYeas[0].id
|
this.stuYearId = this.enableYeas[0].id
|
||||||
}
|
}
|
||||||
|
}) */
|
||||||
|
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前页面的功能是获取'国家助学金---ZXJ'标签对应的学年信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
尽量避免学年标签字典的更改!!!! */
|
||||||
|
const tagValue = 'ZXJ' /* <---"国家助学金---ZXJ"标签对应的标签值 */
|
||||||
|
if (!tagValue) {
|
||||||
|
this.$modal.msgError('未找到标签值')
|
||||||
|
return // 如果没有标签值,则不执行后续操作
|
||||||
|
}
|
||||||
|
getYearByTag(tagValue).then(res=>{
|
||||||
|
if(res.code == 200){
|
||||||
|
this.enableYeas = res.data
|
||||||
|
if (this.enableYeas.length > 0) {
|
||||||
|
this.stuYearId = this.enableYeas[0].id
|
||||||
|
// 只有当有数据时才更新会话信息 sessionStorage
|
||||||
|
sessionStorage.setItem('zxjSelectedYear', JSON.stringify({
|
||||||
|
stuYearName: this.enableYeas[0].stuYearName,
|
||||||
|
id: this.enableYeas[0].id
|
||||||
|
}))
|
||||||
|
} else {
|
||||||
|
// 如果没有可用学年,清除 sessionStorage 中的相关数据
|
||||||
|
sessionStorage.removeItem('zxjSelectedYear')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).catch(error => {
|
||||||
|
console.error('获取学年信息失败:', error)
|
||||||
|
this.$modal.msgError('获取学年信息失败')
|
||||||
|
})
|
||||||
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
//确认选择学年
|
//确认选择学年
|
||||||
yearConfirm(){
|
yearConfirm(){
|
||||||
@@ -399,7 +429,10 @@ export default {
|
|||||||
this.download('/comprehensive/zxj/apply/export', {
|
this.download('/comprehensive/zxj/apply/export', {
|
||||||
...this.queryParams
|
...this.queryParams
|
||||||
}, `apply_${new Date().getTime()}.xlsx`)
|
}, `apply_${new Date().getTime()}.xlsx`)
|
||||||
}
|
},
|
||||||
|
mounted() {
|
||||||
|
this.listAllStuYear(); //获取所有学年
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -77,7 +77,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<!-- 在表格中添加标签展示列(在状态列后添加) -->
|
<!-- 在表格中添加标签展示列(在状态列后添加) -->
|
||||||
<el-table-column label="模块标签" align="center" prop="moduleTags">
|
<el-table-column label="学年标签" align="center" prop="moduleTags">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<dict-tag
|
<dict-tag
|
||||||
:options="dict.type.module_tag"
|
:options="dict.type.module_tag"
|
||||||
|
|||||||
@@ -204,7 +204,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { fdyAudit, fdyExport, getStuScoreMajorRank, listFdyAll, listStuSportScore } from '@/api/comprehensive/biyeapply'
|
import { fdyAudit, fdyExport, getStuScoreMajorRank, listFdyAll, listStuSportScore,listStuSportScoreByTag } from '@/api/comprehensive/biyeapply'
|
||||||
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
||||||
import {
|
import {
|
||||||
applyStatus
|
applyStatus
|
||||||
@@ -462,7 +462,13 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async listStuSportScore(stuNo) {
|
async listStuSportScore(stuNo) {
|
||||||
let res = await listStuSportScore(stuNo)
|
/* let res = await listStuSportScore(stuNo) */
|
||||||
|
/*当前功能是获取'优秀毕业生---YXBY'标签对应学年的体测成绩。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'YXBY'
|
||||||
|
let res = await listStuSportScoreByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.sport_data = [...res.data.filter(x => x.sportScore != 0)]
|
this.sport_data = [...res.data.filter(x => x.sportScore != 0)]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -243,7 +243,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getStuScoreMajorRank, jwcAudit, jwcExport, listJwcAll, listStuSportScore } from '@/api/comprehensive/biyeapply'
|
import { getStuScoreMajorRank, jwcAudit, jwcExport, listJwcAll, listStuSportScore ,listStuSportScoreByTag} from '@/api/comprehensive/biyeapply'
|
||||||
import { listClass } from '@/api/stuCQS/basedata/class'
|
import { listClass } from '@/api/stuCQS/basedata/class'
|
||||||
import { listMajors } from '@/api/stuCQS/basedata/majors'
|
import { listMajors } from '@/api/stuCQS/basedata/majors'
|
||||||
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
||||||
@@ -574,7 +574,13 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async listStuSportScore(stuNo) {
|
async listStuSportScore(stuNo) {
|
||||||
let res = await listStuSportScore(stuNo)
|
/* let res = await listStuSportScore(stuNo) */
|
||||||
|
/*当前功能是获取'优秀毕业生---YXBY'标签对应学年的体测成绩。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'YXBY'
|
||||||
|
let res = await listStuSportScoreByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.sport_data = [...res.data.filter(x => x.sportScore != 0)]
|
this.sport_data = [...res.data.filter(x => x.sportScore != 0)]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -199,7 +199,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getStuScoreMajorRank, listStuSportScore, listXwAll, xwExport } from '@/api/comprehensive/biyeapply'
|
import { getStuScoreMajorRank, listStuSportScore,listStuSportScoreByTag, listXwAll, xwExport } from '@/api/comprehensive/biyeapply'
|
||||||
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
||||||
import {
|
import {
|
||||||
applyStatus
|
applyStatus
|
||||||
@@ -451,7 +451,13 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async listStuSportScore(stuNo) {
|
async listStuSportScore(stuNo) {
|
||||||
let res = await listStuSportScore(stuNo)
|
/* let res = await listStuSportScore(stuNo) */
|
||||||
|
/*当前功能是获取'优秀毕业生---YXBY'标签对应学年的体测成绩。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'YXBY'
|
||||||
|
let res = await listStuSportScoreByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.sport_data = [...res.data.filter(x => x.sportScore != 0)]
|
this.sport_data = [...res.data.filter(x => x.sportScore != 0)]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -285,6 +285,7 @@ import {
|
|||||||
fdyAudit, getStuScoreMajorRank,
|
fdyAudit, getStuScoreMajorRank,
|
||||||
listFdy,
|
listFdy,
|
||||||
listStuSportScore,
|
listStuSportScore,
|
||||||
|
listStuSportScoreByTag,
|
||||||
updateBiyeapply
|
updateBiyeapply
|
||||||
} from '@/api/comprehensive/biyeapply'
|
} from '@/api/comprehensive/biyeapply'
|
||||||
|
|
||||||
@@ -476,7 +477,13 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async listStuSportScore(stuNo) {
|
async listStuSportScore(stuNo) {
|
||||||
let res = await listStuSportScore(stuNo)
|
/* let res = await listStuSportScore(stuNo) */
|
||||||
|
/*当前功能是获取'优秀毕业生---YXBY'标签对应学年的体测成绩。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'YXBY'
|
||||||
|
let res = await listStuSportScoreByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.sport_data = [...res.data.filter(x => x.sportScore != 0)]
|
this.sport_data = [...res.data.filter(x => x.sportScore != 0)]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -284,7 +284,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import { getStuScoreMajorRank, jwcAudit, listJwc, listStuSportScore, manyAudit } from '@/api/comprehensive/biyeapply'
|
import { getStuScoreMajorRank, jwcAudit, listJwc, listStuSportScore,listStuSportScoreByTag, manyAudit } from '@/api/comprehensive/biyeapply'
|
||||||
import { listClass } from '@/api/stuCQS/basedata/class'
|
import { listClass } from '@/api/stuCQS/basedata/class'
|
||||||
import { listMajors } from '@/api/stuCQS/basedata/majors'
|
import { listMajors } from '@/api/stuCQS/basedata/majors'
|
||||||
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
||||||
@@ -541,7 +541,13 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async listStuSportScore(stuNo) {
|
async listStuSportScore(stuNo) {
|
||||||
let res = await listStuSportScore(stuNo)
|
/* let res = await listStuSportScore(stuNo) */
|
||||||
|
/*当前功能是获取'优秀毕业生---YXBY'标签对应学年的体测成绩。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'YXBY'
|
||||||
|
let res = await listStuSportScoreByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.sport_data = [...res.data.filter(x => x.sportScore != 0)]
|
this.sport_data = [...res.data.filter(x => x.sportScore != 0)]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -288,9 +288,9 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { cancelApply, doApply, getOwnStuScoreMajorRank, listOwnApply, listOwnSportScore, reApply } from '@/api/comprehensive/biyeapply'
|
import { cancelApply, doApply, getOwnStuScoreMajorRank, listOwnApply, listOwnSportScore,listOwnSportScoreByTag, reApply } from '@/api/comprehensive/biyeapply'
|
||||||
|
|
||||||
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
import { listAllYear as listYear,getYearByTag } from '@/api/stuCQS/basedata/year'
|
||||||
import lodash from 'lodash'
|
import lodash from 'lodash'
|
||||||
|
|
||||||
import { fullLoading, isEmpty } from '@/api/helpFunc'
|
import { fullLoading, isEmpty } from '@/api/helpFunc'
|
||||||
@@ -457,7 +457,13 @@ export default {
|
|||||||
async lookRankVClick() {
|
async lookRankVClick() {
|
||||||
let loading = fullLoading(this)
|
let loading = fullLoading(this)
|
||||||
let res = await getOwnStuScoreMajorRank()
|
let res = await getOwnStuScoreMajorRank()
|
||||||
let res1 = await listOwnSportScore()
|
/* let res1 = await listOwnSportScore() */
|
||||||
|
/*当前功能是获取'优秀毕业生---YXBY'标签对应学年的体测成绩。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'YXBY'
|
||||||
|
let res1 = await listOwnSportScoreByTag(yearTag)
|
||||||
loading.close()
|
loading.close()
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.rank_data = [res.data]
|
this.rank_data = [res.data]
|
||||||
@@ -555,7 +561,13 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
async listStuYear() {
|
async listStuYear() {
|
||||||
let res = await listYear()
|
/* let res = await listYear() */
|
||||||
|
/*当前功能是获取'优秀毕业生---YXBY'标签对应的学年。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'YXBY'
|
||||||
|
let res = await getYearByTag(yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.year_list = [...res.data]
|
this.year_list = [...res.data]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -261,7 +261,7 @@ import { listOwnClass } from '@/api/stuCQS/info-fill/stu_eva_task'
|
|||||||
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
||||||
import { listSelect } from '@/api/stuCQS/lake/type'
|
import { listSelect } from '@/api/stuCQS/lake/type'
|
||||||
import {
|
import {
|
||||||
listXw, xwAudit, getStuScoreMajorRank, listStuSportScore, xwManyAudit
|
listXw, xwAudit, getStuScoreMajorRank, listStuSportScore, listStuSportScoreByTag,xwManyAudit
|
||||||
} from '@/api/comprehensive/biyeapply'
|
} from '@/api/comprehensive/biyeapply'
|
||||||
|
|
||||||
import {
|
import {
|
||||||
@@ -488,7 +488,13 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async listStuSportScore(stuNo) {
|
async listStuSportScore(stuNo) {
|
||||||
let res = await listStuSportScore(stuNo)
|
/* let res = await listStuSportScore(stuNo) */
|
||||||
|
/*当前功能是获取'优秀毕业生---YXBY'标签对应学年的体测成绩。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'YXBY'
|
||||||
|
let res = await listStuSportScoreByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.sport_data = [...res.data.filter(x => x.sportScore != 0)]
|
this.sport_data = [...res.data.filter(x => x.sportScore != 0)]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -284,7 +284,7 @@ import { alipayVali } from '@/api/helpFunc/bank'
|
|||||||
|
|
||||||
import { cancelApply, doApply, getOwnClass, listStu, reApply } from '@/api/stuCQS/good-class/newClassGoodApply'
|
import { cancelApply, doApply, getOwnClass, listStu, reApply } from '@/api/stuCQS/good-class/newClassGoodApply'
|
||||||
|
|
||||||
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
import { listAllYear as listYear,getYearByTag } from '@/api/stuCQS/basedata/year'
|
||||||
|
|
||||||
import { getOwnInfo } from '@/api/stuCQS/basedata/student'
|
import { getOwnInfo } from '@/api/stuCQS/basedata/student'
|
||||||
|
|
||||||
@@ -450,7 +450,13 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async listStuYear() {
|
async listStuYear() {
|
||||||
let res = await listYear()
|
/* let res = await listYear() */
|
||||||
|
/*当前功能是获取'先进班集体---XJBJ'标签对应的学年。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'XJBJ'
|
||||||
|
let res = await getYearByTag(yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.year_list = [...res.data]
|
this.year_list = [...res.data]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -282,7 +282,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
listFdyAllAudit as listFdyAudit, lookDetail, listStuScoreClassRank, listStuYearCourseScore, countStuPass, countStuIam, fdyAudit
|
listFdyAllAudit as listFdyAudit, lookDetail, listStuScoreClassRank,listStuScoreClassRankByTag, listStuYearCourseScore, countStuPass, countStuIam, fdyAudit
|
||||||
, fdyExport, applyStatus, changeApply
|
, fdyExport, applyStatus, changeApply
|
||||||
} from '@/api/stuCQS/good/audit'
|
} from '@/api/stuCQS/good/audit'
|
||||||
import { listOwnClass } from '@/api/stuCQS/info-fill/stu_eva_task'
|
import { listOwnClass } from '@/api/stuCQS/info-fill/stu_eva_task'
|
||||||
@@ -633,7 +633,14 @@ export default {
|
|||||||
},
|
},
|
||||||
async listStuScoreClassRank() {
|
async listStuScoreClassRank() {
|
||||||
let stuNo = this.auditForm.stuNo
|
let stuNo = this.auditForm.stuNo
|
||||||
let res = await listStuScoreClassRank(stuNo)
|
/* let res = await listStuScoreClassRank(stuNo) */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'评优评先---PYPS'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'PYPS'
|
||||||
|
let res = await listStuScoreClassRankByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -284,8 +284,8 @@ import {
|
|||||||
} from '@/api/helpFunc'
|
} from '@/api/helpFunc'
|
||||||
import lodash from 'lodash'
|
import lodash from 'lodash'
|
||||||
import {
|
import {
|
||||||
listXyjxjCanType, listTermByYear, applyXyjxj, listOwnXyjxjApply, listOwnScoreClassRank
|
listXyjxjCanType, listTermByYear, applyXyjxj, listOwnXyjxjApply, listOwnScoreClassRank,listOwnScoreClassRankByTag,
|
||||||
, listOwnYearCourseScore, countOwnPass, countOwnIam, getOwnPassCountByCode, getOwnIamCountByCode
|
listOwnYearCourseScore, countOwnPass, countOwnIam, getOwnPassCountByCode, getOwnIamCountByCode
|
||||||
, cancelOwnApply
|
, cancelOwnApply
|
||||||
} from '@/api/stuCQS/good/apply'
|
} from '@/api/stuCQS/good/apply'
|
||||||
|
|
||||||
@@ -492,7 +492,14 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async listOwnScoreClassRank() {
|
async listOwnScoreClassRank() {
|
||||||
let res = await listOwnScoreClassRank()
|
/* let res = await listOwnScoreClassRank() */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'评优评先---PYPS'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'PYPS'
|
||||||
|
let res = await listOwnScoreClassRankByTag(yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
console.log(this.score_list)
|
console.log(this.score_list)
|
||||||
|
|||||||
@@ -276,7 +276,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
import { cancelOwnApply, reApply } from '@/api/stuCQS/good/apply'
|
import { cancelOwnApply, reApply,listOwnScoreClassRankByTag } from '@/api/stuCQS/good/apply'
|
||||||
|
|
||||||
import {
|
import {
|
||||||
goodStuApply, getMyApply, getMyGrade, verifyApplySHXS
|
goodStuApply, getMyApply, getMyGrade, verifyApplySHXS
|
||||||
@@ -466,7 +466,14 @@ export default {
|
|||||||
// 查询我的成绩
|
// 查询我的成绩
|
||||||
let res = await getMyGrade(this.courseParams)
|
let res = await getMyGrade(this.courseParams)
|
||||||
let countRes = await countOwnPassOther()
|
let countRes = await countOwnPassOther()
|
||||||
let rankList = await listOwnScoreClassRankOther()
|
/* let rankList = await listOwnScoreClassRankOther() */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'评优评先---PYPS'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'PYPS'
|
||||||
|
let rankList = await listOwnScoreClassRankByTag(yearTag)
|
||||||
if (countRes.code == 200) {
|
if (countRes.code == 200) {
|
||||||
this.count_list = [...countRes.data]
|
this.count_list = [...countRes.data]
|
||||||
}
|
}
|
||||||
@@ -550,7 +557,14 @@ export default {
|
|||||||
this.course_loading = true;
|
this.course_loading = true;
|
||||||
const res = await getMyGrade(this.courseParams);
|
const res = await getMyGrade(this.courseParams);
|
||||||
const countRes = await countOwnPassOther();
|
const countRes = await countOwnPassOther();
|
||||||
const rankList = await listOwnScoreClassRankOther();
|
/* const rankList = await listOwnScoreClassRankOther(); */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'评优评先---PYPS'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'PYPS'
|
||||||
|
let rankList = await listOwnScoreClassRankByTag(yearTag)
|
||||||
if (countRes.code == 200) {
|
if (countRes.code == 200) {
|
||||||
this.count_list = [...countRes.data];
|
this.count_list = [...countRes.data];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -283,7 +283,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
listDeptAudit, lookDetail, listStuScoreClassRank, listStuYearCourseScore, countStuPass, countStuIam, deptAudit
|
listDeptAudit, lookDetail, listStuScoreClassRank,listStuScoreClassRankByTag, listStuYearCourseScore, countStuPass, countStuIam, deptAudit
|
||||||
, xwExport, applyStatus
|
, xwExport, applyStatus
|
||||||
} from '@/api/stuCQS/good/audit'
|
} from '@/api/stuCQS/good/audit'
|
||||||
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
||||||
@@ -604,7 +604,14 @@ export default {
|
|||||||
},
|
},
|
||||||
async listStuScoreClassRank() {
|
async listStuScoreClassRank() {
|
||||||
let stuNo = this.auditForm.stuNo
|
let stuNo = this.auditForm.stuNo
|
||||||
let res = await listStuScoreClassRank(stuNo)
|
/* let res = await listStuScoreClassRank(stuNo) */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'评优评先---PYPS'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'PYPS'
|
||||||
|
let res = await listStuScoreClassRankByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -360,7 +360,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { isEmpty } from '@/api/helpFunc'
|
import { isEmpty } from '@/api/helpFunc'
|
||||||
import {
|
import {
|
||||||
listAllAudit, lookDetail, listStuScoreClassRank, listStuYearCourseScore, countStuPass, countStuIam, deptAudit, importJxj,
|
listAllAudit, lookDetail, listStuScoreClassRank,listStuScoreClassRankByTag, listStuYearCourseScore, countStuPass, countStuIam, deptAudit, importJxj,
|
||||||
importShxs, importYxbg, applyStatus, voidApply, changeApply
|
importShxs, importYxbg, applyStatus, voidApply, changeApply
|
||||||
} from '@/api/stuCQS/good/audit'
|
} from '@/api/stuCQS/good/audit'
|
||||||
import lodash from 'lodash'
|
import lodash from 'lodash'
|
||||||
@@ -850,7 +850,14 @@ export default {
|
|||||||
},
|
},
|
||||||
async listStuScoreClassRank() {
|
async listStuScoreClassRank() {
|
||||||
let stuNo = this.auditForm.stuNo
|
let stuNo = this.auditForm.stuNo
|
||||||
let res = await listStuScoreClassRank(stuNo)
|
/* let res = await listStuScoreClassRank(stuNo) */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'评优评先---PYPS'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'PYPS'
|
||||||
|
let res = await listStuScoreClassRankByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -367,7 +367,7 @@ import {
|
|||||||
fdyAudit,
|
fdyAudit,
|
||||||
fdyExport,
|
fdyExport,
|
||||||
listFdyAudit,
|
listFdyAudit,
|
||||||
listStuScoreClassRank, listStuYearCourseScore,
|
listStuScoreClassRank,listStuScoreClassRankByTag, listStuYearCourseScore,
|
||||||
lookDetail
|
lookDetail
|
||||||
} from '@/api/stuCQS/good/audit'
|
} from '@/api/stuCQS/good/audit'
|
||||||
import { listOwnClass } from '@/api/stuCQS/info-fill/stu_eva_task'
|
import { listOwnClass } from '@/api/stuCQS/info-fill/stu_eva_task'
|
||||||
@@ -745,7 +745,14 @@ export default {
|
|||||||
},
|
},
|
||||||
async listStuScoreClassRank() {
|
async listStuScoreClassRank() {
|
||||||
let stuNo = this.auditForm.stuNo
|
let stuNo = this.auditForm.stuNo
|
||||||
let res = await listStuScoreClassRank(stuNo)
|
/* let res = await listStuScoreClassRank(stuNo) */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'评优评先---PYPS'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'PYPS'
|
||||||
|
let res = await listStuScoreClassRankByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -370,7 +370,7 @@
|
|||||||
import { isEmpty, groupBy } from '@/api/helpFunc'
|
import { isEmpty, groupBy } from '@/api/helpFunc'
|
||||||
import {
|
import {
|
||||||
manyAudit,
|
manyAudit,
|
||||||
listJwcAudit, lookDetail, listStuScoreClassRank, listStuYearCourseScore, countStuPass, countStuIam, finalAudit
|
listJwcAudit, lookDetail, listStuScoreClassRank,listStuScoreClassRankByTag, listStuYearCourseScore, countStuPass, countStuIam, finalAudit
|
||||||
} from '@/api/stuCQS/good/audit'
|
} from '@/api/stuCQS/good/audit'
|
||||||
import lodash from 'lodash'
|
import lodash from 'lodash'
|
||||||
|
|
||||||
@@ -622,7 +622,14 @@ export default {
|
|||||||
},
|
},
|
||||||
async listStuScoreClassRank() {
|
async listStuScoreClassRank() {
|
||||||
let stuNo = this.auditForm.stuNo
|
let stuNo = this.auditForm.stuNo
|
||||||
let res = await listStuScoreClassRank(stuNo)
|
/* let res = await listStuScoreClassRank(stuNo) */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'评优评先---PYPS'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'PYPS'
|
||||||
|
let res = await listStuScoreClassRankByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -260,7 +260,7 @@
|
|||||||
import { isEmpty, groupBy } from '@/api/helpFunc'
|
import { isEmpty, groupBy } from '@/api/helpFunc'
|
||||||
import {
|
import {
|
||||||
manyAudit,
|
manyAudit,
|
||||||
listXwAudit, lookDetail, listStuScoreClassRank, listStuYearCourseScore, countStuPass, countStuIam, deptAudit
|
listXwAudit, lookDetail, listStuScoreClassRank,listStuScoreClassRankByTag, listStuYearCourseScore, countStuPass, countStuIam, deptAudit
|
||||||
} from '@/api/stuCQS/good/audit'
|
} from '@/api/stuCQS/good/audit'
|
||||||
import lodash from 'lodash'
|
import lodash from 'lodash'
|
||||||
|
|
||||||
@@ -435,7 +435,14 @@ export default {
|
|||||||
},
|
},
|
||||||
async listStuScoreClassRank() {
|
async listStuScoreClassRank() {
|
||||||
let stuNo = this.auditForm.stuNo
|
let stuNo = this.auditForm.stuNo
|
||||||
let res = await listStuScoreClassRank(stuNo)
|
/* let res = await listStuScoreClassRank(stuNo) */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'评优评先---PYPS'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'PYPS'
|
||||||
|
let res = await listStuScoreClassRankByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -270,7 +270,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
lookDetail, listStuScoreClassRank, listStuYearCourseScore, countStuPass, countStuIam
|
lookDetail, listStuScoreClassRank,listStuScoreClassRankByTag, listStuYearCourseScore, countStuPass, countStuIam
|
||||||
, applyStatus
|
, applyStatus
|
||||||
} from '@/api/stuCQS/good/audit'
|
} from '@/api/stuCQS/good/audit'
|
||||||
import { listOwnClass } from '@/api/stuCQS/info-fill/stu_eva_task'
|
import { listOwnClass } from '@/api/stuCQS/info-fill/stu_eva_task'
|
||||||
@@ -592,7 +592,14 @@ export default {
|
|||||||
},
|
},
|
||||||
async listStuScoreClassRank() {
|
async listStuScoreClassRank() {
|
||||||
let stuNo = this.auditForm.stuNo
|
let stuNo = this.auditForm.stuNo
|
||||||
let res = await listStuScoreClassRank(stuNo)
|
/* let res = await listStuScoreClassRank(stuNo) */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'静湖之星---JHZX'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'JHZX'
|
||||||
|
let res = await listStuScoreClassRankByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -316,7 +316,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
listStuScoreClassRank, listStuYearCourseScore, countStuPass, countStuIam
|
listStuScoreClassRank,listStuScoreClassRankByTag, listStuYearCourseScore, countStuPass, countStuIam
|
||||||
, applyStatus
|
, applyStatus
|
||||||
} from '@/api/stuCQS/good/audit'
|
} from '@/api/stuCQS/good/audit'
|
||||||
import { listOwnClass } from '@/api/stuCQS/info-fill/stu_eva_task'
|
import { listOwnClass } from '@/api/stuCQS/info-fill/stu_eva_task'
|
||||||
@@ -695,7 +695,14 @@ export default {
|
|||||||
},
|
},
|
||||||
async listStuScoreClassRank() {
|
async listStuScoreClassRank() {
|
||||||
let stuNo = this.auditForm.stuNo
|
let stuNo = this.auditForm.stuNo
|
||||||
let res = await listStuScoreClassRank(stuNo)
|
/* let res = await listStuScoreClassRank(stuNo) */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'静湖之星---JHZX'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'JHZX'
|
||||||
|
let res = await listStuScoreClassRankByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -267,7 +267,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
listStuScoreClassRank, listStuYearCourseScore, countStuPass, countStuIam
|
listStuScoreClassRank,listStuScoreClassRankByTag,listStuYearCourseScore, countStuPass, countStuIam
|
||||||
, applyStatus
|
, applyStatus
|
||||||
} from '@/api/stuCQS/good/audit'
|
} from '@/api/stuCQS/good/audit'
|
||||||
import { listOwnClass } from '@/api/stuCQS/info-fill/stu_eva_task'
|
import { listOwnClass } from '@/api/stuCQS/info-fill/stu_eva_task'
|
||||||
@@ -558,7 +558,14 @@ export default {
|
|||||||
},
|
},
|
||||||
async listStuScoreClassRank() {
|
async listStuScoreClassRank() {
|
||||||
let stuNo = this.auditForm.stuNo
|
let stuNo = this.auditForm.stuNo
|
||||||
let res = await listStuScoreClassRank(stuNo)
|
/* let res = await listStuScoreClassRank(stuNo) */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'静湖之星---JHZX'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'JHZX'
|
||||||
|
let res = await listStuScoreClassRankByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -371,7 +371,7 @@ import { listSelect } from '@/api/stuCQS/lake/type'
|
|||||||
import { listFdy, fdyAudit, updateLakeapply } from '@/api/stuCQS/lake/apply'
|
import { listFdy, fdyAudit, updateLakeapply } from '@/api/stuCQS/lake/apply'
|
||||||
|
|
||||||
import {
|
import {
|
||||||
listStuScoreClassRank, listStuYearCourseScore, countStuPass, countStuIam, applyStatus
|
listStuScoreClassRank,listStuScoreClassRankByTag,listStuYearCourseScore, countStuPass, countStuIam, applyStatus
|
||||||
} from '@/api/stuCQS/good/audit'
|
} from '@/api/stuCQS/good/audit'
|
||||||
|
|
||||||
import lodash from 'lodash'
|
import lodash from 'lodash'
|
||||||
@@ -663,7 +663,14 @@ export default {
|
|||||||
},
|
},
|
||||||
async listStuScoreClassRank() {
|
async listStuScoreClassRank() {
|
||||||
let stuNo = this.auditForm.stuNo
|
let stuNo = this.auditForm.stuNo
|
||||||
let res = await listStuScoreClassRank(stuNo)
|
/* let res = await listStuScoreClassRank(stuNo) */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'静湖之星---JHZX'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'JHZX'
|
||||||
|
let res = await listStuScoreClassRankByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -375,7 +375,7 @@ import { listSelect } from '@/api/stuCQS/lake/type'
|
|||||||
import { listJwc, jwcAudit, manyAudit } from '@/api/stuCQS/lake/apply'
|
import { listJwc, jwcAudit, manyAudit } from '@/api/stuCQS/lake/apply'
|
||||||
|
|
||||||
import {
|
import {
|
||||||
listStuScoreClassRank, listStuYearCourseScore, countStuPass, countStuIam, applyStatus
|
listStuScoreClassRank,listStuScoreClassRankByTag ,listStuYearCourseScore, countStuPass, countStuIam, applyStatus
|
||||||
} from '@/api/stuCQS/good/audit'
|
} from '@/api/stuCQS/good/audit'
|
||||||
|
|
||||||
import lodash from 'lodash'
|
import lodash from 'lodash'
|
||||||
@@ -655,7 +655,14 @@ export default {
|
|||||||
},
|
},
|
||||||
async listStuScoreClassRank() {
|
async listStuScoreClassRank() {
|
||||||
let stuNo = this.auditForm.stuNo
|
let stuNo = this.auditForm.stuNo
|
||||||
let res = await listStuScoreClassRank(stuNo)
|
/* let res = await listStuScoreClassRank(stuNo) */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'静湖之星---JHZX'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'JHZX'
|
||||||
|
let res = await listStuScoreClassRankByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -551,7 +551,7 @@ import { listOneHundred, listSelect } from '@/api/stuCQS/lake/type'
|
|||||||
|
|
||||||
import { applyLake, applyTen, cancelOwnApply, listOwnApply, reApplyLake } from '@/api/stuCQS/lake/apply'
|
import { applyLake, applyTen, cancelOwnApply, listOwnApply, reApplyLake } from '@/api/stuCQS/lake/apply'
|
||||||
|
|
||||||
import { listAllYear as listYear } from '@/api/stuCQS/basedata/year'
|
import { listAllYear as listYear,getYearByTag } from '@/api/stuCQS/basedata/year'
|
||||||
import {
|
import {
|
||||||
countOwnIam,
|
countOwnIam,
|
||||||
countOwnPass,
|
countOwnPass,
|
||||||
@@ -559,6 +559,7 @@ import {
|
|||||||
getOwnPassCountByCode,
|
getOwnPassCountByCode,
|
||||||
getOwnRankByCode,
|
getOwnRankByCode,
|
||||||
listOwnScoreClassRank,
|
listOwnScoreClassRank,
|
||||||
|
listOwnScoreClassRankByTag,
|
||||||
listOwnYearCourseScore,
|
listOwnYearCourseScore,
|
||||||
listXyjxjCanType
|
listXyjxjCanType
|
||||||
} from '@/api/stuCQS/good/apply'
|
} from '@/api/stuCQS/good/apply'
|
||||||
@@ -871,7 +872,14 @@ export default {
|
|||||||
window.open('http://zhxg.gxsdxy.cn/file/jhzx2023.pdf')
|
window.open('http://zhxg.gxsdxy.cn/file/jhzx2023.pdf')
|
||||||
},
|
},
|
||||||
async listStuYear() {
|
async listStuYear() {
|
||||||
let res = await listYear()
|
/* let res = await listYear() */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'静湖之星---JHZX'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'JHZX'
|
||||||
|
let res = await getYearByTag(yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.year_list = [...res.data]
|
this.year_list = [...res.data]
|
||||||
}
|
}
|
||||||
@@ -1110,7 +1118,14 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async listOwnScoreClassRank() {
|
async listOwnScoreClassRank() {
|
||||||
let res = await listOwnScoreClassRank()
|
/* let res = await listOwnScoreClassRank() */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'静湖之星---JHZX'标签对应的学年。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'JHZX'
|
||||||
|
let res = await listOwnScoreClassRankByTag(yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -343,7 +343,7 @@ import { listSelect } from '@/api/stuCQS/lake/type'
|
|||||||
import { listXw, xwAudit } from '@/api/stuCQS/lake/apply'
|
import { listXw, xwAudit } from '@/api/stuCQS/lake/apply'
|
||||||
|
|
||||||
import {
|
import {
|
||||||
listStuScoreClassRank, listStuYearCourseScore, countStuPass, countStuIam
|
listStuScoreClassRank,listStuScoreClassRankByTag, listStuYearCourseScore, countStuPass, countStuIam
|
||||||
, applyStatus
|
, applyStatus
|
||||||
} from '@/api/stuCQS/good/audit'
|
} from '@/api/stuCQS/good/audit'
|
||||||
|
|
||||||
@@ -563,7 +563,14 @@ export default {
|
|||||||
},
|
},
|
||||||
async listStuScoreClassRank() {
|
async listStuScoreClassRank() {
|
||||||
let stuNo = this.auditForm.stuNo
|
let stuNo = this.auditForm.stuNo
|
||||||
let res = await listStuScoreClassRank(stuNo)
|
/* let res = await listStuScoreClassRank(stuNo) */
|
||||||
|
/* 此处使用硬编码,请根据实际情况修改。
|
||||||
|
当前功能是获取'静湖之星---JHZX'标签对应学年的成绩排名信息。
|
||||||
|
涉及到学年标签字典module_tag,需要在字典管理中查询对应的信息。
|
||||||
|
如果在字典管理更改了 学年标签 的信息,此处也要进行相应修改。
|
||||||
|
---尽量避免学年标签字典的更改!!!! */
|
||||||
|
const yearTag = 'JHZX'
|
||||||
|
let res = await listStuScoreClassRankByTag(stuNo,yearTag)
|
||||||
if (res.code == 200) {
|
if (res.code == 200) {
|
||||||
this.score_list = lodash.cloneDeep(res.data)
|
this.score_list = lodash.cloneDeep(res.data)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user