Example #1
0
 /**
  * 请求星期天活动店铺列表
  *
  * @param area 二级地址
  * @param region 三级地址
  * @param shopOneType 一级店铺分类
  * @param shopTwoType 二级店铺分类
  * @param sundayType 星期天类型 =7 =1 =2
  * @param color 颜色:all=所有, red=中午, yellow=周一周五, blue=任意时段
  * @param selName 店铺名称
  * @param page 页数
  * @param maxNum 每页多少条数据
  */
 public void getShoplist(
     String area,
     String region,
     int shopOneType,
     String shopTwoType,
     int sundayType,
     String color,
     int page) {
   // waitdg.mInitShow("正在努力为您加载中…");
   if (maxPage != 0 && page > maxPage) {
     waitdg.dismiss();
     PhoneState.showToast(context, "已是最后一页,请往上划!");
   } else {
     // waitdg.mInitShow("店铺列表加载中…");
     mGetArea(
         IP
             + "getsundayShopByParamOnZheKou?area="
             + area
             + "&region="
             + region
             + "&shopOneType="
             + shopOneType
             + "&shopTwoType="
             + shopTwoType
             + "&sundayType="
             + sundayType
             + "&color="
             + color
             + "&selName="
             + ""
             + "&page="
             + page
             + "&maxNum="
             + MAX_RESULT);
   }
 }