Преглед на файлове

stlye:修改部分页面样式

xyh8905170 преди 2 години
родител
ревизия
b7ce3dbda0
променени са 4 файла, в които са добавени 7 реда и са изтрити 7 реда
  1. 2 2
      myPages/promotionCenter/index.vue
  2. 1 1
      myPages/setting/setting-account-password.vue
  3. 1 1
      orderPages/orderDetail/index.vue
  4. 3 3
      storePages/notice/index.vue

+ 2 - 2
myPages/promotionCenter/index.vue

@@ -31,8 +31,8 @@
         </view>
 
 
-        <view class="btn" @click="goStatisticalPanel">
-            <text>去提现</text>
+        <view class="btn" >
+            <text>去提现(暂未开放)</text>
         </view>
 
     </view>

+ 1 - 1
myPages/setting/setting-account-password.vue

@@ -98,7 +98,7 @@
 	<!-- 提示 -->
 	<view class="h-mark-desc">
 		<view class="h-text">
-			<text>*账号密码建议输入不连续的6位数</text>
+			<text style="color: #afafaf">*账号密码建议输入不连续的6位数</text>
 		</view>
 	</view>
 

+ 1 - 1
orderPages/orderDetail/index.vue

@@ -137,7 +137,7 @@
                         </view>
                     </view>
 
-            <view class="bottomHeight"></view>
+<!--            <view class="bottomHeight"></view>-->
 
             <view class="bottom1 flex-col"  v-if="order.orderStatus != 3">
                 <text class="allMoney"></text>

+ 3 - 3
storePages/notice/index.vue

@@ -1,7 +1,7 @@
 <template>
 	<view class="page">
     <view class="noticeTitle" >{{notice.noticeTitle}}</view>
-		<view class="flex-row  justify-between" style="margin-bottom: 40rpx">
+		<view class="flex-row  justify-between"   >
       <view class="time">
         发布人:<text>{{notice.createBy}}</text>
       </view>
@@ -9,7 +9,7 @@
 				<text>{{this.dateFormat(notice.createTime) }}</text>
 			</view>
 		</view>
-		<scroll-view scroll-y="true" class="scroll-y " :style="{'height':height}">
+		<scroll-view scroll-y="true" class="scroll-y "  style="display: inline-block" :style="{'height':height}">
 			<view class="content-box flex-col "  :style="{'height':height}">
 				<!--				<web-view  src="http://www.gzqcdj.cn/doc/2.html"></web-view>-->
 				<rich-text v-html="notice.noticeContent">
@@ -29,7 +29,7 @@ export default {
 	onLoad(option) {
 		// 判断Openid是否为空
 		let sysInfo=uni.getSystemInfoSync();
-		this.height= sysInfo.windowHeight -50  +'px';
+		this.height= sysInfo.windowHeight - 50  +'px';
 		console.log("获取到的高度",this.height)
 		this.getNoticeDetail(option.noticeId);