营销系统--优惠券补偿记录

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<jsp:include page="/jsp/common/header.jsp"></jsp:include>
<script src="${ctx }/js/promote/compensatingLog.js"></script>
<table class="queryTable">
  <tr>
    <td class="queryTitle" width="80px">操作人</td>
    <td class="queryContent" ><input class="inputText" type="text" id="userName" /></td>
    <td class="queryTitle" width="80px">补偿时间</td>
    <td class="queryContent" >
    <input class="inputText easyui-datebox" type="text" id="editTimeBg" style="width: 100px" editable="false" />&nbsp;到 <input class="inputText easyui-datebox" type="text" id="editTimeEd" style="width: 100px" editable="false" />
    </td>
    <td class="queryTitle" width="80px">补偿会员</td>
    <td class="queryContent" ><input class="inputText" type="text" id="loginName" /></td>
  </tr>
  <tr>
    <td class="queryTitle" width="80px">补偿理由</td>
    <td class="queryContent" ><input class="inputText" type="text" id="giveExcuse" /></td>
    <td class="queryTitle" width="80px">补偿形式</td>
    <td class="queryContent" >
       <select id="compensatingForm" style="width: 100px" panelHeight="auto" onchange="couponOrIntegralShow(this)">
            <option value>请选择</option>
            <option value="coupon">优惠券</option>
            <option value="integral">积分</option>
        </select>
        <label id="type" >&nbsp;<input class="inputText" type="text" id="compensatingContent" /></label>
     </td>
    <td class="queryBtnTd" colspan="2"><a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-search"  onclick="doQuery()">查&nbsp;&nbsp;询</a></td>
  </tr>
</table>

<table id="deliveryGrid"></table>
$(function(){
  $("#opreateHtml").window("close");

  $("#compensatingContent").combobox({
        url:appPath+"/page/compensationtypeAct/ecCouponTypeSelect",
        valueField:"id",
        textField:"text",
        panelHeight:"auto",
        editable:false
    });
  $("#type").hide();
  $("#deliveryGrid").datagrid({
    url:appPath+"/page/compensatingLogAct/getPage",
    height:"full",
    striped:true,
    remoteSort:false,
    pagination:true,
    rownumbers:true,
    singleSelect:false,
    queryParams:getQueryParam(),
    columns:[[
       {field:‘addTime‘,title:‘补偿时间‘,width:130,align:‘center‘,sortable:true},
       {field:‘userName‘,title:‘操作人‘,width:100,align:‘center‘,sortable:true},
       {field:‘loginName‘,title:‘补偿会员‘,width:100,align:‘center‘,sortable:true},
       {field:‘giveExcuse‘,title:‘补偿理由‘,width:100,align:‘center‘,sortable:true},
       {field:‘compensatingForm‘,title:‘补偿形式‘,width:100,align:‘center‘,sortable:true,
           formatter:function(value){
               if(value=="coupon"){
                   return "优惠券";
               }else if(value=="integral"){
                   return "积分";
               }else{
                   return value;
               }
           }
       },
       {field:‘compensatingContent‘,title:‘补偿内容‘,width:100,align:‘center‘,sortable:true}

   ]],
 });
});

function getQueryParam(){
  var compensatingLog =new Object();
      compensatingLog.userName=$.trim($("#userName").val());
      compensatingLog.editTimeBg=$.trim($("#editTimeBg").datebox(‘getValue‘));
      compensatingLog.editTimeEd=$.trim($("#editTimeEd").datebox(‘getValue‘));
      compensatingLog.loginName=$.trim($("#loginName").val());
      compensatingLog.giveExcuse=$.trim($("#giveExcuse").val());
      compensatingLog.compensatingForm=$.trim($("#compensatingForm").val());
      if($.trim($("#compensatingForm").val())=="coupon"){
          compensatingLog.compensatingContent=$.trim($("#compensatingContent").combobox(‘getValue‘));
      }
  return compensatingLog;
}

function doQuery(){
  $("#deliveryGrid").datagrid(‘load‘,getQueryParam());
}

function couponOrIntegralShow(o){
    if(o.value==‘coupon‘){
        $("#type").show();
    }else{
        $("#type").hide();
    }
}
package com.founder.ec.promote.action;

import java.util.*;

import javax.servlet.http.*;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import com.founder.ec.base.action.BaseClassAction;
import com.founder.ec.common.utils.StringUtil;
import com.founder.ec.promote.model.Compensationtype;
import com.founder.ec.promote.model.EcCouponType;
import com.founder.ec.promote.service.CompensationtypeService;
import com.founder.ec.promote.service.EcCouponTypeService;
import com.j1.base.dto.ServiceMessage;
import com.j1.base.type.MsgStatus;
import com.j1.member.mysql.model.MemberRoleRepModel;
/**
 *
 * @author liuyuandi 2015年9月15日 下午1:21:11
 * @since 1.0.0
 */
@Controller
@RequestMapping(value="/compensationtypeAct")
public class CompensationtypeAction extends BaseClassAction<Compensationtype>{

  @Autowired
  private CompensationtypeService compensationtypeService;

  /**
  *@description 查询补偿列表
  */
  @RequestMapping(value="/getPage")
  @ResponseBody
  public Map<String,Object> getPage(HttpServletRequest request,Compensationtype compensationtype)
  {
    int pageSize=10,pageNo=1;
    pageNo = Integer.parseInt(request.getParameter("page"));
    pageSize= Integer.parseInt(request.getParameter("rows"));
    return compensationtypeService.getPage(compensationtype, pageNo, pageSize);
  }

  /**
  *@description 查询单个补偿对象
  */
  @RequestMapping(value="/getBean/{getId}")
  public void getBean(HttpServletRequest request,HttpServletResponse response,@PathVariable Object getId)
  {
    if(getId!=null && getId.toString().length()>0){
    Compensationtype compensationtype=new Compensationtype();
    compensationtype.setId(Long.parseLong(getId.toString()));
    compensationtype=compensationtypeService.getT(compensationtype);
    super.writeClient(response, super.ObjectChangJSONObject(compensationtype).toString(), "");}
  }

  /**
  *@description添加或是更新
  */
  @RequestMapping(value="/saveOrUpdate")
  public void updateOrSave(HttpServletRequest request,HttpServletResponse response,Compensationtype compensationtype)
  {
    String userId=request.getSession().getAttribute("userId").toString();
    if(compensationtype.getId()!=null)
    {
       compensationtype.setEditTime(StringUtil.returnDateFormat(new Date(),"yyyy-MM-dd HH:mm:ss"));
       compensationtype.setEditUserId(Integer.parseInt(userId));
       compensationtypeService.update(compensationtype);
    }
    else
    {
       super.bindingProperty(compensationtype, userId);
       compensationtypeService.save(compensationtype);
    }
  }

  /**
  *@description删除补偿数据
  */
  @RequestMapping(value="/deleteIdsLogic")
  public void deleteIdsLogic(HttpServletRequest request,HttpServletResponse response)
  {
    String userId=request.getSession().getAttribute("userId").toString();
    String ids=null;
    if(request.getParameter("ids")!=null)
      {
        ids=request.getParameter("ids").trim();
        if(ids.indexOf(",")>0)
          {
             String[] idArr=ids.split(",");
             for(int i=0;i<idArr.length;i++)
                {
                  Compensationtype bean=new Compensationtype();
                  bean.setId(Long.parseLong(idArr[i]));
                  bean.setIsDelete("Y");
                  bean.setEditTime(StringUtil.returnDateFormat(new Date(),"yyyy-MM-dd HH:mm:ss"));
                  bean.setEditUserId(Integer.parseInt(userId));
                  compensationtypeService.update(bean);
                }
          }
      }
  }

  /**
   * @author liuyuandi 2015-6-26 14:36:10
   * @param request
   * @param Response
   * @return
   */
  @RequestMapping("/ecCouponTypeSelect")
  @ResponseBody
  public List<Object> ecCouponTypeSelect(HttpServletRequest request,HttpServletResponse Response){
          List<Object> linkageRes =new ArrayList<Object>();
          HashMap<String,Object> param = new HashMap<String, Object>();
          param.put("useType","3");
          List<EcCouponType> typeList = compensationtypeService.queryCouponTypeByIdList(param);
          Map<String,Object> defaultValue = new HashMap<String,Object>();
          defaultValue.put("id", "");
          defaultValue.put("text", "请选择优惠券类型");
          defaultValue.put("selected", true);
          linkageRes.add(defaultValue);
          if(typeList.size()>0){
              List<EcCouponType> typeList1 =typeList;
              if(null!=typeList && !typeList.isEmpty()){
                  for(EcCouponType nt : typeList1){
                      Map<String,Object> typeMap = new HashMap<String,Object>();
                      typeMap.put("id", nt.getCouponTypeId());
                      typeMap.put("text", nt.getCouponTypeName());
                      typeMap.put("attributes", nt);
                      linkageRes.add(typeMap);
                  }
              }
          }
          return linkageRes;
    }
}
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-2.dtd" >
<sqlMap namespace="Compensationtype">
  <typeAlias alias="Compensationtype"  type="com.founder.ec.promote.model.Compensationtype"/>

  <resultMap id="CompensationtypeMap" class="Compensationtype">
    <result column="ID" property="id" />
    <result column="GIVE_EXCUSE" property="giveExcuse" />
    <result column="COMPENSATING_FORM" property="compensatingForm" />
    <result column="COMPENSATING_CONTENT" property="compensatingContent" />
    <result column="STANDBY2" property="standby2" />
    <result column="STANDBY1" property="standby1" />
    <result column="ADD_USER_ID" property="addUserId" />
    <result column="ADD_TIME" property="addTime" />
    <result column="EDIT_USER_ID" property="editUserId" />
    <result column="EDIT_TIME" property="editTime" />
    <result column="IS_DELETE" property="isDelete" />
  </resultMap>

  <sql id="be_fy">
    select *  from (select row_.*, rownum rownum_ from (
  </sql>
  <sql id="ed_fy">
    ) row_  where  1=1
    <isNotEmpty prepend="and" property="endRow">
      <![CDATA[ rownum <= #endRow# ]]>
    </isNotEmpty>
    )where 1=1
    <isNotEmpty prepend="and" property="startRow">
      <![CDATA[ rownum_ >= #startRow# ]]>
    </isNotEmpty>
  </sql>

  <select id="getCompensationtypePage" resultMap="CompensationtypeMap" parameterClass="Compensationtype">
    <include refid="be_fy"/>
      select cc.id,
      cc.give_excuse,
      cc.compensating_form,
      (case
      when cc.compensating_form=‘coupon‘ then (select pe.coupon_type_name from
      ec_coupon_type pe where pe.coupon_type_id=cc.compensating_content and
      pe.is_delete=‘N‘)
      else cc.compensating_content
      end) compensating_content,
      cc.standby1,
      cc.standby2,
      cc.is_delete,
      cc.add_time,
      cc.add_user_id,
      cc.edit_time,
      cc.edit_user_id
      from compensationType cc
      where
      cc.IS_DELETE=‘N‘
    <isNotEmpty prepend="and" property="giveExcuse">
     <![CDATA[ cc.GIVE_EXCUSE  like ‘%$giveExcuse$%‘ ]]>
    </isNotEmpty>
    <isNotEmpty prepend="and" property="compensatingForm">
     <![CDATA[ cc.COMPENSATING_FORM =#compensatingForm# ]]>
    </isNotEmpty>
    <isNotEmpty prepend="and" property="compensatingContent">
     <![CDATA[ cc.COMPENSATING_CONTENT=#compensatingContent# ]]>
    </isNotEmpty>
    order by cc.id desc
    <include refid="ed_fy"/>
  </select>

  <select id="getCompensationtypeCount" resultClass="Integer" parameterClass="Compensationtype">
    select count(cc.id)
    from compensationType cc where cc.IS_DELETE=‘N‘
    <isNotEmpty prepend="and" property="giveExcuse">
     <![CDATA[ cc.GIVE_EXCUSE  like ‘%$giveExcuse$%‘ ]]>
    </isNotEmpty>
    <isNotEmpty prepend="and" property="compensatingForm">
     <![CDATA[ cc.COMPENSATING_FORM =#compensatingForm# ]]>
    </isNotEmpty>
    <isNotEmpty prepend="and" property="compensatingContent">
     <![CDATA[ cc.COMPENSATING_CONTENT=#compensatingContent# ]]>
    </isNotEmpty>
  </select>

  <insert id="save" parameterClass="Compensationtype">
    <selectKey resultClass="Long" keyProperty="id" >
      SELECT compensationType_SEQ.nextval AS id  from dual
    </selectKey>
    insert into compensationType
    ( EDIT_USER_ID,GIVE_EXCUSE,COMPENSATING_CONTENT,STANDBY2,STANDBY1,ADD_USER_ID,EDIT_TIME,ID,IS_DELETE,ADD_TIME,COMPENSATING_FORM) values
    ( #editUserId#,#giveExcuse#,#compensatingContent#,#standby2#,#standby1#,#addUserId#,#editTime#,#id#,#isDelete#,#addTime#,#compensatingForm#)
  </insert>

  <update id="update" parameterClass="Compensationtype">
    update compensationType
    <dynamic prepend="set">
      <isNotEmpty prepend="," property="editUserId">
          <![CDATA[ EDIT_USER_ID=#editUserId# ]]>
      </isNotEmpty>
      <isNotEmpty prepend="," property="giveExcuse">
          <![CDATA[ GIVE_EXCUSE=#giveExcuse# ]]>
      </isNotEmpty>
      <isNotEmpty prepend="," property="compensatingContent">
          <![CDATA[ COMPENSATING_CONTENT=#compensatingContent# ]]>
      </isNotEmpty>
      <isNotEmpty prepend="," property="standby2">
          <![CDATA[ STANDBY2=#standby2# ]]>
      </isNotEmpty>
      <isNotEmpty prepend="," property="standby1">
          <![CDATA[ STANDBY1=#standby1# ]]>
      </isNotEmpty>
      <isNotEmpty prepend="," property="addUserId">
          <![CDATA[ ADD_USER_ID=#addUserId# ]]>
      </isNotEmpty>
      <isNotEmpty prepend="," property="editTime">
          <![CDATA[ EDIT_TIME=#editTime# ]]>
      </isNotEmpty>
      <isNotEmpty prepend="," property="isDelete">
          <![CDATA[ IS_DELETE=#isDelete# ]]>
      </isNotEmpty>
      <isNotEmpty prepend="," property="addTime">
          <![CDATA[ ADD_TIME=#addTime# ]]>
      </isNotEmpty>
      <isNotEmpty prepend="," property="compensatingForm">
          <![CDATA[ COMPENSATING_FORM=#compensatingForm# ]]>
      </isNotEmpty>
   </dynamic>
   where ID=#id#
  </update>

  <select id="getCompensationtype"  parameterClass="Compensationtype"  resultMap="CompensationtypeMap">
    select id,
    give_excuse,
    compensating_form,
    compensating_content,
    standby1,
    standby2,
    is_delete,
    add_time,
    add_user_id,
    edit_time,
    edit_user_id from compensationType where ID=#id#
  </select>

  <select id="getSimilarCompensationtype"  parameterClass="Compensationtype"  resultMap="CompensationtypeMap">
   select id,
   give_excuse,
   compensating_form,
   compensating_content,
   standby1,
   standby2,
   is_delete,
   add_time,
   add_user_id,
   edit_time,
   edit_user_id from compensationType where is_delete=‘N‘
    <isNotEmpty prepend="and" property="giveExcuse">
     <![CDATA[ cc.GIVE_EXCUSE  like ‘%$giveExcuse$%‘ ]]>
    </isNotEmpty>
    <isNotEmpty prepend="and" property="compensatingForm">
     <![CDATA[ cc.COMPENSATING_FORM =#compensatingForm# ]]>
    </isNotEmpty>
    <isNotEmpty prepend="and" property="compensatingContent">
     <![CDATA[ cc.COMPENSATING_CONTENT=#compensatingContent# ]]>
    </isNotEmpty>
  </select>

</sqlMap>

===============================知识点分析===============================================

主要知识点在查询条件中的补偿形式,

如果我选择的是"请选择"或者是"积分",后面没有联动,当我选择的是优惠券,后面会有个下拉框的列表.这是怎么实现的呢?

其实说白了就是一个二级联动,有某个主键进行关联查询.

先来看如何展示与隐藏的.

<td class="queryTitle" width="80px">补偿形式</td>
    <td class="queryContent" >
       <select id="compensatingForm" style="width: 100px" panelHeight="auto" onchange="couponOrIntegralShow(this)">
            <option value>请选择</option>
            <option value="coupon">优惠券</option>
            <option value="integral">积分</option>
        </select>
        <label id="type" >&nbsp;<input class="inputText" type="text" id="compensatingContent" /></label>
     </td>
    <td class="queryBtnTd" colspan="2"><a href="javascript:void(0)" class="easyui-linkbutton" iconCls="icon-search"  onclick="doQuery()">查&nbsp;&nbsp;询</a></td>
  </tr>
</table>
有一个
onchange="couponOrIntegralShow(this)",接着看对应的js:
function couponOrIntegralShow(o){   if(o.value==‘coupon‘){      $("#type").show();   }else{      $("#type").hide();   }}

这样就可以看出展示,隐藏了.

那又是怎么进行联动的呢?

<label id="type" >&nbsp;<input class="inputText" type="text" id="compensatingContent" /></label>
<!--看这个label标签的id -->

 $("#compensatingContent").combobox({
    url:appPath+"/page/compensationtypeAct/ecCouponTypeSelect",
    valueField:"id",
    textField:"text",
    panelHeight:"auto",
    editable:false
});

<!--  这个id,去后台查询了,展示这些列表 -->
@RequestMapping("/ecCouponTypeSelect")
@ResponseBody
public List<Object> ecCouponTypeSelect(HttpServletRequest request,HttpServletResponse Response){
        List<Object> linkageRes =new ArrayList<Object>();
        HashMap<String,Object> param = new HashMap<String, Object>();
        param.put("useType","3");
        List<EcCouponType> typeList = compensationtypeService.queryCouponTypeByIdList(param);
        Map<String,Object> defaultValue = new HashMap<String,Object>();
        defaultValue.put("id", "");
        defaultValue.put("text", "请选择优惠券类型");
        defaultValue.put("selected", true);
        linkageRes.add(defaultValue);
        if(typeList.size()>0){
            List<EcCouponType> typeList1 =typeList;
            if(null!=typeList && !typeList.isEmpty()){
                for(EcCouponType nt : typeList1){
                    Map<String,Object> typeMap = new HashMap<String,Object>();
                    typeMap.put("id", nt.getCouponTypeId());
                    typeMap.put("text", nt.getCouponTypeName());
                    typeMap.put("attributes", nt);
                    linkageRes.add(typeMap);
                }
            }
        }
        return linkageRes;
  }


    <!-- 根据ID查询优惠券类型,或是根据券的类型去查找优惠券 -->
    <select id="getCouponTypeById" parameterClass="java.util.Map" resultMap="ecCouponTypeResult">
        select <include refid="Base_sql"/>
        from EC_COUPON_TYPE r
        where r.is_delete=‘N‘
        <isNotEmpty prepend="and" property="couponTypeId">
            r.COUPON_TYPE_ID = #couponTypeId#
        </isNotEmpty>
         <isNotEmpty prepend="and" property="couponTypeName">
            r.COUPON_TYPE_NAME like ‘%$couponTypeName$%‘
        </isNotEmpty>
        <isNotEmpty prepend="and" property="couponFee">
            r.COUPON_FEE = #couponFee#
        </isNotEmpty>
        <isNotEmpty prepend="and" property="useType">
            r.USE_TYPE = #useType#
        </isNotEmpty>
    </select>
    

注意一下查询条件取值:
function getQueryParam(){
  var compensatingLog =new Object();
      compensatingLog.userName=$.trim($("#userName").val());
      compensatingLog.editTimeBg=$.trim($("#editTimeBg").datebox(‘getValue‘));
      compensatingLog.editTimeEd=$.trim($("#editTimeEd").datebox(‘getValue‘));
      compensatingLog.loginName=$.trim($("#loginName").val());
      compensatingLog.giveExcuse=$.trim($("#giveExcuse").val());
      compensatingLog.compensatingForm=$.trim($("#compensatingForm").val());
      if($.trim($("#compensatingForm").val())=="coupon"){
         compensatingLog.compensatingContent=$.trim($("#compensatingContent").combobox(‘getValue‘));
      }
  return compensatingLog;
}
时间: 2024-08-05 15:18:27

营销系统--优惠券补偿记录的相关文章

AOFAX外呼营销系统外呼系统语音外呼

近日,广州某大型图书馆携手深圳AOFAX呼叫中心技术公司达成电话客服系统的建设方案的统一意见,并由AOFAX提供现场部署服务,目前系统已经正常运行. 为了让图书馆工作人员给读者提供高质量微笑服务,负责人李部长从2014年5月开始着手招标文档和公示,经过几个月的投标和竞标工作,AOFAX呼叫中心技术公司脱颖而出,各项功能严格匹配招标文书,并以最佳性价比获得各方的好评. 时代的步伐像车轮般循序渐进,新事物也必然代替旧事物. 传统交换机和热线电话的局限性越发明显,取而代之的是集团电话.程控交换机.企业

微信营销系统,谁主浮沉?

导读 微商的兴起也让传统企业变得蠢蠢欲动,很多企业甚至是个人,都有微信公众平台,都开通微信服务号,别人都利用微信赚了大钱,自己不做微商会显得 格格不入,当然,在庞大的市场需求下,部分企业也开始做起了微信营销平台和微信营销系统的开发,也就是微信营销CMS,简单点来说就是企业可以利用这个平 台做微信营销,相当于网站的后台CMS管理系统.如今网络上发展得比较成熟的几家做微信营销CMS系统有小猪CMS和微盟等,而小猪 CMS(www.pigcms.com)的发展更具特色. 草根站长失利,依靠微信发家 据

微群控新媒体营销系统硬件搭建细节问题

现在朋友圈比较流行的微群控新媒体营销系统看起来很好,但是实际上在前期硬件搭建的时候,还是需要注意很多细节问题的,要不然,可能最后系统不好运行起来,也不好实现自己想要的效果,在这里,奥创软件研究院为大家分析下一些注意事项. 首先要注意的,就是USB hub 硬件设备的选择,最好要选择传输稳定的,不管是USB 3.0 或者2.0都可以,但是一定要稳定,而且最好是独立供电的,这样当你通过电脑连接50个甚至100个手机的时候,就可以避免由于电压不够导致的经常断线等问题. 接下来要注意的,就是电脑主板的选

升讯威微信营销系统开发实践:(3)中控服务器的设计 .Net 还是 Java?

.Net 还是 Java?  :) 最近园子里又出现了.Net 和 Java 的口水贴,如果你觉得本文的内容根本就是 a piece of cake,不值一提,轻轻松松就能码出可靠健壮的实现,或许还可以讨论下.Net 和 Java 的问题,否则我想你还是歇歇吧,对你来说都是一样的,用好一样就行了,否则 .Net 1.1 都能完爆你. .Net的应用领域没有有些人想的那么窄,只能说你眼界实在是太浅了..Net在国外是否受待见?自己去国外招聘网站看一看就是了,又没被墙的,呵呵. 技术不过关不要赖平台

升讯威微信营销系统开发实践:目录

升讯威微信营销系统开发实践:(1)订阅号和服务号深入分析 升讯威微信营销系统开发实践:(2)功能设计与架构设计

汽车配件红包二维码营销系统

红包二维码营销系统 一.二维码营销到底是怎么实现的- 目前二维码营销,大多数是通一品一码.一物一码二维码送红包营销系统实现,即给每个商品赋予一个唯一的二维码身份证,消费者通过扫码这个二维码即可领红包.积分.抽奖.卡券等. 红包二维码营销系统.红包二维码营销系统开发.红包二维码营销系统开发可找小编;136-0243-3692. 二.二维码送红包营销系统,如何做互动营销 二维码送红包营销系统的诞生,的确给快消饮品.母婴用品.酒类.茶叶.日用品等行业商家提供了新的盈利能力.如何盈利-正品科技二维码送红

升讯威微信营销系统开发实践:(2)功能设计与架构设计

微信开发系列教程,将以一个实际的微信平台项目为案例,深入浅出的讲解微信开发.应用各环节的实现方案和技术细节. 本系列教程的最终目标是完成一个功能完善并达到高可用性能指标的微信管理软件,所以除了与微信本身紧密相关的对接和应用技术,还会讲到其它相关的所有知识点,从技术选型,架构设计,数据层的设计,API的设计,数据传输协议的设计,再到细节的前端的设计及技术应用,后台开发中的各方面技术,都会涉及.同时,在架构设计中,会考虑到运维领域的诸多问题,会涉及到部署环节中负载均衡及CDN分发,服务器流量及带宽控

全民营销系统,移动电商发展的主流

随着移动电商购物市场的火热,正是移动互联网电商发展的好时机.全民营销系统恰逢好机会,一个移动电商营销新模式的大平台出世,在竞争日益激烈的移动电商圈中,选中一个适合自己企业的电商模式是最为重要的.全民营销系统在电商界一直都是一个很热门的电商平台,该营销系统的模式也成为当前电商模式的主流. 全民营销系统是一款把商家和推广者连接起来的微商城+微分销一体化的成交平台.全民营销系统帮助会员建立微商城,将全民营销系统的微商城在微信朋友圈等社交圈进行便捷分享,以独特的佣金制吸引企业员工.顾客.朋友.创业者等申

全民营销系统汇聚移动电商力量

移动互联网电商的发展时代,用户的消费场景随着时代发展发生了巨大变化,各大电商接触消费者的地点越来越不固定,商家们接触消费者的时间也越来越短.碎片时间成为赢得移动电商平台消费者的黄金窗口,如何建立起移动电商碎片化思维,从看似碎片的世界中汇聚商业的力量呢?中国微银最新推出的全民营销系统借助移动互联网的力量,成为了当前移动电商界汇聚的商业力量. 除此之外,全民营销系统从互联网社化会时代,向互联网上面聚集了很多消费者群体中捕捉到类似线上与下线结合的O2O信息.从而解决客户茫然和困惑的问题.当然这里还只是