瀏覽代碼

样式修改

liguorui 7 年之前
父節點
當前提交
48e7f4ac6b

+ 0 - 1
components/page-scroll/page-scroll.wxml

@@ -1,7 +1,6 @@
 <!--components/page-scroll/page-scroll.wxml-->
 <view 
 	class="page_scroll"
-	  	  class=""
   	style="{{styleSheet}}">
 	<view 
 		class="page_info"

+ 107 - 0
components/swc-scroll/swc-scroll.js

@@ -0,0 +1,107 @@
+// components/page-scroll/page-scroll.js
+Component({
+  /**
+   * 组件的属性列表
+   */
+  properties: {
+    "className":{
+      value:"",
+      type:String
+    },
+    "styleSheet":{
+      value:"",
+      type:String
+    },
+    "upper-threshold":{      
+      value:5,
+      type:Number
+    },
+    "scrollitem":{          
+      value:[],
+      type:Array
+    },
+    "scrollto":{
+      value:"",
+      type:Number
+    }
+  },
+
+  /**
+   * 组件的初始数据
+   */
+  data: {
+    height:0,
+    upper:true,
+    index:0
+  },
+  ready:function(){
+  },
+  methods: {
+    scrollLower:function(e){
+      this.triggerEvent("scrolltolower",e.detail);
+    },
+    scrollUpper:function(e){
+      this.triggerEvent("scrolltoupper",e.detail);
+    },
+    scroll:function(e){
+      var scrolltop = e.detail.scrollTop;
+      var scrollitem =this.data.scrollitem;
+      var index = 0;
+      if(this.data.upper){
+        if(scrolltop>this.data["upper-threshold"]){
+          this.setData({
+            upper:false,
+            height:0
+          })
+        }
+      }else{
+        if(scrolltop<this.data["upper-threshold"]){
+          this.setData({
+            upper:true
+          })
+        }
+      }
+      var l = scrollitem.length;
+      if(scrolltop>scrollitem[l-1]){
+        index=l;
+      }else{
+        for(var i=0;i<l;i++){
+          if(scrolltop<scrollitem[i]){
+            index = i;
+            break;
+          }
+        }
+      }
+      if(index!=this.data.index){
+        this.setData({
+          index:index
+        });
+        this.triggerEvent("swc",index);
+      }
+      this.triggerEvent("scroll",this.data.upper);
+    },
+    changeHeight:function(e){
+      var _self=this;
+      if(this.data.starttop){
+        this.setData({
+          height:(e.touches[0].pageY-this.data.starttop)/2
+        })
+        this.triggerEvent("topheight",this.data.height);
+      }else{
+        this.setData({
+          starttop:e.touches[0].pageY
+        })
+      }
+    },
+    endChange:function(e){
+      var obj = {
+        starttop:0
+      }
+      if(this.data.height){
+        obj.height=0;
+      }
+      this.setData(obj);
+      this.triggerEvent("topheight",this.data.height);
+    }
+  }
+})

+ 4 - 0
components/swc-scroll/swc-scroll.json

@@ -0,0 +1,4 @@
+{
+  "component": true,
+  "usingComponents": {}
+}

+ 29 - 0
components/swc-scroll/swc-scroll.wxml

@@ -0,0 +1,29 @@
+<!--components/page-scroll/page-scroll.wxml-->
+<view 
+	class="swc_scroll {{className}}"
+  	style="{{styleSheet}}">
+	<view 
+		class="page_info"
+		style="height:{{height}}rpx; {{height?'':'transition:height 0.5s;'}}">
+		<view class="page_info_t">
+	    	本网页由m.dyhc.com提供
+	    </view>
+	</view>
+	<scroll-view 
+	  class="{{className}}"
+  	  style="{{styleSheet}}"
+	  scroll-y="{{height==0}}"
+	  bindscroll="scroll"
+	  bindscrolltolower="scrollLower"
+	  bindscrolltoupper="scrollUpper"
+	  upper-threshold="0"
+	  scroll-top="{{scrollto}}"
+	>
+		<view
+		  bindtouchmove="{{upper?'changeHeight':''}}"
+		  bindtouchend="endChange"
+		>
+			<slot></slot>
+		</view>
+	</scroll-view>
+</view>

+ 21 - 0
components/swc-scroll/swc-scroll.wxss

@@ -0,0 +1,21 @@
+.content{
+	background-color:#F9F9F9;
+}
+.page_scroll{
+	overflow-y: hidden;
+}
+.page_info{
+	/*height: 0rpx;*/
+	background-color: #fede18;
+	overflow: hidden;
+	position: relative;
+}
+.page_info_t{
+	position: absolute;
+	top:20%;
+	width:100%;
+	text-align: center;
+	line-height: 36rpx;
+	font-size:26rpx;
+	color:#383735;
+}

二進制
img/close2.png


+ 5 - 5
module/logs/logs.wxss

@@ -8,20 +8,20 @@
 }
 
 .logs_back{
-	width: 60rpx;
-	height: 60rpx;
-	margin-top:60rpx;
+	width: 50rpx;
+	height: 50rpx;
+	margin-top:200rpx;
 	margin-left:60rpx;
 }
 .logs_welcome{
-	margin:117rpx 0rpx 0rpx 85rpx;
+	margin:117rpx 0rpx 0rpx 60rpx;
 	line-height: 75rpx;
 	color: rgba(255, 255, 255, 1);
 	font-size: 50rpx;
 	font-family: PingFangSC-Medium,NotoSansHans-Medium;
 }
 .logs_welcome_withoutlog{
-	margin-left:85rpx;
+	margin-left:60rpx;
 	line-height: 42rpx;
 	color: rgba(183, 183, 183, 1);
 	font-size: 28rpx;

+ 47 - 2
pages/cardetail/cardetail.js

@@ -55,7 +55,10 @@ Page(Object.assign({
       "12":"rates_a",
       "24":"rates_b",
       "36":"rates_c"
-    }
+    },
+    scrollindex:0,
+    desopen:false,
+    showcheck:false
   },
 
   /**
@@ -128,12 +131,14 @@ Page(Object.assign({
         detail.imgs = detail.imgs&&detail.imgs.split(",");
         detail.imgslength = detail.imgs.length;
         detail.first_plate_at = time[0]+"/"+time[1];
+        detail.first_plate_atname = time[0]+"年"+parseInt(time[1])+"月";
         detail.check_info.forEach(function(item){
           item.passn = 0;
           item.unpassn = 0;
           item._child.forEach(function(item2){
             item2.passn = 0;
             item2.unpassn = 0;
+            item2.opensub=false;
             item2._child.forEach(function(item3){
               if(item3.state){
                 item2.passn++;
@@ -145,8 +150,13 @@ Page(Object.assign({
             })
           })
         })
+        var imgh = 412*detail.imgslength+1674;
+        var scrollitem = [532,1586,imgh].map(function(item){
+          return item/app.globalData.scale;
+        })
         _self.setData({
-          detail:detail
+          detail:detail,
+          scrollitem:scrollitem
         })
       }else{        
         if(json.data.message){
@@ -294,5 +304,40 @@ Page(Object.assign({
         duration:2000
       })
     }
+  },
+  swcItem:function(e){
+    this.setData({
+      scrollindex:e.detail
+    })
+  },
+  toScroll:function(e){
+    var index = e.target.dataset.index;
+    this.setData({
+      scrollto:index=="0"?0:this.data.scrollitem[index]+1,
+      desopen:false
+    })
+  },
+  swdesc:function(){
+    this.setData({
+      desopen:!this.data.desopen
+    })
+  },
+  openCheck:function(){
+    this.setData({
+      showcheck:true
+    })
+  },
+  closeCheck:function(){
+    this.setData({
+      showcheck:false
+    })
+  },
+  openSub:function(e){
+    var obj = e.target.dataset;
+    var check_info = this.data.detail.check_info;
+    var item = Object.assign({},check_info[obj.index]._child[obj.indext]);
+    item.opensub = !item.opensub;
+    check_info[obj.index]._child[obj.indext] = item;
+    this.setData({detail:Object.assign({},this.data.detail,{check_info:check_info})});
   }
 },logs))

+ 1 - 1
pages/cardetail/cardetail.json

@@ -1,6 +1,6 @@
 {
 	"disableScroll":true,
   	"usingComponents":{
-		"page-scroll":"../../components/page-scroll/page-scroll"
+		"swc-scroll":"../../components/swc-scroll/swc-scroll"
 	}
 }

+ 105 - 17
pages/cardetail/cardetail.wxml

@@ -7,14 +7,29 @@
 > -->
 <template 
 	is="header"
-	data="{{title:'',headerheight:headerheight,hasback:true}}"
+	data="{{title:'车辆详情',headerheight:headerheight,hasback:true}}"
 />
-<page-scroll 
+<swc-scroll 
   className="content"
   styleSheet="height:{{windowh-headerheight}}rpx;"
   scroll-y="{{openlog?'false':'true'}}"
+  scrollitem="{{scrollitem}}"
+  bind:swc="swcItem"
+  scrollto="{{scrollto}}"
 >
-	
+	<view 
+		style="display: {{scrollindex==0?'none':'flex'}};top:{{headerheight}}rpx;"
+		class="cardetail_nav">
+		<view class="cardetail_nav_i {{scrollindex==1?'cardetail_nav_active':''}}" bindtap="toScroll" data-index="0">
+			车源
+		</view>
+		<view class="cardetail_nav_i {{scrollindex==2?'cardetail_nav_active':''}}" bindtap="toScroll" data-index="1">
+			图文
+		</view>
+		<view class="cardetail_nav_i {{scrollindex==3?'cardetail_nav_active':''}}" bindtap="toScroll" data-index="2">
+			检测
+		</view>
+	</view>
 	<view 
 		class="cardetail_img"
 	>
@@ -51,7 +66,7 @@
 		<view class="cardetail_flex">
 			<view class="cardetail_time">
 				<view class="cardetail_flex_v">
-					{{detail.first_plate_at}}
+					{{detail.first_plate_atname}}
 				</view>
 				<view class="cardetail_flex_name">
 					首次上牌时间
@@ -59,7 +74,7 @@
 			</view>
 			<view class="cardetail_mileage">
 				<view class="cardetail_flex_v">
-					{{detail.mileage}}
+					{{detail.mileage}}万公里
 				</view>
 				<view class="cardetail_flex_name">
 					表显里程
@@ -87,12 +102,13 @@
 			url="../shop/shop?id={{detail.merchant_id}}"
 		>进店逛逛<image src="../../img/right.png"/></navigator>
 	</view>
-	<view class="cardetail_space">
+	<view
+		class="cardetail_space cardetail_space_base">
 		<view class="cardetail_space_t">基本信息</view>
 		<view class="cardetail_baseinfo_c">
 			<view class="cardetail_baseinfo_i">
 				<view class="cardetail_baseinfo_v">{{detail.distance_at}}</view>
-				<view class="cardetail_baseinfo_n">{{detail.distance_at}}首次上牌</view>
+				<view class="cardetail_baseinfo_n">{{detail.first_plate_at}}首次上牌</view>
 			</view>
 			<view class="cardetail_baseinfo_i">
 				<view class="cardetail_baseinfo_v">{{detail.mileage}}</view>
@@ -128,13 +144,20 @@
 			</view>
 		</view>
 	</view>
-	<view class="cardetail_space">
+	<view
+		style="{{desopen?'height:auto':''}}"
+		class="cardetail_space cardetail_space_dsc">
 		<view class="cardetail_space_t">车辆描述</view>
-		<view class="cardetail_describe">
+		<image 
+			bindtap="swdesc"
+			class="cardetail_describe_op {{desopen?'cardetail_describe_opactive':''}}" src = "../../img/right.png"/>
+		<view 
+			class="cardetail_describe">
 			{{detail.car_condition}}
 		</view>
 	</view>
-	<view class="cardetail_space">
+	<view
+		class="cardetail_space cardetail_space_col">
 		<view class="cardetail_space_t">配置详情</view>
 		<view class="cardetail_collocate">
 			仅供参考,购买前请于销售确认
@@ -168,7 +191,8 @@
 			</block>
 		</view>
 	</view>
-	<view class="cardetail_space">
+	<view 
+		class="cardetail_space cardetail_space_pic">
 		<view class="cardetail_space_t">车辆实拍</view>
 		<view class="cardetail_img_l">
 			<block wx:for="{{detail.imgs}}" wx:key="item">
@@ -176,9 +200,11 @@
 			</block>
 		</view>
 	</view>
-	<view 
+	<view
 		wx:if="{{detail.check_info.length>0}}"
-		class="cardetail_space">
+		class="cardetail_space"
+		bindtap="openCheck"
+		>
 		<view class="cardetail_space_t">检测报告</view>
 		<view class="cardetail_check_report">
 			<block wx:for="{{detail.check_info}}" wx:key="item">
@@ -233,7 +259,7 @@
 			分期购车
 		</view>
 	</view>
-</page-scroll>
+</swc-scroll>
 <view 
 	style="left:{{openscheme?'0rpx':'100%'}}"
 	class="buy_scheme">
@@ -244,7 +270,7 @@
 			</view>
 			<image 
 				bindtap="closeScheme"
-				src="../../img/close.png"
+				src="../../img/close2.png"
 				class="buy_scheme_close"/>
 		</view>
 		<view class="scheme_price">
@@ -305,12 +331,74 @@
 			</view>
 		</view>
 		<view class="scheme_condition">
-			<view>首付条件:</view>
+			<!-- <view>首付条件:</view>
 			<view>一成 需芝麻信用分600分以上,需有房产证明;</view>
 			<view>二成 需芝麻信用分550分以上</view>
-			<view>三成 需芝麻信用分450分以上</view>
+			<view>三成 需芝麻信用分450分以上</view> -->
 			<view class='scheme_condition_po'>※本页面试算结果仅供参考,实际结果以最终复批结果为准</view>
 		</view>
 	</view>
 </view>
+<scroll-view
+  class="check_c"
+  style="{{showcheck?'left:0rpx;':''}}"
+  scroll-y=true
+  wx:if="{{detail.check_info.length>0}}"
+>
+	<view      
+		style="height:{{headerheight}}rpx;"
+	></view>
+	<view 
+	class="check_title"
+	style="height:{{headerheight}}rpx;"
+	>
+		<view 
+		style="background-image: url(../../img/back.png); "
+		class="check_back" 
+		bindtap="closeCheck"></view>
+		<view class="check_title_w">检测报告</view>
+	</view>
+	<view class="cardetail_check_report">
+		<view class="checkw_result">
+			{{detail.check_result}}
+		</view>
+		<block wx:for="{{detail.check_info}}" wx:key="item">
+			<view class="cardetailw_check_i">
+				<view class="cardetailw_check_name">{{item.name}}</view>
+				<view class="cardetailw_check_si">
+					<block wx:for="{{item._child}}" wx:key="id" wx:for-item="sitem" wx:for-index="indext">
+						<view class="cardetailw_check_sit">
+							<view class="cardetailw_check_sitn">
+								<view class="cardetailw_check_sitnw">{{sitem.name}}</view>
+								<view class="cardetailw_check_unp" wx:if="{{sitem.unpassn>0}}">
+									{{sitem.unpassn}}项
+									<image class="unpass_number" src="../../img/checknopass.png"/>
+								</view>
+								<view  class="cardetailw_check_p">
+									{{sitem.passn}}项
+									<image class="pass_number" src="../../img/checkpass.png"/>
+								</view>
+								<image 
+									bindtap="openSub"
+									data-index="{{index}}"
+									data-indext="{{indext}}"
+									class="cardetail_check_op {{sitem.opensub?'cardetail_check_opactive':''}}" src = "../../img/right.png"/>
+							</view>
+							<view  
+								style="height:{{sitem.opensub?'auto':'0rpx'}};"
+								class="cardetailw_check_tit">
+								<block wx:for="{{sitem._child}}" wx:key="id" wx:for-item="titem" wx:for-index="indexs">
+									<view class="cardetailw_check_titn">
+										<view class="cardetailw_check_titna">{{titem.name}}</view>
+										<image class="titn_img" src="../../img/{{titem.pass?'checkpass':'checknopass'}}.png"/>
+									</view>
+								</block>
+							</view>
+						</view>
+					</block>
+				</view>
+			</view>
+		</block>  
+	</view>
+</scroll-view>
 <include src="../../module/logs/logs.wxml"/>

+ 175 - 0
pages/cardetail/cardetail.wxss

@@ -1,6 +1,28 @@
 /* pages/cardetail/cardetail.wxss */
 
 @import "../../module/logs/logs.wxss"
+.cardetail_nav{
+	position: fixed;
+	height: 86rpx;
+	line-height: 86rpx;
+	display: flex;
+	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
+	background-color: white;
+	left:0rpx;
+	width:100%;
+	z-index: 1;
+}
+.cardetail_nav_i{
+	flex: 1;
+	margin:0rpx 60rpx;
+	border-bottom: 6rpx solid white;
+	color:#383735;
+	text-align: center;
+}
+.cardetail_nav_active{
+	border-bottom: 6rpx solid #FFE600;
+	color:#BFA368;
+}
 .cardetail_img{
 	height: 500rpx;
 	position: relative;
@@ -94,6 +116,7 @@
 	font-size: 32rpx;
 	text-align: center;
 	font-family: PingFangSC-Medium;
+	font-weight: bold;
 }
 .cardetail_flex_name{
 	margin-top:20rpx;
@@ -152,6 +175,34 @@
 	padding-top:36rpx;
 	margin-top:20rpx;
 }
+.cardetail_space_base{
+	height:445rpx;
+}
+.cardetail_space_dsc{
+	height:155rpx;
+	overflow: hidden;
+	position: relative;
+}
+.cardetail_space_col{
+	height:730rpx;
+	overflow: hidden;
+}
+/*.cardetail_space_pic{
+	height:6170rpx;
+	overflow: hidden;
+}*/
+.cardetail_describe_op{
+	position: absolute;	
+	width:22rpx;
+	height: 22rpx;
+	top:40rpx;
+	right: 48rpx;
+	transition: transform 0.5s;
+}
+.cardetail_describe_opactive{
+	transform: rotate(90deg);
+}
+
 .cardetail_space_t{
 	height: 32rpx;
 	line-height: 32rpx;
@@ -191,6 +242,7 @@
 }
 
 .cardetail_collocate{
+	margin-top:30rpx;
 	text-indent: 40rpx;
 	height: 30rpx;
 	line-height: 30rpx;
@@ -255,6 +307,7 @@
 .cardetail_img_i{
 	margin:32rpx 38rpx 0rpx;
 	width: 674rpx;
+	height: 412rpx;
 }
 /*********检查样式************/
 .cardetail_check_report{
@@ -458,4 +511,126 @@
 .scheme_condition_po{
 	color:black;
 	font-weight: bold;
+}
+
+
+.check_c{
+	position: fixed;
+	top:0rpx;
+	left:100%;
+	width: 100%;
+	height: 100%;
+	background: white;
+	z-index:101;
+	transition: all 0.5s;
+	background-color: #F9F9F9;
+}
+.check_title{
+	background-color:#fede18;
+	height:128rpx;
+	position: absolute;
+	top:0rpx;
+	width: 100%;
+}
+.check_back{
+	width:50rpx;
+	height: 50rpx;
+	position: absolute;
+	top:100rpx;
+	left:40rpx;
+	background-repeat: no-repeat;
+	background-position: center;
+	background-size: 30rpx 30rpx;
+
+}
+.check_title_w{
+	padding-top: 105rpx;
+	font-size: 36rpx;
+	height: 44rpx;
+	line-height: 44rpx;
+	text-align: center;
+}
+.checkw_result{
+	width: 654rpx;
+	line-height:36rpx;
+	color: rgba(56, 55, 53, 1);
+	margin: 0px auto;
+	padding: 30rpx 48rpx;
+	font-size: 24rpx;
+	text-align: justify;
+	font-family: NotoSansHans-DemiLight;
+	background-color: white;
+}
+.cardetailw_check_i{
+	background-color: white;
+	margin-top: 20rpx;
+}
+.cardetailw_check_name{
+	height: 98rpx;
+	line-height: 98rpx;
+	color: rgba(56, 55, 53, 1);
+	font-size: 28rpx;
+	text-align: left;
+	text-indent: 48rpx;
+	font-family: NotoSansHans-Medium;
+}
+.cardetailw_check_si{
+
+}
+.cardetailw_check_sit{
+	border-bottom: 1rpx solid rgba(235, 235, 235, 1); 
+}
+.cardetailw_check_sit::last{
+	border-bottom: 0rpx;
+}
+.cardetailw_check_sitn{
+	display: flex;
+	height: 98rpx;
+	line-height: 98rpx;
+}
+.cardetailw_check_sitnw{
+	flex: 1;
+	color: rgba(104, 104, 104, 1);
+	font-size: 26rpx;
+	margin-left:48rpx;
+	font-family: NotoSansHans-DemiLight;
+}
+.cardetailw_check_unp,.cardetailw_check_p{
+	color: rgba(104, 104, 104, 1);
+	font-size: 24rpx;
+	margin-left:20rpx;
+	font-family: NotoSansHans-DemiLight;
+}
+.cardetail_check_opactive{
+	transition: transform 0.5s;
+	transform: rotate(90deg);
+}
+.cardetailw_check_tit{
+	overflow: hidden;
+	height: 0rpx;	
+	transition: height 0.5s;
+}
+.cardetailw_check_titn{
+	display: flex;
+	height: 98rpx;
+	line-height: 98rpx;
+	background-color: #F8F8FA;
+	left: 48px;
+	color: rgba(104, 104, 104, 1);
+	font-size: 26rpx;
+	font-family: NotoSansHans-DemiLight;
+	border-bottom: 1rpx solid rgba(235, 235, 235, 1); 
+}
+.cardetailw_check_titn::last{
+	border-bottom: 0rpx; 
+}
+.cardetailw_check_titna{
+	flex: 1;
+	text-indent:48rpx;
+}
+.titn_img{
+	width:22rpx;
+	height: 22rpx;
+	margin-right: 80rpx;
+	margin-top:40rpx;
 }

+ 5 - 1
pages/evaluate/evaluate.js

@@ -16,6 +16,7 @@ Page({
     series:{},
     selectseries:{},
     date:"2018-01-01",
+    datename:["2018","1"],
     detail:{},
     describe:[{
       dis:"无瑕疵\n无色差",
@@ -202,8 +203,11 @@ Page({
     this.setData({mileage:mileage});
   },
   bindDateChange: function(e) {
+    var value = e.detail.value;
+    var values = value.split("-")
     this.setData({
-      date: e.detail.value
+      date: e.detail.value,
+      datename:values
     })
   },
   getMobile:function(e){

+ 5 - 4
pages/evaluate/evaluate.wxml

@@ -169,19 +169,20 @@
   		class="show_evaluate"
   		style="left:{{showeva?'0rpx':'100%'}}"
   	>
-	  	<view class="show_evaluate_back">
-  			你的爱车值这个价
+	  	<view 
+	  		style="height:{{headerheight}}rpx;"
+	  		class="show_evaluate_back">
+  			<view class="show_evaluate_ht">你的爱车值这个价</view>
   			<image 
   			bindtap="evaluateBack"
   			src="../../img/back.png"/>
   		</view>
-  		<view class="show_evaluate_header"></view>
 	  	<view class="show_evaluate_tb">
 	  		<view class="show_evaluate_t">
 	  			{{model.car_model_name}}
 	  		</view>
 	  		<view class="show_evaluate_dt">
-	  			{{data.split("-")[0]}}年{{data.split("-")[1]}}月上牌|{{mileage}}万公里|{{area['1'][areaselect['1']].area_name}}
+	  			{{datename[0]}}年{{datename[1]}}月上牌|{{mileage}}万公里|{{area['1'][areaselect['1']].area_name}}
 	  		</view>
 	  	</view>
   		<view class="show_evaluate_sp">

+ 6 - 4
pages/evaluate/evaluate.wxss

@@ -86,12 +86,13 @@
 }
 .show_evaluate_back{
   background-color:#fede18;
-  height:128rpx;
-  position: fixed;
-  top:0rpx;
+}
+.show_evaluate_ht{	
+  padding-top: 105rpx;
   width: 100%;  
   font-size: 36rpx;
-  line-height: 128rpx;
+  height:44rpx;
+  line-height: 44rpx;
   text-align: center;
 }
 .show_evaluate_header{
@@ -115,6 +116,7 @@
 	margin:30rpx auto 0rpx;
 	width:578rpx;
 	color:#383735;
+	font-weight: bold;
 }
 .show_evaluate_dt{
 	color: #878787;

+ 2 - 1
pages/loans/loans.wxml

@@ -5,10 +5,11 @@
 	data="{{title:'我要贷款',headerheight:headerheight,hasback:true}}"
 />
 <page-scroll 
+ className="content"
   styleSheet="height:{{windowh-headerheight}}rpx;"
   scroll-y="{{selectbar==''?'true':'false'}}"
 >
-	<view class="content">
+	<view>
 		<view class="page-content">
 			<image src="../../img/loans.png"/>
 		</view>

+ 1 - 1
pages/myloan/myloan.wxml

@@ -5,7 +5,7 @@
 	data="{{title:'贷款计算器',headerheight:headerheight,hasback:true}}"
 />
 <page-scroll 
-  className="conent"
+  className="content"
   styleSheet="height:{{windowh-headerheight}}rpx;"
   scroll-y="{{selectbar==''?'true':'false'}}"
 >

+ 1 - 1
pages/mysuggest/mysuggest.wxml

@@ -5,7 +5,7 @@
 	data="{{title:'意见反馈',headerheight:headerheight,hasback:true}}"
 	/>
 <page-scroll 
-  className="conent"
+  className="content"
   styleSheet="height:{{windowh-headerheight}}rpx;"
   scroll-y="{{selectbar==''?'true':'false'}}"
 >

+ 2 - 1
pages/mysuggest/mysuggest.wxss

@@ -1,5 +1,5 @@
 /* pages/mysuggest/mysuggest.wxss */
-.conent{
+.content{
 	background-color:#F9F9F9;
 }
 .mysuggest_area{
@@ -13,6 +13,7 @@
 	text-align: left;
 	font-family: PingFangSC-Regular,NotoSansHans-DemiLight;
 	background-color: white;
+	border:1rpx solid rgba(235, 235, 235, 1);
 }
 .mysuggest_bt{
 	margin:40rpx auto 0rpx;

+ 1 - 1
pages/sell/sell.wxss

@@ -20,7 +20,7 @@
 	font-family: PingFangSC-Regular,NotoSansHans-Regular;
 }
 .sell_form_item{
-	border-top: 1px solid rgba(235, 235, 235, 1);
+	border-top: 1rpx solid rgba(235, 235, 235, 1);
 	height: 88rpx;
 	line-height: 88rpx;
 	display: flex;

+ 2 - 1
pages/shop/shop.wxss

@@ -5,6 +5,7 @@
 .shop_info{
 	height: 194rpx;
 	display: flex;
+  background-color: white;
 }
 .shop_img{
 	width: 218rpx;
@@ -37,7 +38,7 @@
 }
 .total_count{
   background-color: #F9F9F9;
-  height: 76rpx;
+  height: 66rpx;
   line-height: 76rpx;
   color: rgba(0, 0, 0, 1);
   font-size: 26rpx;

+ 1 - 1
pages/usercenter/usercenter.wxml

@@ -1,7 +1,7 @@
 <!--pages/usercenter/usercenter.wxml-->
 <import src="../../module/footer.wxml"/>
 <page-scroll
-	className="conent"
+	className="content"
 	styleSheet="height:{{windowh}}rpx;"
 >
 	<view class="usercenter_top_b">

+ 1 - 0
pages/usercenter/usercenter.wxss

@@ -43,6 +43,7 @@
 	color: rgba(56, 55, 53, 1);
 	font-size: 28rpx;
 	font-family: PingFangSC-Regular,NotoSansHans-DemiLight;
+	border-bottom: 1rpx solid rgba(235, 235, 235, 1);
 }
 .usercenter_op_img{
 	width:34rpx;