|
|
@ -30,6 +30,7 @@
|
|
|
|
:actions="tableActions"
|
|
|
|
:actions="tableActions"
|
|
|
|
:query-params="queryParams"
|
|
|
|
:query-params="queryParams"
|
|
|
|
:apply-type="applyParam.applyType"
|
|
|
|
:apply-type="applyParam.applyType"
|
|
|
|
|
|
|
|
:modal-type="'score'"
|
|
|
|
@handleQuery="handleQuery"
|
|
|
|
@handleQuery="handleQuery"
|
|
|
|
@resetQuery="resetQuery"
|
|
|
|
@resetQuery="resetQuery"
|
|
|
|
@handleView="handleView"
|
|
|
|
@handleView="handleView"
|
|
|
@ -292,11 +293,12 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
mounted() {
|
|
|
|
this.$store.dispatch('GetInfo').then((res) => {
|
|
|
|
this.$store.dispatch('GetInfo').then((res) => {
|
|
|
|
|
|
|
|
let filterData = this.tableActions
|
|
|
|
if (res.user.userId === 1){
|
|
|
|
if (res.user.userId === 1){
|
|
|
|
let ratingIndex = this.tableActions.findIndex(action => action.text === '评分');
|
|
|
|
let ratingIndex = filterData.findIndex(action => action.text === '评分');
|
|
|
|
if (ratingIndex !== -1) {
|
|
|
|
if (ratingIndex !== -1) {
|
|
|
|
// 使用 splice 方法将评分项从数组中删除
|
|
|
|
// 使用 splice 方法将评分项从数组中删除
|
|
|
|
this.tableActions.splice(ratingIndex, 1);
|
|
|
|
filterData.splice(ratingIndex, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|