| 123456789101112131415161718192021222324252627282930313233 |
- //
- // ScanListCell.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 3/30/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "config.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ScanListCell : UITableViewCell
- // --- 顶部信息区 ---
- @property (weak, nonatomic) IBOutlet UILabel *labelModel;
- @property (weak, nonatomic) IBOutlet UILabel *labelDescription;
- @property (weak, nonatomic) IBOutlet UILabel *labelDimension;
- @property (weak, nonatomic) IBOutlet UILabel *labelStock; // "Stock:" 静态文字
- // --- 数量输入框 (Stock 与 Add to cart 之间) ---
- @property (weak, nonatomic) IBOutlet UITextField *qtyField;
- // --- 动态价格表 ScrollView ---
- @property (weak, nonatomic) IBOutlet UIScrollView *priceScrollView;
- // --- 数据模型 ---
- @property (strong, nonatomic) NSMutableDictionary *modelJson;
- @end
- NS_ASSUME_NONNULL_END
|