|
@@ -60,22 +60,22 @@
|
|
id="userList-changeFlagHandle" />
|
|
id="userList-changeFlagHandle" />
|
|
</span>
|
|
</span>
|
|
<span slot="action" slot-scope="text, record">
|
|
<span slot="action" slot-scope="text, record">
|
|
- <a-icon
|
|
|
|
- type="edit"
|
|
|
|
- title="编辑"
|
|
|
|
- :style="{fontSize: '20px',color:' #1890FF',padding:' 0 10px'}"
|
|
|
|
- @click="handleEdit(record)"
|
|
|
|
- />
|
|
|
|
<a-icon
|
|
<a-icon
|
|
type="unlock"
|
|
type="unlock"
|
|
title="重置密码"
|
|
title="重置密码"
|
|
v-if="record.loginFlag==1"
|
|
v-if="record.loginFlag==1"
|
|
- :style="{fontSize: '20px',color:' #08c0de',padding: '0 10px'}"
|
|
|
|
|
|
+ class="actionBtn orange"
|
|
@click="resetPassword(record)" />
|
|
@click="resetPassword(record)" />
|
|
|
|
+ <a-icon
|
|
|
|
+ type="edit"
|
|
|
|
+ title="编辑"
|
|
|
|
+ class="actionBtn blue"
|
|
|
|
+ @click="handleEdit(record)"
|
|
|
|
+ />
|
|
<a-icon
|
|
<a-icon
|
|
type="delete"
|
|
type="delete"
|
|
title="删除"
|
|
title="删除"
|
|
- :style="{fontSize: '20px',color: '#f00',padding: '0 10px'}"
|
|
|
|
|
|
+ class="actionBtn red"
|
|
v-if="record.loginFlag==0"
|
|
v-if="record.loginFlag==0"
|
|
@click="delect(record)"/>
|
|
@click="delect(record)"/>
|
|
</span>
|
|
</span>
|
|
@@ -213,7 +213,7 @@ export default {
|
|
const _this = this
|
|
const _this = this
|
|
this.$confirm({
|
|
this.$confirm({
|
|
title: '警告',
|
|
title: '警告',
|
|
- centered: true,
|
|
|
|
|
|
+ centered: true,
|
|
content: '删除后无法恢复,确认删除?',
|
|
content: '删除后无法恢复,确认删除?',
|
|
okText: '确定',
|
|
okText: '确定',
|
|
cancelText: '取消',
|
|
cancelText: '取消',
|