|
@@ -91,40 +91,25 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
this.initFun();
|
|
|
- this.getCollection();
|
|
|
},
|
|
|
methods: {
|
|
|
// 初始化
|
|
|
initFun() {
|
|
|
- this.$store.commit("updateUserItemStore", {
|
|
|
- field: "userInfo",
|
|
|
- // value: {
|
|
|
- // id: "testuser-DHjjEuxXbN",
|
|
|
- // encodedPassword: "string",
|
|
|
- // userStatus: "suspended",
|
|
|
- // userName: "testuser-DHjjEuxXbN",
|
|
|
- // email: "test@gmail.com",
|
|
|
- // firstName: "一",
|
|
|
- // lastName: "张",
|
|
|
- // studyId: "U00000",
|
|
|
- // phone: "13060901234",
|
|
|
- // nickName: "小强",
|
|
|
- // group: "临时用户"
|
|
|
- // }
|
|
|
- value: {
|
|
|
- id: "testuser-gjcJJmahwR",
|
|
|
- encodedPassword: "string",
|
|
|
- userStatus: "suspended",
|
|
|
- userName: "testuser-gjcJJmahwR",
|
|
|
- email: "test@gmail.com",
|
|
|
- firstName: "一",
|
|
|
- lastName: "张",
|
|
|
- studyId: "U00000",
|
|
|
- phone: "13060901234",
|
|
|
- nickName: "小强",
|
|
|
- group: "临时用户"
|
|
|
- }
|
|
|
- });
|
|
|
+ // 获取所有用户
|
|
|
+ this.$_http
|
|
|
+ .get(this.$_API.JTXT_GET_USER_ADMIN_USERS)
|
|
|
+ .then(res => {
|
|
|
+ console.log(res);
|
|
|
+ this.$store.commit("updateUserItemStore", {
|
|
|
+ field: "userInfo",
|
|
|
+ value: res.data[0]
|
|
|
+ });
|
|
|
+ // 获取所有收藏
|
|
|
+ this.getCollection();
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.$store.commit("toggleLoading", false);
|
|
|
+ });
|
|
|
this.engineeringWorkList = [
|
|
|
{ text: "桥隧工", value: 0 },
|
|
|
{ text: "桥梁工", value: 1 },
|