Commit 2c56050a authored by honghy's avatar honghy

【后台-会员等级-查询列表】不同状态的记录可操作按钮需要修改

parent dca52c56
...@@ -5,7 +5,7 @@ NODE_ENV = 'production' ...@@ -5,7 +5,7 @@ NODE_ENV = 'production'
VUE_APP_TITLE = 捷道管理系统 - 测试版 VUE_APP_TITLE = 捷道管理系统 - 测试版
# 捷道管理系统/开发环境 # 捷道管理系统/开发环境
VUE_APP_BASE_API = 'http://admdp.groupage.cn' VUE_APP_BASE_API = 'https://admdp.groupage.cn'
# VUE_APP_BASE_API = 'http://110.41.143.128:48080' # VUE_APP_BASE_API = 'http://110.41.143.128:48080'
# VUE_APP_BASE_API = '/api' # VUE_APP_BASE_API = '/api'
......
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
<template slot-scope="scope"> <template slot-scope="scope">
<el-button size="mini" type="text" v-if="scope.row.status==0" @click="handleUpdate(scope.row)">{{ $t("修改") }}</el-button> <el-button size="mini" type="text" v-if="scope.row.status==0" @click="handleUpdate(scope.row)">{{ $t("修改") }}</el-button>
<el-button size="mini" type="text" v-if="scope.row.status==0" @click="handleDelete(scope.row)">{{ $t("删除") }}</el-button> <el-button size="mini" type="text" v-if="scope.row.status==0" @click="handleDelete(scope.row)">{{ $t("删除") }}</el-button>
<el-button size="mini" v-if="(scope.row.status==0||scope.row.status==2)&&scope.row.status!=3" type="text" @click="handleEnable(scope.row)">{{ $t("启用") }}</el-button> <el-button size="mini" v-if="scope.row.status==0" type="text" @click="handleEnable(scope.row)">{{ $t("启用") }}</el-button>
<el-button size="mini" v-if="scope.row.status==1&&scope.row.status!=3" type="text" @click="handleCloseButton(scope.row)">{{ $t("停用") }}</el-button> <el-button size="mini" v-if="scope.row.status==1&&scope.row.status!=3" type="text" @click="handleCloseButton(scope.row)">{{ $t("停用") }}</el-button>
<el-button size="mini" type="text" @click="handleCopyButton(scope.row)">{{ $t("复制") }}</el-button> <el-button size="mini" type="text" @click="handleCopyButton(scope.row)">{{ $t("复制") }}</el-button>
</template> </template>
......
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