Browse Source

暂存

fix_bug_pro20231227
qb 1 year ago
parent
commit
a6450d4314
  1. 8
      src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue
  2. 4
      vite.config.js

8
src/views/warehouse/warehousingentry/warehouseWarehouseingAddReceipt.vue

@ -864,14 +864,14 @@ export default {
// this.loading = true;
this.options = [];
let cl = await getListClient(this.page.currentPage, this.page.pageSize, {
clientId: query,
clientName: query,
});
console.log('客户信息1234>>>>', cl.data.data.records);
cl.data.data.records.forEach(i => {
let st = {
label: i.clientName,
value: i.id,
code: i.clientName,
code: i.clientCode,
};
this.options.push(st);
});
@ -897,9 +897,9 @@ export default {
console.log('客户信息1234>>>>', cl.data.data.records);
cl.data.data.records.forEach(i => {
let st = {
label: i.clientId,
label: i.clientName,
value: i.id,
code: i.clientName,
code: i.clientCode,
};
this.optionCodes.push(st);
});

4
vite.config.js

@ -15,8 +15,8 @@ export default ({ mode, command }) => {
// target: 'http://192.168.10.126:8889',
// target: 'http://192.168.10.48:8888',
// target: 'http://192.168.10.123:8889',
// target: 'http://192.168.10.75:8777',
target: 'http://192.168.10.101:8888',
target: 'http://192.168.10.75:8777',
// target: 'http://192.168.10.101:8888',
// target: 'http://192.168.10.29:13000',
// target: 'http://test.api.huitongys.com',
changeOrigin: true,

Loading…
Cancel
Save