Explorar o código

批量添加新页面

chao %!s(int64=4) %!d(string=hai) anos
pai
achega
75a9daafeb
Modificáronse 49 ficheiros con 960 adicións e 160 borrados
  1. 4 4
      src/main/java/com/caimei/www/controller/RedirectController.java
  2. 24 1
      src/main/java/com/caimei/www/controller/authorized/AccountController.java
  3. 120 0
      src/main/java/com/caimei/www/controller/authorized/supplier/PageController.java
  4. 114 0
      src/main/java/com/caimei/www/controller/authorized/user/PageController.java
  5. 9 9
      src/main/java/com/caimei/www/controller/unlimited/RepairController.java
  6. 0 25
      src/main/java/com/caimei/www/controller/unlimited/SupplierController.java
  7. 0 13
      src/main/java/com/caimei/www/mapper/SupplierDao.java
  8. 0 13
      src/main/java/com/caimei/www/service/SupplierService.java
  9. 0 31
      src/main/java/com/caimei/www/service/impl/SupplierServiceImpl.java
  10. 1 18
      src/main/resources/mapper/SupplierMapper.xml
  11. 0 30
      src/main/resources/static/css/maintenance/form.css
  12. 30 0
      src/main/resources/static/css/repair/form.css
  13. 2 2
      src/main/resources/static/css/repair/index.css
  14. 0 0
      src/main/resources/static/img/repair/btn.png
  15. 0 0
      src/main/resources/static/img/repair/maintenance.jpg
  16. 2 2
      src/main/resources/static/js/repair/form.js
  17. 0 0
      src/main/resources/static/js/repair/index.js
  18. 22 0
      src/main/resources/templates/account/bind.html
  19. 22 0
      src/main/resources/templates/account/forget.html
  20. 1 1
      src/main/resources/templates/components/header.html
  21. 1 1
      src/main/resources/templates/index.html
  22. 4 4
      src/main/resources/templates/repair/form.html
  23. 6 6
      src/main/resources/templates/repair/index.html
  24. 23 0
      src/main/resources/templates/supplier-center/dashboard.html
  25. 23 0
      src/main/resources/templates/supplier-center/operation/form.html
  26. 23 0
      src/main/resources/templates/supplier-center/operation/list.html
  27. 23 0
      src/main/resources/templates/supplier-center/order/detail.html
  28. 23 0
      src/main/resources/templates/supplier-center/order/list.html
  29. 23 0
      src/main/resources/templates/supplier-center/order/settlement.html
  30. 23 0
      src/main/resources/templates/supplier-center/setting/information.html
  31. 23 0
      src/main/resources/templates/supplier-center/setting/password.html
  32. 23 0
      src/main/resources/templates/supplier-center/setting/phone.html
  33. 23 0
      src/main/resources/templates/supplier-center/shop/brand.html
  34. 23 0
      src/main/resources/templates/supplier-center/shop/decoration.html
  35. 23 0
      src/main/resources/templates/supplier-center/shop/goods.html
  36. 23 0
      src/main/resources/templates/supplier-center/shop/preview.html
  37. 23 0
      src/main/resources/templates/supplier-center/shop/release.html
  38. 23 0
      src/main/resources/templates/user-center/address/form.html
  39. 23 0
      src/main/resources/templates/user-center/address/list.html
  40. 23 0
      src/main/resources/templates/user-center/dashboard.html
  41. 23 0
      src/main/resources/templates/user-center/operation/form.html
  42. 23 0
      src/main/resources/templates/user-center/operation/list.html
  43. 23 0
      src/main/resources/templates/user-center/order/detail.html
  44. 23 0
      src/main/resources/templates/user-center/order/list.html
  45. 23 0
      src/main/resources/templates/user-center/repair/form.html
  46. 23 0
      src/main/resources/templates/user-center/repair/list.html
  47. 23 0
      src/main/resources/templates/user-center/setting/information.html
  48. 23 0
      src/main/resources/templates/user-center/setting/password.html
  49. 23 0
      src/main/resources/templates/user-center/setting/phone.html

+ 4 - 4
src/main/java/com/caimei/www/controller/RedirectController.java

@@ -81,9 +81,9 @@ public class RedirectController {
     /**
      * 维修保养介绍页【旧】
      */
-    @GetMapping("/html/maintenance/view/mt-entry-index.jsp")
-    public String toMaintenance() {
-		return "redirect:/maintenance/index.html";
+    @GetMapping("/html/repair/view/mt-entry-index.jsp")
+    public String torepair() {
+		return "redirect:/repair/index.html";
 	}
 
     /**
@@ -103,7 +103,7 @@ public class RedirectController {
     /**
      * 二手商品列表
      */
-    @GetMapping("/html/maintenance/view/secondtransactions.jsp")
+    @GetMapping("/html/repair/view/secondtransactions.jsp")
     public String toFleaMarketForm() {
         return "redirect:/flea-market/form.html";
     }

+ 24 - 1
src/main/java/com/caimei/www/controller/authorized/AccountController.java

@@ -14,10 +14,16 @@ import org.springframework.web.bind.annotation.GetMapping;
  */
 @Controller
 public class AccountController extends BaseController {
-
+    /** 登录 */
 	private static final String LOGIN_PATH = "account/login";
+    /** 注册 */
 	private static final String REGISTER_PATH = "account/register";
+    /** 升级会员机构 */
 	private static final String UPGRADE_PATH = "account/upgrade";
+    /** 忘记密码 */
+	private static final String FORGET_PATH = "account/forget";
+    /** 绑定运营人员 */
+	private static final String BIND_PATH = "account/bind";
 
     private AccountService accountService;
     @Autowired
@@ -49,4 +55,21 @@ public class AccountController extends BaseController {
         return UPGRADE_PATH;
     }
 
+
+    /**
+     * 忘记密码
+     */
+    @GetMapping("/forget.html")
+    public String forget() {
+        return FORGET_PATH;
+    }
+
+    /**
+     * 绑定运营人员
+     */
+    @GetMapping("/bind.html")
+    public String bind() {
+        return BIND_PATH;
+    }
+
 }

+ 120 - 0
src/main/java/com/caimei/www/controller/authorized/supplier/PageController.java

@@ -0,0 +1,120 @@
+package com.caimei.www.controller.authorized.supplier;
+
+import com.caimei.www.controller.BaseController;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.GetMapping;
+
+/**
+ * 【供应商】个人中心
+ *
+ * @author : Charles
+ * @date : 2020/8/27
+ */
+@Controller
+public class PageController extends BaseController {
+    /** 我的采美 */
+	private static final String DASHBOARD = "supplier-center/dashboard";
+    /** 订单列表 */
+	private static final String ORDER_LIST = "supplier-center/order/list";
+    /** 订单详情 */
+	private static final String ORDER_DETAIL = "supplier-center/order/detail";
+    /** 结算管理 */
+	private static final String SETTLEMENT_LIST = "supplier-center/order/settlement";
+    /** 员工管理 */
+	private static final String OPERATION_LIST = "supplier-center/operation/list";
+    /** 添加/编辑员工 */
+	private static final String OPERATION_DETAIL = "supplier-center/operation/form";
+    /** 资料 */
+	private static final String INFORMATION = "supplier-center/setting/information";
+    /** 重置密码 */
+	private static final String PASSWORD = "supplier-center/setting/password";
+    /** 更换手机号 */
+	private static final String PHONE = "supplier-center/setting/phone";
+    /** 装扮主页 */
+	private static final String DECORATION_SHOP = "supplier-center/shop/decoration";
+    /** 发布商品 */
+	private static final String RELEASE_GOODS = "supplier-center/shop/release";
+    /** 商品管理 */
+	private static final String GOODS_LIST = "supplier-center/shop/goods";
+    /** 商品预览 */
+	private static final String GOODS_PREVIEW = "supplier-center/shop/preview";
+
+    /** 我的采美 */
+    @GetMapping("/supplier/dashboard.html")
+    public String dashboard() {
+        return DASHBOARD;
+    }
+
+    /** 订单列表 */
+    @GetMapping("/supplier/order/list.html")
+    public String orderList() {
+        return ORDER_LIST;
+    }
+
+    /** 订单详情 */
+    @GetMapping("/supplier/order/detail.html")
+    public String orderDetail() {
+        return ORDER_DETAIL;
+    }
+
+    /** 结算管理 */
+    @GetMapping("/supplier/order/settlement.html")
+    public String orderSettlement() {
+        return SETTLEMENT_LIST;
+    }
+
+    /** 员工管理 */
+    @GetMapping("/supplier/operation/list.html")
+    public String operationList() {
+        return OPERATION_LIST;
+    }
+
+    /** 添加/编辑员工 */
+    @GetMapping("/supplier/operation/form.html")
+    public String operationForm() {
+        return OPERATION_DETAIL;
+    }
+
+    /** 资料 */
+    @GetMapping("/supplier/setting/information.html")
+    public String settingInformation() {
+        return INFORMATION;
+    }
+
+    /** 重置密码 */
+    @GetMapping("/supplier/setting/password.html")
+    public String settingPassword() {
+        return PASSWORD;
+    }
+
+    /** 更换手机号 */
+    @GetMapping("/supplier/setting/phone.html")
+    public String settingPhone() {
+        return PHONE;
+    }
+
+    /** 装扮主页 */
+    @GetMapping("/supplier/decoration.html")
+    public String shopDecoration() {
+        return DECORATION_SHOP;
+    }
+
+    /** 发布商品 */
+    @GetMapping("/supplier/release.html")
+    public String releaseGoods() {
+        return RELEASE_GOODS;
+    }
+
+    /** 商品管理 */
+    @GetMapping("/supplier/goods.html")
+    public String goodsList() {
+        return GOODS_LIST;
+    }
+    /** 商品预览 */
+    @GetMapping("/supplier/goods/preview.html")
+    public String goodsPreview() {
+        return GOODS_PREVIEW;
+    }
+
+
+}

+ 114 - 0
src/main/java/com/caimei/www/controller/authorized/user/PageController.java

@@ -0,0 +1,114 @@
+package com.caimei.www.controller.authorized.user;
+
+import com.caimei.www.controller.BaseController;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.GetMapping;
+
+/**
+ * 【机构】个人中心
+ *
+ * @author : Charles
+ * @date : 2020/8/27
+ */
+@Controller
+public class PageController extends BaseController {
+    /** 我的采美 */
+	private static final String DASHBOARD = "user-center/dashboard";
+    /** 订单列表 */
+	private static final String ORDER_LIST = "user-center/order/list";
+    /** 订单详情 */
+	private static final String ORDER_DETAIL = "user-center/order/detail";
+    /** 运营人员列表 */
+	private static final String OPERATION_LIST = "user-center/operation/list";
+    /** 添加/编辑运营人员 */
+	private static final String OPERATION_DETAIL = "user-center/operation/form";
+    /** 维修列表 */
+	private static final String REPAIR_LIST = "user-center/repair/list";
+    /** 申请维修 */
+	private static final String REPAIR_FORM = "user-center/repair/form";
+    /** 地址管理 */
+	private static final String ADDRESS_LIST = "user-center/address/list";
+    /** 添加地址 */
+	private static final String ADDRESS_FORM = "user-center/address/form";
+    /** 个人资料 */
+	private static final String INFORMATION = "user-center/setting/information";
+    /** 重置密码 */
+	private static final String PASSWORD = "user-center/setting/password";
+    /** 更换手机号 */
+	private static final String PHONE = "user-center/setting/phone";
+
+    /** 我的采美 */
+    @GetMapping("/user/dashboard.html")
+    public String dashboard() {
+        return DASHBOARD;
+    }
+
+    /** 订单列表 */
+    @GetMapping("/user/order/list.html")
+    public String orderList() {
+        return ORDER_LIST;
+    }
+
+    /** 订单详情 */
+    @GetMapping("/user/order/detail.html")
+    public String orderDetail() {
+        return ORDER_DETAIL;
+    }
+
+    /** 运营人员列表 */
+    @GetMapping("/user/operation/list.html")
+    public String operationList() {
+        return OPERATION_LIST;
+    }
+
+    /** 添加/编辑运营人员 */
+    @GetMapping("/user/operation/form.html")
+    public String operationForm() {
+        return OPERATION_DETAIL;
+    }
+
+    /** 维修列表 */
+    @GetMapping("/user/repair/list.html")
+    public String repairList() {
+        return REPAIR_LIST;
+    }
+
+    /** 申请维修 */
+    @GetMapping("/user/repair/form.html")
+    public String repairForm() {
+        return REPAIR_FORM;
+    }
+
+    /** 地址管理 */
+    @GetMapping("/user/address/list.html")
+    public String addressList() {
+        return ADDRESS_LIST;
+    }
+
+    /** 添加地址 */
+    @GetMapping("/user/address/form.html")
+    public String addressForm() {
+        return ADDRESS_FORM;
+    }
+
+    /** 资料 */
+    @GetMapping("/user/setting/information.html")
+    public String settingInformation() {
+        return INFORMATION;
+    }
+
+    /** 重置密码 */
+    @GetMapping("/user/setting/password.html")
+    public String settingPassword() {
+        return PASSWORD;
+    }
+
+    /** 更换手机号 */
+    @GetMapping("/user/setting/phone.html")
+    public String settingPhone() {
+        return PHONE;
+    }
+
+
+
+}

+ 9 - 9
src/main/java/com/caimei/www/controller/unlimited/MaintenanceController.java → src/main/java/com/caimei/www/controller/unlimited/RepairController.java

@@ -12,25 +12,25 @@ import org.springframework.web.bind.annotation.GetMapping;
  * @date : 2020/7/21
  */
 @Controller
-public class MaintenanceController extends BaseController {
+public class RepairController extends BaseController {
 	/** 维修保养介绍页 */
-	private static final String MAINTENANCE_PATH = "maintenance/index";
+	private static final String REPAIR_PATH = "repair/index";
 	/** 维修保申请页 */
-	private static final String MAINTENANCE_FORM_PATH = "maintenance/form";
+	private static final String REPAIR_FORM_PATH = "repair/form";
 
     /**
      * 维修保养介绍页
      */
-    @GetMapping("/maintenance/index.html")
-    public String maintenance(final Model model) {
-        return MAINTENANCE_PATH;
+    @GetMapping("/repair/index.html")
+    public String repair(final Model model) {
+        return REPAIR_PATH;
     }
     /**
      * 维修保养申请页
      */
-    @GetMapping("/maintenance/form.html")
-    public String maintenanceForm(final Model model) {
-        return MAINTENANCE_FORM_PATH;
+    @GetMapping("/repair/form.html")
+    public String repairForm(final Model model) {
+        return REPAIR_FORM_PATH;
     }
 
 }

+ 0 - 25
src/main/java/com/caimei/www/controller/unlimited/SupplierController.java

@@ -1,8 +1,6 @@
 package com.caimei.www.controller.unlimited;
 
 import com.caimei.www.controller.BaseController;
-import com.caimei.www.pojo.JsonModel;
-import com.caimei.www.pojo.page.ProductList;
 import com.caimei.www.pojo.page.SupplierDetail;
 import com.caimei.www.service.SupplierService;
 import org.springframework.beans.factory.annotation.Autowired;
@@ -10,9 +8,7 @@ import org.springframework.stereotype.Controller;
 import org.springframework.ui.Model;
 import org.springframework.web.bind.annotation.GetMapping;
 import org.springframework.web.bind.annotation.RequestParam;
-import org.springframework.web.bind.annotation.ResponseBody;
 
-import java.util.List;
 
 /**
  * 供应商(supplier)
@@ -50,25 +46,4 @@ public class SupplierController extends BaseController {
         return SUPPLIER_INDEX_PATH;
     }
 
-    /**
-     * 供应商-轮播图片
-     * @return
-     */
-    @GetMapping("/supplier/images")
-    @ResponseBody
-    public JsonModel<List<String>> getSupplierDetailImages(Integer supplierId) {
-        return supplierService.getSupplierDetailImages(supplierId);
-    }
-
-    /**
-     * 供应商-主推商品
-     * @return
-     */
-    @GetMapping("/supplier/products")
-    @ResponseBody
-    public JsonModel<List<ProductList>> getSupplierMainProducts(Integer supplierId) {
-        return supplierService.getSupplierMainProducts(supplierId);
-    }
-
-
 }

+ 0 - 13
src/main/java/com/caimei/www/mapper/SupplierDao.java

@@ -21,17 +21,4 @@ public interface SupplierDao {
      */
     SupplierDetail getSupplierById(Integer supplierId);
 
-    /**
-     * 供应商-轮播图片
-     * @param supplierId
-     * @return
-     */
-    List<String> getSupplierDetailImages(Integer supplierId);
-
-    /**
-     * 供应商-主推商品
-     * @param supplierId
-     * @return
-     */
-    List<ProductList> getSupplierMainProducts(Integer supplierId);
 }

+ 0 - 13
src/main/java/com/caimei/www/service/SupplierService.java

@@ -20,17 +20,4 @@ public interface SupplierService {
      */
     SupplierDetail getSupplierById(Integer supplierId);
 
-    /**
-     * 供应商-轮播图片
-     * @param supplierId
-     * @return
-     */
-    JsonModel<List<String>> getSupplierDetailImages(Integer supplierId);
-
-    /**
-     * 供应商-主推商品
-     * @param supplierId
-     * @return
-     */
-    JsonModel<List<ProductList>> getSupplierMainProducts(Integer supplierId);
 }

+ 0 - 31
src/main/java/com/caimei/www/service/impl/SupplierServiceImpl.java

@@ -42,35 +42,4 @@ public class SupplierServiceImpl implements SupplierService {
         return supplier;
     }
 
-    /**
-     * 供应商-轮播图片
-     *
-     * @param supplierId
-     * @return
-     */
-    @Override
-    public JsonModel<List<String>> getSupplierDetailImages(Integer supplierId) {
-        if (supplierId == null) { return JsonModel.error("参数异常", null);}
-        List<String> images = supplierDao.getSupplierDetailImages(supplierId);
-        return JsonModel.success(images);
-    }
-
-    /**
-     * 供应商-主推商品
-     *
-     * @param supplierId
-     * @return
-     */
-    @Override
-    public JsonModel<List<ProductList>> getSupplierMainProducts(Integer supplierId) {
-        if (supplierId == null) { return JsonModel.error("参数异常", null);}
-        List<ProductList> list = supplierDao.getSupplierMainProducts(supplierId);
-        // 设置价格等级 及 老图片路径
-        list.forEach(product -> {
-             product.setPriceGrade(PriceUtil.getpriceGrade(product.getPrice()));
-             product.setPrice(0d);
-             product.setImage(ImageUtil.getImageURL("product", product.getImage(), 0, domain));
-        });
-        return JsonModel.success(list);
-    }
 }

+ 1 - 18
src/main/resources/mapper/SupplierMapper.xml

@@ -19,22 +19,5 @@
         from shop s
         where shopID = #{supplierId}
     </select>
-    <select id="getSupplierDetailImages" resultType="java.lang.String">
-        select image
-        from shopbanner
-        where shopID = #{supplierId}
-    </select>
-    <select id="getSupplierMainProducts" resultType="com.caimei.www.pojo.page.ProductList">
-		select
-			p.productID as id,
-			p.`name` as `name`,
-			p.mainImage as image,
-			p.price1 as price,
-			p.unit as unit,
-			p.price1TextFlag as priceFlag
-		from product p
-        where p.shopID = #{supplierId}
-        and p.validFlag = 2 and p.featuredFlag=1
-        order by p.productID desc limit 4
-    </select>
+
 </mapper>

+ 0 - 30
src/main/resources/static/css/maintenance/form.css

@@ -1,30 +0,0 @@
-@charset "utf-8";
-li{list-style:none}
-body{background:#FFF;}
-/**
- * PC端
- */
-@media screen and (min-width:768px){
-.maintenance{width:1184px;margin:0 auto;}
-.maintenance .title{height:42px;line-height:42px;font-weight:bold;font-size:32px;color:#22272e;text-align:center;padding:30px}
-.maintenance .desc{font-size:14px;color:#e15616;height:36px;line-height:36px;text-align:center;margin-bottom:30px;background-color:#fff7f3;background-image:-ms-linear-gradient(270deg,#ffffff 0%,#ffe6dc 50%,#ffffff 100%);background-image:-webkit-linear-gradient(270deg,#ffffff 0%,#ffe6dc 50%,#ffffff 100%);background-image:linear-gradient(270deg,#ffffff 0%,#ffe6dc 50%,#ffffff 100%)}
-.maintenance form{width:498px;margin:0 auto}
-.maintenance .fileInfo{font-size:14px;line-height:24px;color:#f94b4b}
-
-
-}
-
-/**
-* 移动端
-*/
-@media screen and (max-width:768px){
-footer{display:none}
-.maintenance{width:93.4vw;margin: 0 auto;}
-.maintenance .title{height:6vw;line-height:6vw;font-weight:bold;font-size:4.2vw;color:#22272e;text-align:center;padding:5.2vw 0}
-.maintenance .desc{font-size:3vw;color:#e15616;line-height:5.2vw;padding:2vw 0;text-align:center;margin-bottom:3vw;background-color:#fff7f3;background-image:-ms-linear-gradient(270deg,#ffffff 0%,#ffe6dc 50%,#ffffff 100%);background-image:-webkit-linear-gradient(270deg,#ffffff 0%,#ffe6dc 50%,#ffffff 100%);background-image:linear-gradient(270deg,#ffffff 0%,#ffe6dc 50%,#ffffff 100%)}
-.maintenance form{width:100%;margin:0 auto}
-.maintenance .fileInfo{font-size:3vw;line-height:5.2vw;color:#f94b4b}
-
-
-
-}

+ 30 - 0
src/main/resources/static/css/repair/form.css

@@ -0,0 +1,30 @@
+@charset "utf-8";
+li{list-style:none}
+body{background:#FFF;}
+/**
+ * PC端
+ */
+@media screen and (min-width:768px){
+.repair{width:1184px;margin:0 auto;}
+.repair .title{height:42px;line-height:42px;font-weight:bold;font-size:32px;color:#22272e;text-align:center;padding:30px}
+.repair .desc{font-size:14px;color:#e15616;height:36px;line-height:36px;text-align:center;margin-bottom:30px;background-color:#fff7f3;background-image:-ms-linear-gradient(270deg,#ffffff 0%,#ffe6dc 50%,#ffffff 100%);background-image:-webkit-linear-gradient(270deg,#ffffff 0%,#ffe6dc 50%,#ffffff 100%);background-image:linear-gradient(270deg,#ffffff 0%,#ffe6dc 50%,#ffffff 100%)}
+.repair form{width:498px;margin:0 auto}
+.repair .fileInfo{font-size:14px;line-height:24px;color:#f94b4b}
+
+
+}
+
+/**
+* 移动端
+*/
+@media screen and (max-width:768px){
+footer{display:none}
+.repair{width:93.4vw;margin: 0 auto;}
+.repair .title{height:6vw;line-height:6vw;font-weight:bold;font-size:4.2vw;color:#22272e;text-align:center;padding:5.2vw 0}
+.repair .desc{font-size:3vw;color:#e15616;line-height:5.2vw;padding:2vw 0;text-align:center;margin-bottom:3vw;background-color:#fff7f3;background-image:-ms-linear-gradient(270deg,#ffffff 0%,#ffe6dc 50%,#ffffff 100%);background-image:-webkit-linear-gradient(270deg,#ffffff 0%,#ffe6dc 50%,#ffffff 100%);background-image:linear-gradient(270deg,#ffffff 0%,#ffe6dc 50%,#ffffff 100%)}
+.repair form{width:100%;margin:0 auto}
+.repair .fileInfo{font-size:3vw;line-height:5.2vw;color:#f94b4b}
+
+
+
+}

+ 2 - 2
src/main/resources/static/css/maintenance/index.css → src/main/resources/static/css/repair/index.css

@@ -10,7 +10,7 @@ li{list-style:none}
 .content{width:1184px;margin:0 auto;background:#FFF}
 .content img{display:block;width:100%}
 .content .btnBox{height:214px}
-.fixedBtn{display:block;width:706px;height:214px;margin:0 auto;background:url(/img/maintenance/btn.png) no-repeat center center;cursor:pointer}
+.fixedBtn{display:block;width:706px;height:214px;margin:0 auto;background:url(/img/repair/btn.png) no-repeat center center;cursor:pointer}
 .fixedBtn,.fixedBtn:hover{color:transparent}
 .fixedBtn.fixed{position:fixed;right:50%;margin-right:-353px;bottom:0}
 
@@ -26,7 +26,7 @@ li{list-style:none}
 .content{width:100vw;margin:0 auto;background:#FFF}
 .content img{display:block;width:100%}
 .content .btnBox{height:21.4vw}
-.fixedBtn{display:block;width:70.6vw;height:21.4vw;margin:0 auto;background:url(/img/maintenance/btn.png) no-repeat center center;background-size:100%;cursor:pointer}
+.fixedBtn{display:block;width:70.6vw;height:21.4vw;margin:0 auto;background:url(/img/repair/btn.png) no-repeat center center;background-size:100%;cursor:pointer}
 .fixedBtn,.fixedBtn:hover{color:transparent}
 .fixedBtn.fixed{position:fixed;right:50%;margin-right:-35.3vw;bottom:0}
 

+ 0 - 0
src/main/resources/static/img/maintenance/btn.png → src/main/resources/static/img/repair/btn.png


+ 0 - 0
src/main/resources/static/img/maintenance/maintenance.jpg → src/main/resources/static/img/repair/maintenance.jpg


+ 2 - 2
src/main/resources/static/js/maintenance/form.js → src/main/resources/static/js/repair/form.js

@@ -1,5 +1,5 @@
-var maintenanceForm = new Vue({
-    el: '#maintenanceForm',
+var repairForm = new Vue({
+    el: '#repairForm',
     data: {
         postData: {
             question: '',

+ 0 - 0
src/main/resources/static/js/maintenance/index.js → src/main/resources/static/js/repair/index.js


+ 22 - 0
src/main/resources/templates/account/bind.html

@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+    <link th:href="@{/css/base/form.css(v=${version})}" rel="stylesheet" type="text/css">
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="account/components/header"></template>
+
+<!-- 绑定运营人员 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+</body>
+</html>

+ 22 - 0
src/main/resources/templates/account/forget.html

@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+    <link th:href="@{/css/base/form.css(v=${version})}" rel="stylesheet" type="text/css">
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="account/components/header"></template>
+
+<!-- 忘记密码 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+</body>
+</html>

+ 1 - 1
src/main/resources/templates/components/header.html

@@ -116,7 +116,7 @@
                     </li>
                 </ul>
             </div>
-            <a class="service nav" href="/maintenance/index.html">维修</a>
+            <a class="service nav" href="/repair/index.html">维修</a>
         </div>
         <div id="mainClassify" class="classifyBox mFixed">
             <div v-if="!isPC" class="clsHead clear">

+ 1 - 1
src/main/resources/templates/index.html

@@ -42,7 +42,7 @@
                     </div>
                 </div>
             </li>
-            <li class="first"><a class="nav mIcon" href="/maintenance/index.html"><span>维修</span></a></li>
+            <li class="first"><a class="nav mIcon" href="/repair/index.html"><span>维修</span></a></li>
         </ul>
     </div>
     <!--页面主体数据-->

+ 4 - 4
src/main/resources/templates/maintenance/form.html → src/main/resources/templates/repair/form.html

@@ -5,15 +5,15 @@
     <title>采美365网-维修申请</title>
     <template th:replace="components/head-link"></template>
     <link th:href="@{/css/base/form.css(v=${version})}" rel="stylesheet" type="text/css">
-    <link th:href="@{/css/maintenance/form.css(v=${version})}" rel="stylesheet" type="text/css">
+    <link th:href="@{/css/repair/form.css(v=${version})}" rel="stylesheet" type="text/css">
 </head>
 <body>
 <!-- 引用头部 -->
 <template th:replace="components/header"></template>
 
 <!-- 维修申请 -->
-<div id="maintenanceForm">
-    <div class="maintenance">
+<div id="repairForm">
+    <div class="repair">
         <h1 class="title">申请维修</h1>
         <p class="desc">未注册用户可直接填写维修申请;已注册用户为了方便您查看后续服务进展,请在登录账号后再填写维修申请。</p>
         <form>
@@ -74,6 +74,6 @@
 <!-- 引入底部 -->
 <template th:replace="components/footer"></template>
 <template th:replace="components/foot-link"></template>
-<script charset="utf-8" type="text/javascript" th:src="@{/js/maintenance/form.js(v=${version})}"></script>
+<script charset="utf-8" type="text/javascript" th:src="@{/js/repair/form.js(v=${version})}"></script>
 </body>
 </html>

+ 6 - 6
src/main/resources/templates/maintenance/index.html → src/main/resources/templates/repair/index.html

@@ -4,23 +4,23 @@
 <head>
     <title>采美365网-采美仪器维修保养介绍</title>
     <template th:replace="components/head-link"></template>
-    <link th:href="@{/css/maintenance/index.css(v=${version})}" rel="stylesheet" type="text/css">
+    <link th:href="@{/css/repair/index.css(v=${version})}" rel="stylesheet" type="text/css">
 </head>
 <body>
 <!-- 引用头部 -->
 <template th:replace="components/header"></template>
 
 <!-- 维修保养介绍 -->
-<div id="maintenance">
+<div id="repair">
     <div class="wrap">
         <h1 class="title">
             <span>采美仪器维修介绍</span>
-            <a href="/maintenance/form.html" class="btn">申请维修</a>
+            <a href="/repair/form.html" class="btn">申请维修</a>
         </h1>
         <div class="content">
-            <img src="/img/maintenance/maintenance.jpg" alt="采美仪器维修介绍">
+            <img src="/img/repair/repair.jpg" alt="采美仪器维修介绍">
             <div class="btnBox">
-                <a href="/maintenance/form.html" class="fixedBtn">申请维修</a>
+                <a href="/repair/form.html" class="fixedBtn">申请维修</a>
             </div>
         </div>
     </div>
@@ -29,6 +29,6 @@
 <!-- 引入底部 -->
 <template th:replace="components/footer"></template>
 <template th:replace="components/foot-link"></template>
-<script charset="utf-8" type="text/javascript" th:src="@{/js/maintenance/index.js(v=${version})}"></script>
+<script charset="utf-8" type="text/javascript" th:src="@{/js/repair/index.js(v=${version})}"></script>
 </body>
 </html>

+ 23 - 0
src/main/resources/templates/supplier-center/dashboard.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/supplier-center/operation/form.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/supplier-center/operation/list.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/supplier-center/order/detail.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/supplier-center/order/list.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/supplier-center/order/settlement.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/supplier-center/setting/information.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/supplier-center/setting/password.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/supplier-center/setting/phone.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/supplier-center/shop/brand.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/supplier-center/shop/decoration.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/supplier-center/shop/goods.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/supplier-center/shop/preview.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/supplier-center/shop/release.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/user-center/address/form.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/user-center/address/list.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/user-center/dashboard.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/user-center/operation/form.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/user-center/operation/list.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/user-center/order/detail.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/user-center/order/list.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/user-center/repair/form.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/user-center/repair/list.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/user-center/setting/information.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/user-center/setting/password.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>

+ 23 - 0
src/main/resources/templates/user-center/setting/phone.html

@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html lang="zh-CN" xmlns:th="https://www.thymeleaf.org" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="https://www.thymeleaf.org ">
+<head>
+    <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
+    <template th:replace="components/head-link"></template>
+
+</head>
+<body>
+<!-- 引用头部 -->
+<template th:replace="components/header"></template>
+
+<!-- 我的采美 -->
+<div>
+
+</div>
+
+<!-- 引入底部 -->
+<template th:replace="components/footer"></template>
+<template th:replace="components/foot-link"></template>
+
+</body>
+</html>