Commit 317fcde5 authored by xd's avatar xd

假数据

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