Commit 317fcde5 authored by xd's avatar xd

假数据

parent 0d29d168
......@@ -11,11 +11,10 @@ export function getMailList(data) {
})
}
//通讯录管理---组织架构
export function getOrgTree(data) {
export function getOrgTree() {
return request({
url: '',
method: 'post',
data: data
url: '/admin/auth/addressbook/addressBookPage',
method: 'get',
})
}
export function getHistoryList() {
......@@ -24,3 +23,10 @@ export function getHistoryList() {
method: 'get',
})
}
export function deleteCounter(inData) {
return request({
url: '/admin/auth/stall/delete',
method: 'delete',
params: inData
})
}
\ No newline at end of file
......@@ -19,19 +19,20 @@
>
<el-table-column
label="序号"
width="70"
width="120"
type="index"
align="center"
></el-table-column>
<el-table-column label="头像" align="center" >
<el-table-column label="头像" align="center" width="240" >
<template slot-scope="scope">
<span><img :src="scope.row.thumbAvatar" alt=""></span>
<span><img :src="scope.row.thumbAvatar" alt="" style="width:60px;height60px;"></span>
</template>
</el-table-column>
<el-table-column
prop="userName"
label="姓名"
align="center"
width="240"
></el-table-column>
<el-table-column
prop="userId"
......@@ -42,7 +43,7 @@
prop="bar"
label="更新时间"
align="center"
width="120"
></el-table-column>
</el-table>
</div>
......
......@@ -173,7 +173,12 @@ export default {
this.$refs.editCounter.counterDialog = true
},
handleDelete(id) {
this.$confirm('确定删除该柜组吗?', {
}).then(() => {
this.$message.success("删除成功")
}).catch(() => {
this.$message.info("取消删除")
});
},
handleEditClose() {
this.editDialog = false
......
This diff is collapsed.
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