You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyp-front/src/components/CustomTable/CustomTable.vue

127 lines
3.7 KiB

12 months ago
<template>
<div class="app-container">
<!-- 表格部分-->
<el-table v-loading="loading" :row-selection="true" :data="tableData" @select="handleSelectionChange">
<el-table-column v-for="(column, index) in columns" :key="index" :label="column.label" :prop="column.prop" :align="column.align" :width="column.width">
<template v-if="column.type === 'date'" v-slot:default="scope">
<span>{{ parseTime(scope.row[column.prop], '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
<template v-else-if="column.slotName === 'customSlotName'" v-slot:default="scope">
<dict-tag :options="dict.type.rew_apply_status" :value="scope.row[column.prop]"/>
</template>
12 months ago
<template v-else-if="column.slotName === 'scoreStatus'" v-slot:default="scope">
<el-tag v-for="(item,index) in scoreStatus" :key="index" :type="item.type" v-if="item.dictValue === scope.row.scoreStatus">{{item.dictLabel}}</el-tag>
</template>
12 months ago
<template v-else v-slot:default="scope">
<span>{{ scope.row[column.prop] }}</span>
</template>
</el-table-column>
<!-- Actions Column -->
12 months ago
<el-table-column v-if="actions.length > 0 && modalType !== 'score'" label="操作" align="center" class-name="small-padding fixed-width">
12 months ago
<template slot-scope="scope">
12 months ago
<el-button v-for="(action, index) in filteredActions(scope.row.applyStatus)" :key="index" size="mini" type="text" :icon="action.icon" @click="action.handler(scope.row)">{{ action.text }}</el-button>
12 months ago
</template>
</el-table-column>
12 months ago
<el-table-column v-else label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button v-for="(action, index) in actions" :key="index" size="mini" type="text" :icon="action.icon" @click="action.handler(scope.row)">{{ action.text }}</el-button>
</template>
</el-table-column>
12 months ago
</el-table>
</div>
</template>
<script>
import {parseTime} from "@/utils/ruoyi";
export default {
dicts: ['rew_apply_status'],
props: {
columns: {
type: Array,
required: true
},
tableData: {
type: Array,
required: true
},
loading: {
type: Boolean,
default: false
},
actions: {
type: Array,
default: () => []
},
// 查询参数
queryParams:{
type:Object,
default:()=>{}
},
//显示搜索条件
showSearch:{
type: Boolean,
default: true
},
applyType:{
type:String,
default:'',
12 months ago
},
modalType:{
type:String,
12 months ago
}
},
data(){
return {
12 months ago
scoreStatus:[
{
dictLabel:"未评分",
dictValue:0,
type:"danger"
},
{
dictLabel:"已评分",
dictValue:1,
type:"success",
}
]
12 months ago
}
},
mounted() {
},
methods: {
parseTime,
12 months ago
filteredActions(applyStatus) {
12 months ago
if(applyStatus === 0 || applyStatus === 1){
12 months ago
return this.actions.filter(action => action.text !== '退回意见');
}
12 months ago
if (applyStatus === 3) {
return this.actions
} else if(applyStatus === 2 || applyStatus === 4){
return this.actions.filter(action => action.text === '查看');
}
12 months ago
},
12 months ago
//父组件搜索方法
getList(query){
this.$emit('getList', query);
},
//父组件搜索方法
handleAdd(applyType){
this.$emit('handleAdd', applyType);
},
//父组件搜索方法
handleQuery(query){
this.$emit('handleQuery', query);
},
resetQuery(query){
this.$emit('resetQuery', query);
},
handleSelectionChange(selection) {
this.$emit('handleSelectionChange', selection);
},
}
}
</script>