|
@@ -263,7 +263,7 @@ export default {
|
|
const res = await getCustomerList(1, 20)
|
|
const res = await getCustomerList(1, 20)
|
|
if (res.data && res.data.success) {
|
|
if (res.data && res.data.success) {
|
|
this.customerOptions = res.data.data.records.map(item => ({
|
|
this.customerOptions = res.data.data.records.map(item => ({
|
|
- value: item.Customer_ID,
|
|
|
|
|
|
+ value: item.Customer_ID.toString(),
|
|
label: item.Customer_NAME,
|
|
label: item.Customer_NAME,
|
|
customerCode: item.Customer_CODE,
|
|
customerCode: item.Customer_CODE,
|
|
customerName: item.Customer_NAME
|
|
customerName: item.Customer_NAME
|