Commit 5d31e0ad authored by 徐俊's avatar 徐俊
parents 003e1d71 797b83de
import Vue from 'vue' import Vue from 'vue'
import Api from '@/api/index.js' import api from '@/api'
const state = { const state = {
dict: {}, dict: {},
queue: [] queue: []
...@@ -24,10 +25,10 @@ const mutations = { ...@@ -24,10 +25,10 @@ const mutations = {
} }
} }
const actions = { const actions = {
getDict: (state) => { getDict: ({ commit, state }, type) => {
return state.dict return state.dict
}, },
getDictByType: (state) => (type) => { getDictByType: ({ dispatch, state }, type) => {
/** /**
* 闭包特性。返回一个函数,该函数接收一个type参数。 * 闭包特性。返回一个函数,该函数接收一个type参数。
* 同时由于闭包还持有state对象,故可以返回需要的值。 * 同时由于闭包还持有state对象,故可以返回需要的值。
...@@ -43,25 +44,24 @@ const actions = { ...@@ -43,25 +44,24 @@ const actions = {
// 没有缓存则请求数据 // 没有缓存则请求数据
if (!isExistence) { if (!isExistence) {
// 在异步请求之前将该任务标记为已缓存(存入队列) // 在异步请求之前将该任务标记为已缓存(存入队列)
commit('SET_QUEUE', 'dict/' + type) this.commit('cache/SET_QUEUE', 'dict/' + type)
return new Promise((resolve, reject) => { return new Promise(async (resolve, reject) => {
return Api.getDict(type) await api.parameter.getArrayListByType({ typeId: type })
.then((res) => { .then(({ data = {} }) => {
const { code, data } = res if (data) {
if (code && code !== 200) { try {
// 获取失败移除缓存队列 this.commit('cache/SET_DICT', { type: type, list: data })
commit('DEL_QUEUE', 'dict/' + type) resolve(data)
reject(res) } catch (error) {
reject(error)
}
} else { } else {
// 获取到的值存入字典 reject('error')
commit('SET_DICT', { type: type, list: data })
resolve(res)
} }
}) }).catch(err => {
.catch((error) => {
// 获取失败移除缓存队列 // 获取失败移除缓存队列
commit('DEL_QUEUE', 'dict/' + type) this.commit('cache/DEL_QUEUE', 'dict/' + type)
reject(error) reject(err.response)
}) })
}) })
} else { } else {
......
...@@ -74,11 +74,11 @@ export default { ...@@ -74,11 +74,11 @@ export default {
value: { value: {
handler (value) { handler (value) {
if (!!value) { if (!!value) {
this.selected = getSpecArray(this.value) // this.selected = getSpecArray(this.value)
if (!!this.selected && this.selected.length == 3) { // if (!!this.selected && this.selected.length == 3) {
this.$emit("input", this.selected[2]) // this.$emit("input", this.selected[2])
this.$emit("change"); // this.$emit("change");
} // }
} }
}, },
}, },
......
<template> <template>
<div style=" width:auto; display:inline-block !important; display:inline;"> <div style=" width:auto; display:inline-block !important; display:inline;">
<a-select :style="{width: width? width+ 'px':'80%'}" v-model="selected" @change="paraChange($event)" :key="0"> <a-select :style="{width: width? width+ 'px':'80%'}" v-model="selected" @change="onChange($event)" :key="0">
<a-select-option v-for="item in selectArray" :key="item.key" :value="item.key" select>{{ item.title }}</a-select-option> <a-select-option v-for="item in selectArray" :key="item.key" :value="item.key" select>{{ item.title }}</a-select-option>
</a-select> </a-select>
</div> </div>
</template> </template>
<script> <script>
// 用法 <para-select v-model="formData.projClass" :typeId="52" />
export default { export default {
name: "paraSelect", name: "paraSelect",
data () { data () {
...@@ -49,17 +49,16 @@ export default { ...@@ -49,17 +49,16 @@ export default {
}, },
}, },
created () { created () {
this.loadSelected() this.load()
}, },
methods: { methods: {
loadSelected () { load () {
let pars = { typeId: this.typeId } let pars = { typeId: this.typeId }
this.$api.parameter.getParameterList(pars).then(({ data = { data } }) => { this.$api.parameter.getParameterList(pars).then(({ data = { data } }) => {
if (data) { if (data) {
this.selectArray = data.data this.selectArray = data.data
this.selectArray.unshift(this.defaultValue) this.selectArray.unshift(this.defaultValue)
if (!!this.value) { if (!!this.value) {
this.loadState = true
this.selected = this.value this.selected = this.value
} }
else else
...@@ -67,7 +66,7 @@ export default { ...@@ -67,7 +66,7 @@ export default {
} }
}).catch(() => { }) }).catch(() => { })
}, },
paraChange (value) { onChange (value) {
this.$emit("input", value); this.$emit("input", value);
var newArr = this.selectArray.filter(x => x.key == value); var newArr = this.selectArray.filter(x => x.key == value);
if (!!newArr && newArr.length > 0) { if (!!newArr && newArr.length > 0) {
......
<template> <template>
<div style="height:75vh;overflow:auto" class="app-content"> <div style="height:75vh;overflow:auto" class="app-content">
<a-form-model ref="form" :model="formData" :rules="rules" class="from-table font-line-space"> <!-- <a-form-model ref="form" :model="value" :rules="rules" class="from-table font-line-space"> -->
<a-row type="flex"> <a-row type="flex">
<a-col :span="4" class="bg-gray"> <a-col :span="4" class="bg-gray">
<div class="special-middle"> <div class="special-middle">
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
</a-col> </a-col>
<a-col :span="20"> <a-col :span="20">
<div class="special-middle"> <div class="special-middle">
<div>{{ }}</div> <div>{{ value.projName }}</div>
</div> </div>
</a-col> </a-col>
</a-row> </a-row>
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
</a-col> </a-col>
<a-col :span="8"> <a-col :span="8">
<div class="special-middle"> <div class="special-middle">
<div>{{ }}</div> <div>{{ value.appUnitName }}</div>
</div> </div>
</a-col> </a-col>
<a-col :span="4" class="bg-gray"> <a-col :span="4" class="bg-gray">
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
</a-col> </a-col>
<a-col :span="8"> <a-col :span="8">
<div class="special-middle"> <div class="special-middle">
<div>{{ Count() }}</div> <div>{{ value.appPersonName }}</div>
</div> </div>
</a-col> </a-col>
</a-row> </a-row>
...@@ -56,61 +56,61 @@ ...@@ -56,61 +56,61 @@
<td>{{ item.meaning }}</td> <td>{{ item.meaning }}</td>
<td style="text-align: center;" :rowspan="item.row3" v-if="item.row3>0"> <td style="text-align: center;" :rowspan="item.row3" v-if="item.row3>0">
<a-form-model-item :prop="'score' + item.order" v-if="item.order==1"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==1">
<a-input-number v-model="formData.score1" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score1" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==2"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==2">
<a-input-number v-model="formData.score2" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score2" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==3"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==3">
<a-input-number v-model="formData.score3" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score3" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==4"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==4">
<a-input-number v-model="formData.score4" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score4" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==5"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==5">
<a-input-number v-model="formData.score5" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score5" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==6"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==6">
<a-input-number v-model="formData.score6" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score6" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==7"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==7">
<a-input-number v-model="formData.score7" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score7" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==8"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==8">
<a-input-number v-model="formData.score8" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score8" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==9"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==9">
<a-input-number v-model="formData.score9" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score9" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==10"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==10">
<a-input-number v-model="formData.score10" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score10" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==11"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==11">
<a-input-number v-model="formData.score11" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score11" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==12"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==12">
<a-input-number v-model="formData.score12" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score12" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==13"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==13">
<a-input-number v-model="formData.score13" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score13" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==14"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==14">
<a-input-number v-model="formData.score14" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score14" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==15"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==15">
<a-input-number v-model="formData.score15" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score15" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==16"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==16">
<a-input-number v-model="formData.score16" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score16" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==17"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==17">
<a-input-number v-model="formData.score17" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score17" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==18"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==18">
<a-input-number v-model="formData.score18" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score18" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
<a-form-model-item :prop="'score' + item.order" v-if="item.order==19"> <a-form-model-item :prop="'score' + item.order" v-if="item.order==19">
<a-input-number v-model="formData.score19" :min="0" :max="item.max" style="width: 60%" /> <a-input-number v-model="value.score19" :min="0" :max="item.max" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
</td> </td>
</tr> </tr>
...@@ -122,18 +122,50 @@ ...@@ -122,18 +122,50 @@
<td colspan="3">未发现问题,则该指标不适用;发现问题的,每涉及一个项目扣3分</td> <td colspan="3">未发现问题,则该指标不适用;发现问题的,每涉及一个项目扣3分</td>
<td style="text-align: center;"> <td style="text-align: center;">
<a-form-model-item :prop="'additionalScore'"> <a-form-model-item :prop="'additionalScore'">
<a-input-number v-model="formData.additionalScore" :max="0" style="width: 60%" /> <a-input-number v-model="value.additionalScore" :max="0" style="width: 60%" />
</a-form-model-item> </a-form-model-item>
</td> </td>
</tr> </tr>
<tr> <tr>
<td style="text-align: center;" colspan="7">总得分</td> <td style="text-align: center;" colspan="7">总得分</td>
<td style="text-align: center;"> <td style="text-align: center;">
{{0}} {{Count()}}
</td>
</tr>
<tr>
<td colspan="4" style="text-align: right;">项目申报财政支持金额(万元)</td>
<td colspan="4" style="text-align: left;"> {{ value.applyFunding}}</td>
</tr>
<tr>
<td colspan="4" style="text-align: right;">项目预算评审建议财政支持金额(万元)</td>
<td colspan="4" style="text-align: left;">
<a-form-model-item :prop="'recommendFunding'">
<a-input-number v-model="value.recommendFunding" :min="0" style="width:100px" />
</a-form-model-item>
</td>
</tr>
<tr>
<td colspan="4" style="text-align: right;">意见与建议</td>
<td colspan="4" style="text-align: left;">
<a-form-model-item prop="remark">
<a-textarea placeholder="评审意见" v-model="value.remark" :maxLength="1000" style="width: 80%; height: 120px; margin-top: 6px" />
</a-form-model-item>
</td>
</tr>
<tr>
<td colspan="4" class="bg-title" style="text-align: right;">评审结果</td>
<td colspan="4">
<a-form-model-item prop="evaluationType">
<a-radio-group v-model="value.evaluationType" disabled>
<a-radio :value="1">A类(通过)</a-radio>
<a-radio :value="2">B类(建议修改)</a-radio>
<a-radio :value="3">C类(不通过)</a-radio>
</a-radio-group>
</a-form-model-item>
</td> </td>
</tr> </tr>
</table> </table>
</a-form-model> <!-- </a-form-model> -->
</div> </div>
</template> </template>
...@@ -153,7 +185,7 @@ export default { ...@@ -153,7 +185,7 @@ export default {
data () { data () {
return { return {
fromList: standardList, fromList: standardList,
formData: { w: {
score1: null, score1: null,
score2: null, score2: null,
score3: null, score3: null,
...@@ -174,6 +206,11 @@ export default { ...@@ -174,6 +206,11 @@ export default {
score18: null, score18: null,
score19: null, score19: null,
additionalScore: null, additionalScore: null,
totalScore: null,
applyFunding: null,
recommendFunding: null,
remark: null,
evaluationType: null,
}, },
rules: { rules: {
score1: { required: true, message: "*", trigger: "blur" }, score1: { required: true, message: "*", trigger: "blur" },
...@@ -196,6 +233,9 @@ export default { ...@@ -196,6 +233,9 @@ export default {
score18: { required: true, message: "*", trigger: "blur" }, score18: { required: true, message: "*", trigger: "blur" },
score19: { required: true, message: "*", trigger: "blur" }, score19: { required: true, message: "*", trigger: "blur" },
additionalScore: { required: true, message: "*", trigger: "blur" }, additionalScore: { required: true, message: "*", trigger: "blur" },
recommendFunding: { required: true, message: "*", trigger: "blur" },
remark: { required: true, message: "*", trigger: "blur" },
evaluationType: { required: true, message: "*", trigger: "change" },
}, },
}; };
}, },
...@@ -204,39 +244,29 @@ export default { ...@@ -204,39 +244,29 @@ export default {
}, },
methods: { methods: {
Count () { Count () {
var s = 0.0;
for (var i = 1; i <= 19; i++) { for (var i = 1; i <= 19; i++) {
console.log(this.formData['score' + i]) if (this.value['score' + i]) {
s += parseFloat(this.value['score' + i])
} }
return 0.00 }
// if (!source || !source.length) { if (!!this.value.additionalScore) {
// return 0.00 s += parseFloat(this.value.additionalScore)
// } }
// let applyFunds = 0.00 s = s.toFixed(1) * 10 / 10
// let selfFunds = 0.00 this.value.totalScore = s
// source.forEach(i => { this.determineType()
// applyFunds = parseFloat(applyFunds + this.budget[i].applyFunds) return s
// selfFunds = parseFloat(selfFunds + this.budget[i].selfFunds)
// })
// if (type === 'applyFunds') {
// this.budget[index].applyFunds = applyFunds.toFixed(2)
// return applyFunds.toFixed(2)
// } else if (type === 'selfFunds') {
// this.budget[index].selfFunds = selfFunds.toFixed(2)
// return selfFunds.toFixed(2)
// } else {
// this.budget[index].totalBudget = (applyFunds + selfFunds).toFixed(2)
// return parseFloat(applyFunds + selfFunds).toFixed(2)
// }
}, },
determineType () {
if (this.value.totalScore >= 80)
this.value.evaluationType = 1
else if (this.value.totalScore < 80 && this.value.totalScore >= 60)
this.value.evaluationType = 2
else
this.value.evaluationType = 3
}, },
watch: {
formData: {
handler (value) {
console.log(value)
}, },
deep: true
}
}
}; };
</script> </script>
<style scoped lang="less"> <style scoped lang="less">
......
...@@ -11,9 +11,8 @@ ...@@ -11,9 +11,8 @@
<div v-show="tabsActive==='1'" style="height:100%;"> <div v-show="tabsActive==='1'" style="height:100%;">
<div style="height:calc(100% - 40px);overflow: auto;"> <div style="height:calc(100% - 40px);overflow: auto;">
<a-form-model ref="form" :model="formData" :rules="rules" class="from-table font-line-space"> <a-form-model ref="form" :model="formData" :rules="rules" class="from-table font-line-space">
<economy v-model="formData" v-if="false"/>
<technology-evalucation v-if="totalFunding >= 50" v-model="formData"></technology-evalucation> <technology-evalucation v-if="totalFunding >= 50" v-model="formData"></technology-evalucation>
<economy v-if="totalFunding < 50" v-model="formData" />
<div v-else> <div v-else>
<a-row type="flex"> <a-row type="flex">
<a-col :span="4" class="bg-gray"> <a-col :span="4" class="bg-gray">
...@@ -191,6 +190,10 @@ export default { ...@@ -191,6 +190,10 @@ export default {
remark: [{ required: true, message: '请填写评审意见', trigger: 'blur' },], remark: [{ required: true, message: '请填写评审意见', trigger: 'blur' },],
supportState: { required: true, message: "请选择是否支持立项", trigger: "blur" }, supportState: { required: true, message: "请选择是否支持立项", trigger: "blur" },
evaluationType: { required: true, message: "*", trigger: "blur" }, evaluationType: { required: true, message: "*", trigger: "blur" },
score18: { required: true, message: "*", trigger: "blur" },
score19: { required: true, message: "*", trigger: "blur" },
additionalScore: { required: true, message: "*", trigger: "blur" },
recommendFunding: { required: true, message: "*", trigger: "blur" },
}, },
projectInfo: { projectInfo: {
projName: '', projName: '',
...@@ -287,6 +290,10 @@ export default { ...@@ -287,6 +290,10 @@ export default {
if (this.projectInfo.fileList[i].fileExplain.indexOf("项目申报简要信息首页") == -1 && this.projectInfo.fileList[i].fileExplain.indexOf("项目组成员签字") == -1) if (this.projectInfo.fileList[i].fileExplain.indexOf("项目申报简要信息首页") == -1 && this.projectInfo.fileList[i].fileExplain.indexOf("项目组成员签字") == -1)
fileArr.push(this.projectInfo.fileList[i]) fileArr.push(this.projectInfo.fileList[i])
} }
this.formData.projName = data.projName
this.formData.appUnitName = data.appUnitName
this.formData.appPersonName = data.appPersonName
this.formData.applyFunding = data.govFunding
this.projectInfo.fileList = fileArr this.projectInfo.fileList = fileArr
this.isProjectInfoLoad = true this.isProjectInfoLoad = true
this.loading = false this.loading = false
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
<a-divider style="height: 1px; background-color: #e8e8e8;" /> <a-divider style="height: 1px; background-color: #e8e8e8;" />
<div class="submit-btn"> <div class="submit-btn">
<a-button type="primary" @click="exportData" icon="download">Excel</a-button> <a-button type="primary" @click="exportData" icon="download">Excel</a-button>
<!-- <a-button type="primary" @click="scoreClick" icon="download">评分</a-button> -->
</div> </div>
<a-table :dataSource="tableData" :columns="columns" :scroll="{ x: 'max-content' }" rowKey="id" :pagination="false" :loading="loading"> <a-table :dataSource="tableData" :columns="columns" :scroll="{ x: 'max-content' }" rowKey="id" :pagination="false" :loading="loading">
<template slot="projName" slot-scope="record"> <template slot="projName" slot-scope="record">
...@@ -40,9 +39,6 @@ ...@@ -40,9 +39,6 @@
<a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false"> <a-modal v-model="visibleView" v-if="visibleView" title="项目详情" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<project-view v-model="id" @close="closeWindow"></project-view> <project-view v-model="id" @close="closeWindow"></project-view>
</a-modal> </a-modal>
<a-modal v-model="visibleScore" v-if="visibleScore" title="评分" width="94%" :footer="null" :dialog-style="{ top: '8%' }" destroyOnClose :maskClosable="false">
<score-edit />
</a-modal>
</div> </div>
</template> </template>
...@@ -51,11 +47,10 @@ import { getType } from '@/views/utils/auth' ...@@ -51,11 +47,10 @@ import { getType } from '@/views/utils/auth'
import moment from 'moment' import moment from 'moment'
import { isEmptyParams, filterExportExcelData, tableColumnsName } from "@/views/utils/common"; import { isEmptyParams, filterExportExcelData, tableColumnsName } from "@/views/utils/common";
import projectView from '@/views/report/project/components/projectView' import projectView from '@/views/report/project/components/projectView'
import scoreEdit from '@/views/evaluation/components/economy'
export default { export default {
name: 'queryProject', name: 'queryProject',
components: { components: {
projectView, scoreEdit projectView,
}, },
data () { data () {
return { return {
...@@ -79,7 +74,6 @@ export default { ...@@ -79,7 +74,6 @@ export default {
loading: false, loading: false,
// 弹窗标志 // 弹窗标志
visibleView: false, visibleView: false,
visibleScore: false,
id: null, id: null,
loadState: false loadState: false
} }
...@@ -87,9 +81,6 @@ export default { ...@@ -87,9 +81,6 @@ export default {
created () { created () {
}, },
methods: { methods: {
scoreClick () {
this.visibleScore = true
},
search () { search () {
this.pagination.pageIndex = 1 this.pagination.pageIndex = 1
this.getListByPage() this.getListByPage()
......
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