import {queryUser} from "@/actions/auth/user";


    loadQueryUsers(that) {
        const params = {
            pushName: that.filter.word
        };
        queryUser(null, null, params).then(res => {
            that.firstLoad = false;
            that.descriptionEmpty = window.$appConfig.empty.nodata;
            //debugger;
            if (!res.data || !res.data.data || res.data.success !== true) {
                that.loading = false;
                return;
            }
            that.used.data = res.data.data;
            that.loading = false;
        });
    },
文档更新时间: 2022-07-13 07:15   作者:admin