Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
jinhui.wang
2022-07-25 15:44:40 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a0fccdbc4bcf11fe968262a3e33087b08fbdf72b
a0fccdbc
1 parent
5b916f67
运单日志接口增加
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletions
src/api/system/logConfig.js
src/views/systemConfig/roleConfig/drawer.vue
src/api/system/logConfig.js
View file @
a0fccdb
...
...
@@ -28,3 +28,14 @@ export function getDmFlowInformation(data) {
method
:
'post'
,
})
}
//运单日志查询
/**
* @param accsId accsid *
*/
export
function
findCargoDataChangeLog
(
data
)
{
return
request
({
url
:
'/cargo/findCargoDataChangeLog?accsId='
+
data
,
method
:
'post'
,
})
}
\ No newline at end of file
...
...
src/views/systemConfig/roleConfig/drawer.vue
View file @
a0fccdb
...
...
@@ -22,7 +22,7 @@
<el-col :span="24">
<el-form-item label="角色权限:" prop="menuIdList">
<el-tree ref="tree" :data="treeData" node-key="id" :props="defaultProps" :show-checkbox="true"
:default-checked-keys="roleData.menuIds" accordion>
:default-checked-keys="roleData.menuIds" accordion
v-loading="treeLoading"
>
</el-tree>
</el-form-item>
</el-col>
...
...
@@ -65,6 +65,7 @@ export default {
},
treeData: [],
loading: false,
treeLoading: false,
defaultProps: {
children: "children",
label: "title",
...
...
@@ -96,8 +97,10 @@ export default {
methods: {
//权限列表
allAuth() {
this.treeLoading = true
getAllAuth()
.then((res) => {
this.treeLoading = false
if (res.code === 200) {
this.treeData = this.treeDataInfo(res.data);
} else {
...
...
@@ -105,6 +108,7 @@ export default {
}
})
.catch((err) => {
this.treeLoading = false
console.log(err);
});
},
...
...
Please
register
or
login
to post a comment