提交代码

This commit is contained in:
遥望-倪浩天 2024-07-24 10:08:13 +08:00
parent 648868a816
commit 08d635081a
1 changed files with 7 additions and 1 deletions

View File

@ -30,7 +30,13 @@
<el-table-column prop="chiefName" label="Chief admin" show-overflow-tooltip ></el-table-column>
<el-table-column prop="Operate" label="Operate" show-overflow-tooltip width="190">
<template #default="scope">
<el-button size="small" text type="primary" @click="onAllocationNew(scope.row)">Review</el-button>
<el-button size="small" text type="primary" @click="onAllocationNew(scope.row)">Review
<el-badge
v-if="scope.row.applyForCount>0"
:value="scope.row.applyForCount"
:max="9999"
></el-badge>
</el-button>
<!-- <el-button size="small" text type="primary" @click="onAllocation(scope.row)">Asign</el-button>-->
<el-button size="small" text type="primary" @click="responseEnded(scope.row)">End</el-button>
</template>