|
@@ -302,6 +302,12 @@ export default {
|
|
|
const { data, total } = res;
|
|
|
this.$set(this, `clientList`, data);
|
|
|
}
|
|
|
+ // 查供应商
|
|
|
+ res = await this.clientQuery({ type: '客户' });
|
|
|
+ if (this.$checkRes(res)) {
|
|
|
+ const { data, total } = res;
|
|
|
+ this.$set(this, `supClientList`, data);
|
|
|
+ }
|
|
|
// 查询线路列表
|
|
|
res = await this.routeQuery();
|
|
|
if (this.$checkRes(res)) {
|