Procházet zdrojové kódy

客户下拉修改

dxq před 4 měsíci
rodič
revize
3bd8f2a21d
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2
    2
      src/views/sto/record/outRecord.vue

+ 2
- 2
src/views/sto/record/outRecord.vue Zobrazit soubor

440
 }
440
 }
441
 
441
 
442
 const fetchOwnerCompanyOptions = () => {
442
 const fetchOwnerCompanyOptions = () => {
443
-  proxy.$axios.get('sto/OutRecord/ownerCompanyOptions', {}).then((response) => {
443
+  proxy.$axios.get('sto/Customer/querySelect', {}).then((response) => {
444
     if (response.data.code === 0 || response.data.code === '0') {
444
     if (response.data.code === 0 || response.data.code === '0') {
445
       ownerCompanyOptions.value = toOptions(response.data.data, 'label', 'value')
445
       ownerCompanyOptions.value = toOptions(response.data.data, 'label', 'value')
446
     }
446
     }
448
 }
448
 }
449
 
449
 
450
 const fetchCustomerOptions = () => {
450
 const fetchCustomerOptions = () => {
451
-  proxy.$axios.get('sto/OutRecord/customerCompanyOptions', {}).then((response) => {
451
+  proxy.$axios.get('sto/Customer/querySelect', {}).then((response) => {
452
     if (response.data.code === 0 || response.data.code === '0') {
452
     if (response.data.code === 0 || response.data.code === '0') {
453
       customerCompanyOptions.value = toOptions(response.data.data, 'label', 'value')
453
       customerCompanyOptions.value = toOptions(response.data.data, 'label', 'value')
454
     }
454
     }

Loading…
Zrušit
Uložit