瀏覽代碼

no message

南鑫林 5 年之前
父節點
當前提交
0290e058cd

+ 2 - 2
RainbowPlanet/RainbowPlanet.xcodeproj/project.pbxproj

@@ -2161,12 +2161,12 @@
 		A77F2CA22232010F001BD3F6 /* Modules */ = {
 			isa = PBXGroup;
 			children = (
-				A719EE6622AF4374001AAC98 /* CommunityModule */,
 				A77F2CAE2232010F001BD3F6 /* RegisterLoginModule */,
+				A719EE6622AF4374001AAC98 /* CommunityModule */,
+				A77F2CA32232010F001BD3F6 /* ShoppingMallModule */,
 				BD3AA45422AE635700EF4F20 /* MessageModule */,
 				A77F2CA92232010F001BD3F6 /* MineModule */,
 				A7FF155A228C689C00A85748 /* OrderModule */,
-				A77F2CA32232010F001BD3F6 /* ShoppingMallModule */,
 				A729B5A52266DBC9004AE098 /* CommonModules */,
 			);
 			path = Modules;

+ 1 - 1
RainbowPlanet/RainbowPlanet/Modules/ShoppingMallModule/ProductDetail/View/Cell/ProductDetailProductInfo/ProductDetailProductInfoTableViewCell.swift

@@ -197,7 +197,7 @@ class ProductDetailProductInfoTableViewCell: UITableViewCell {
     var productDetailModel : ProductDetailModel? {
         didSet {
             sellPriceLabel.text = "¥" + (productDetailModel?.skuPrice ?? "")
-            titleLabel.text = productDetailModel?.name
+            titleLabel.text = productDetailModel?.saleName
             detailTitleLabel.text = productDetailModel?.subtitle
             soldNumberLabel.text = "已售\(productDetailModel?.totalCount ?? 0)"
             stockLabel.text = "仅剩\(productDetailModel?.totalStock ?? 0)"