mirror of
https://github.com/chillzhuang/Saber.git
synced 2024-11-05 10:09:40 +08:00
fix dic tree
This commit is contained in:
parent
9e6ba56c0a
commit
d0c6870478
@ -49,3 +49,9 @@ export const getDict = (id) => {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
export const getDictTree = () => {
|
||||||
|
return request({
|
||||||
|
url: 'api/blade-system/dict/tree?code=DICT',
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
@ -33,7 +33,14 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getList, remove, update, add, getDict } from "@/api/system/dict";
|
import {
|
||||||
|
getList,
|
||||||
|
remove,
|
||||||
|
update,
|
||||||
|
add,
|
||||||
|
getDict,
|
||||||
|
getDictTree
|
||||||
|
} from "@/api/system/dict";
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -65,7 +72,7 @@ export default {
|
|||||||
label: "上级字典",
|
label: "上级字典",
|
||||||
prop: "parentId",
|
prop: "parentId",
|
||||||
type: "tree",
|
type: "tree",
|
||||||
dicUrl: "/api/blade-system/dict/tree?code=DICT",
|
dicData: [],
|
||||||
hide: true,
|
hide: true,
|
||||||
props: {
|
props: {
|
||||||
label: "title"
|
label: "title"
|
||||||
@ -174,6 +181,10 @@ export default {
|
|||||||
getList(page.currentPage, page.pageSize, params).then(res => {
|
getList(page.currentPage, page.pageSize, params).then(res => {
|
||||||
const data = res.data.data;
|
const data = res.data.data;
|
||||||
this.data = data;
|
this.data = data;
|
||||||
|
getDictTree().then(res => {
|
||||||
|
const data = res.data.data;
|
||||||
|
this.option.column[2].dicData = data;
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -79,7 +79,6 @@ export default {
|
|||||||
{
|
{
|
||||||
label: "所属角色",
|
label: "所属角色",
|
||||||
prop: "roleId",
|
prop: "roleId",
|
||||||
checkStrictly: true,
|
|
||||||
multiple: true,
|
multiple: true,
|
||||||
type: "tree",
|
type: "tree",
|
||||||
dicUrl: "/api/blade-system/role/tree",
|
dicUrl: "/api/blade-system/role/tree",
|
||||||
@ -92,7 +91,6 @@ export default {
|
|||||||
label: "所属部门",
|
label: "所属部门",
|
||||||
prop: "deptId",
|
prop: "deptId",
|
||||||
type: "tree",
|
type: "tree",
|
||||||
checkStrictly: true,
|
|
||||||
multiple: true,
|
multiple: true,
|
||||||
dicUrl: "/api/blade-system/dept/tree",
|
dicUrl: "/api/blade-system/dept/tree",
|
||||||
props: {
|
props: {
|
||||||
|
Loading…
Reference in New Issue
Block a user