|
@@ -52,6 +52,7 @@ import addEdit from "./addEdit";
|
|
|
import { mapGetters } from "vuex";
|
|
|
import urlConfig from "@/apis/url-config";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
+// import companyHelper from "@/mixins/companyHelper";
|
|
|
export default {
|
|
|
name: "Account",
|
|
|
components: {
|
|
@@ -119,7 +120,10 @@ export default {
|
|
|
},
|
|
|
async searchList() {
|
|
|
this.loading = true;
|
|
|
- const res = await asyncRequest.realNewList(this.parmValue);
|
|
|
+ const res = await asyncRequest.realNewList({
|
|
|
+ ...this.parmValue,
|
|
|
+ needRela:true
|
|
|
+ });
|
|
|
if (res && res.code === 0 && res.data) {
|
|
|
this.tableData = res.data.list;
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|