|
|
|
@ -230,6 +230,7 @@ import store from "../../../store/index";
|
|
|
|
|
import {findConfig} from "@/api/thrsys/spsSyncStatus";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import {filterDepts} from "@/api/auth/authDept";
|
|
|
|
|
import {authRoleList} from "@/api/auth/authRole";
|
|
|
|
|
|
|
|
|
|
const formJson = {
|
|
|
|
|
id: "",
|
|
|
|
@ -361,7 +362,14 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getRoleList() {
|
|
|
|
|
roleCustomers(this.query)
|
|
|
|
|
let query = {
|
|
|
|
|
page:1,
|
|
|
|
|
limit:1000,
|
|
|
|
|
status: 1,
|
|
|
|
|
isCustomer: 0,
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
authRoleList(query)
|
|
|
|
|
.then(response => {
|
|
|
|
|
this.roles = response.data.list || [];
|
|
|
|
|
})
|
|
|
|
|