Each line serves as an order product details
Select the product and fill in the product name and price
The default quantity is 1, the price and quantity can be modified manually, but the total price cannot be modified. Total price = quantity * unit price;
How to bind this model for each row
Write a sample for reference:
ng-repeat + array.push({id:1,name:'',price:0,num:0})
ng-repeat='x in array'
ng-model='x.num'
ng-model='x.price'
ng-bind='x.num * x.price'
ngRepeat