一个优质的电商直播小程序,必须带有后台管理,模块功能分工明确,可以让商家及时管理商品。在管理后台端又分为会员、商品、订单、店铺、直播、分销、优惠券、物流、数据等功能列表栏,基本功能较完善。下文小编将为大家讲解一下电商直播小程序的核心功能以及代码。
一、核心功能
1、会员栏
会员栏分为会员管理、会员等级、会员分组三个子列表。商家可以自主添加会员等级,并设置升级任务,消费者在完成设定任务之后,方可升级下一等级,并享受对应的优惠力度。
2、商品栏
该功能栏分为商品管理、分类、规格、评价四个子列表,方便商家自主添加、管理商品。
3、订单栏
包含订单管理,包括订单状态、支付方式、创建时间、订单号。已发货、未发货等基本信息皆直观展现在后台中。
4、店铺栏
商家在电商直播小程序中,提交相关资料后开通店铺,需要运营者在该栏中给以通过之后,才可进行直播。
5、直播栏
内含直播分类、列表、记录、踢人管理、举报管理。
6、分销
内含分销配置、分销员管理。开发出的电商直播小程序支持人人分销,让消费者参与其中,多方受益。
…
二、代码分析
//
// GoodsDetailsViewController.m
// WYLiveShopping
//
// Created by IOS1 on 2020/6/19.
// Copyright © 2020 IOS1. All rights reserved.
//
#import “GoodsDetailsViewController.h”
#import “homeViewController.h”
#import “HZPhotoBrowser.h”
#import “detailesGoodCell.h”
#import “productView.h”
#import “WYCarView.h”
#import “ReplyCell.h”
#import “ReplyListViewController.h”
#import “WMPlayer.h”
#import “useCouponView.h”
#import “SubmitOrderViewController.h”
#import “goodsShareView.h”
#import “StoreHomeViewController.h”
@interface GoodsDetailsViewController ()<UICollectionViewDelegate,UICollectionViewDataSource,WKNavigationDelegate,UIScrollViewDelegate,WMPlayerDelegate>{
NSMutableArray *sliderArray;
NSMutableArray *imageArray;
NSString *description;
NSDictionary *storeInfo;
UILabel *priceLabel;
UIImageView *vipImgView;
UILabel *nameL;
UILabel *oldPriceL;
UILabel *stockLaleb;
UILabel *salesLabel;
UIView *integralView;//积分视图
UILabel *integralLabel;//赠送积分数量
UIView *couponView;//优惠券视图
UIView *specificationsView;//规格视图
UILabel *specificationsLabel;//规格信息label
UILabel *evaluateNumsL;
UILabel *highLabel;
UIImageView *storeThumbImgView;
UILabel *storeNameLabel;
NSMutableArray *goodListArray;//推荐商品数组
NSArray *productAttr;//产品属性
id productValue;//产品属性值
NSString *uniqueID;//产品属性分类的ID,例如:XXL,红色的ID
productView *productSelectView;
//视频播放
UIImageView *videoPlaceholdImgView;
useCouponView *couponDrawView;
goodsShareView *shareView;
//店铺ID
NSString *mer_id;
NSString *service_url;//客服链接