1234567891011121314151617181920212223242526272829 |
- //
- // KXBodyPriceJS.m
- // CAISHEN
- //
- // Created by youngliu on 2017/8/30.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import "KXBodyPriceJS.h"
- @implementation KXBodyPriceJS
- /*
- *{
- link = "http://lan800.com/?source=mjseven";
- "product_Id" = 139;
- type = 0;
- }
- */
- - (void)JSGetProductId:(NSDictionary *)json
- {
- if (json) {
- [[NSNotificationCenter defaultCenter]postNotificationName:@"WTWEBDETAILJSOBJC" object:@{@"product":json}];
- }
-
- }
- @end
|