ScanListCell.h 935 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // ScanListCell.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 3/30/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "config.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface ScanListCell : UITableViewCell
  12. // --- 顶部信息区 ---
  13. @property (weak, nonatomic) IBOutlet UILabel *labelModel;
  14. @property (weak, nonatomic) IBOutlet UILabel *labelDescription;
  15. @property (weak, nonatomic) IBOutlet UILabel *labelDimension;
  16. @property (weak, nonatomic) IBOutlet UILabel *labelStock; // "Stock:" 静态文字
  17. // --- 数量输入框 (Stock 与 Add to cart 之间) ---
  18. @property (weak, nonatomic) IBOutlet UITextField *qtyField;
  19. // --- 动态价格表 ScrollView ---
  20. @property (weak, nonatomic) IBOutlet UIScrollView *priceScrollView;
  21. // --- 数据模型 ---
  22. @property (strong, nonatomic) NSMutableDictionary *modelJson;
  23. @end
  24. NS_ASSUME_NONNULL_END