初始的首頁
首先獲取首頁中頭條展示內容的list
然後還要獲取一級店鋪類別,用來將店鋪分類展示
dao層
獲取頭條資訊
/*** 通過傳入的查詢條件,查詢頭條資訊
* @param headlinecondition
* @return
*/listqueryheadline(@param( "headlinecondition" ) headline headlinecondition);
select獲取店鋪類別資訊line_id,
line_name,
line_link,
line_img,
priority,
status,
create_time,
last_edit_time
from
head_line
and status=#
order by
priority desc
/*** 獲取店鋪類別
* @param shopcategorycondition
* @return
*/listqueryshopcategory(@param("shopcategorycondition") shopcategory shopcategorycondition);
selectservice層shop_category_id,
shop_category_name,
shop_category_desc,
shop_category_img,
priority,
create_time,
last_edit_time,
parent_id
from shop_category
and parent_id is null
and parent_id is not null
and parent_id = #
order by
priority desc
頭條資訊
/*** 根據查詢條件返回頭條列表
* @param headlinecondition
* @return
*/listgetheadlinelist(headline headlinecondition);
public listgetheadlinelist(headline headlinecondition)店鋪類別
/*** 根據查詢條件獲取店鋪類別列表
* @param shopcategorycondition
* @return
*/listgetshopcategorylist(shopcategory shopcategorycondition);
public listgetshopcategorylist(shopcategory shopcategorycondition)controller層
/*** 初始化前端展示系統資訊,包括一級店鋪類別列表資訊和頭條列表
* @return
*/@responsebody
private maplistmainpageinfo()catch(exception e)
listheadlinelist = new arraylist<>( );
try catch(exception e)
modelmap.put( "success", true );
return modelmap;
}
shop 10 店鋪列表(後台)
分頁讀取與無限滾動 多條件排列組合查詢店鋪資訊 dao層在查詢店鋪列表時,加上parentid不為空時,進行二級子列表的查詢 select s.shop id,s.shop name,s.shop desc,s.shop addr,s.phone,s.shop img,s.priority,s.cr...
shop 9 商品 商品管理 修改(前端)
商品管理的頁面和商品分類管理的頁面很類似 shop 8.商品類別 初始化展示 shop 8.商品類別 批量操作 新增 前端 要有乙個 路由 進行店鋪管理顯示的 public string productmanagement productmanagement.html 商店管理 商品名稱 優先順序操...
Web前端學習 10
移動 translate x,y 或 translatex translatey 旋 rotate 正或負 縮放 scale x,y 或 scalex scaley 傾斜 skew x,y 或 skewx skewy translate translate x,y 2d轉換,沿x和y軸移動元素 tr...