update
This commit is contained in:
@@ -32,28 +32,28 @@ class DataResource {
|
||||
}
|
||||
|
||||
getOrderNo() {
|
||||
return this.data.orderNo;
|
||||
return [this.data.orderNo];
|
||||
}
|
||||
getClientName() {
|
||||
return this.data.clientName;
|
||||
return [this.data.clientName];
|
||||
}
|
||||
getSoldDate() {
|
||||
return this.data.soldDate;
|
||||
return [this.data.soldDate];
|
||||
}
|
||||
getContactName() {
|
||||
return this.data.contactName;
|
||||
return [this.data.contactName];
|
||||
}
|
||||
getContactNo() {
|
||||
return this.data.contactNo;
|
||||
return [this.data.contactNo];
|
||||
}
|
||||
getDeliveryAddress() {
|
||||
return this.data.deliveryAddress;
|
||||
return [this.data.deliveryAddress];
|
||||
}
|
||||
getAddOn() {
|
||||
return this.data.addOn;
|
||||
return [this.data.addOn];
|
||||
}
|
||||
getBoards() {
|
||||
return this.data.boards;
|
||||
return [this.data.boards];
|
||||
}
|
||||
getBoardMaterial() {
|
||||
const BoardMaterial = [];
|
||||
@@ -83,7 +83,7 @@ class DataResource {
|
||||
}
|
||||
houseName.push(tem);
|
||||
}
|
||||
return houseName; // 返回数据结构:hosueName=[['string||number','string||number'],[]]
|
||||
return houseName; // 返回数据结构:hosueName=[['string||number','string||number',....],[]]
|
||||
}
|
||||
getEachBanCaiToTal(boardKey: string) {
|
||||
const banCaiTotalArray = [];
|
||||
|
Reference in New Issue
Block a user