修复IP图片状态逻辑并优化用户积分记录显示
This commit is contained in:
parent
efa9a05d6e
commit
4d0e340fee
@ -58,7 +58,7 @@
|
||||
<template #default="scope">
|
||||
<el-button link type="primary" @click="handleStatus(scope.row,1)" v-if="scope.row.status == 0"
|
||||
v-hasPermi="['manage:ipImage:edit']">发布</el-button>
|
||||
<el-button link type="primary" @click="handleStatus(scope.row,0)" v-if="scope.row.status==1"
|
||||
<el-button link type="primary" @click="handleStatus(scope.row,0)" v-if="scope.row.status==2"
|
||||
v-hasPermi="['manage:ipImage:edit']">撤销发布</el-button>
|
||||
<el-tooltip content="编辑" placement="top">
|
||||
<el-button link type="primary" @click="handleUpdate(scope.row)" v-if="scope.row.status == 0"
|
||||
|
@ -1,3 +1,4 @@
|
||||
<!-- 积分记录 -->
|
||||
<template>
|
||||
<div class="p-2">
|
||||
<transition :enter-active-class="proxy?.animate.searchAnimate.enter"
|
||||
@ -37,7 +38,6 @@
|
||||
</div>
|
||||
</transition>
|
||||
|
||||
<el-card shadow="never">
|
||||
<el-table v-loading="loading" :height="autoTableHeight" :data="userScoreList"
|
||||
@selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
@ -60,7 +60,6 @@
|
||||
|
||||
<pagination v-show="total > 0" id="table_page" :total="total" v-model:page="queryParams.pageNum"
|
||||
v-model:limit="queryParams.pageSize" @pagination="getList" />
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user