瀏覽代碼

客户下拉修改

dxq 1 天之前
父節點
當前提交
3bd8f2a21d
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      src/views/sto/record/outRecord.vue

+ 2
- 2
src/views/sto/record/outRecord.vue 查看文件

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…
取消
儲存