Skip to content

Commit

Permalink
Fix 消息发送器删除失败的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
enilu committed Dec 21, 2020
1 parent 2df65ef commit 50e139e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions docs/guide/other/changeLog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# change log

## Latest
## 1.8

[gitee](https://gitee.com/enilu/web-flash/releases/1.8)
[github](https://github.com/enilu/web-flash/releases/tag/1.8)
### Issues
- Change 重构BaseRepository部分方法
- Change 优化获取用户菜单数据的方法
Expand All @@ -11,10 +13,11 @@
- Change 重构短信发送模块,将远程模板编号从messageSender迁移至messageTemplate
- Issue DictSelect组件调整为双向绑定
- Issue cms模块文件列表增加图片预览功能
- Issue 前端登录接口账号和密码
- Issue 禁止冻结初始账户
- Issue 提交定时任务时对相关参数有效性进行校验
### Fixes
- Fix 文件下载过程文件损坏
- Fix 用户锁定和删除状态可以登录
- Fix 用户锁定和删除状态可以登录的问题
- Fix 新增菜单时候候选页面不显示菜单图标

## 1.7
Expand Down
2 changes: 1 addition & 1 deletion flash-vue-admin/src/views/message/sender/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<el-table-column label="操作">
<template slot-scope="scope">
<el-button type="text" size="mini" icon="el-icon-edit" @click.native="editItem(scope.row)" v-permission="['/sender/edit']">{{ $t('button.edit') }}</el-button>
<el-button type="text" size="mini" icon="el-icon-delete" @click.native="remove(scope.row)" v-permission="['/sender/remove']">{{ $t('button.delete') }}</el-button>
<el-button type="text" size="mini" icon="el-icon-delete" @click.native="removeItem(scope.row)" v-permission="['/sender/remove']">{{ $t('button.delete') }}</el-button>

</template>
</el-table-column>
Expand Down

0 comments on commit 50e139e

Please sign in to comment.