浏览代码

wentifankui

邹能昇 2 月之前
父节点
当前提交
99c23710a4

+ 1 - 1
nova-werun/pages/circle/circle-detail/index.wxml

@@ -1,5 +1,5 @@
 
-<nav type="back" title="详情" background-color="{{'#87ceeb'}}" front-color="{{'#ffffff'}}"></nav>
+<nav type="back" title="详情" background-color="{{'#4F9AF7'}}" front-color="{{'#ffffff'}}"></nav>
 <view class="all" style="height: {{contentHeight}}rpx;">
     <view class="trends" style="height: {{contentHeight}}rpx;">
         <circle-card wx:if="{{id}}" objectId="{{id}}" type='detail'></circle-card>

+ 1 - 1
nova-werun/pages/circle/my-circle/index.wxml

@@ -1,5 +1,5 @@
 <!--nova-werun/pages/my-circle/index.wxml-->
-<nav type="back" title="我的动态" background-color="{{'#87ceeb'}}" front-color="{{'#ffffff'}}"></nav>
+<nav type="back" title="我的动态" background-color="{{'#4F9AF7'}}" front-color="{{'#ffffff'}}"></nav>
 <view class="all" style="height: {{contentHeight}}rpx;">
     <scroll-view class="trends" scroll-y="true" bindscrolltolower="loadMoreData" style="height: {{contentHeight}}rpx;">
         <block wx:for="{{cardList}}" wx:key="{{item.objectId}}">

+ 1 - 1
nova-werun/pages/circle/send-circle/index.less

@@ -10,7 +10,7 @@
         height: 50rpx;
         font-size: 30rpx;
         color: white;
-        background-color: rgb(30, 208, 30);
+        background-color: #4F9AF7;
         border-radius: 10rpx;
         margin-right:20rpx ;
         display: flex;

+ 2 - 2
nova-werun/pages/circle/send-circle/index.wxml

@@ -1,5 +1,5 @@
 <!--nova-werun/pages/send-circle/index.wxml-->
-<nav type="back" background-color="{{'#87ceeb'}}" front-color="{{'#ffffff'}}"></nav>
+<nav type="back" title="发布步小圈"  background-color="{{'#4F9AF7'}}" front-color="{{'#ffffff'}}"></nav>
 <view class="all" style="height: {{contentHeight}}rpx;">
     <view class="{{fileList.length==0&&!inputValue?'send2':'send'}}" bindtap="send">发送</view>
     <view class="text">
@@ -7,7 +7,7 @@
     </view>
     <upload style="width: 50%;" bind:onChangeFile="picture" fileList="{{fileList}}" uploadURL="{{uploadURL}}" domain="{{domain}}" uptokenURL="{{uptokenURL}}" maxCount="12" />
     <view class="clickbox">
-        <van-checkbox value="{{ checked }}" checked-color="#1ed01e" bind:change="onChange">
+        <van-checkbox value="{{ checked }}" checked-color="#4F9AF7" bind:change="onChange">
             实现展示所在位置
         </van-checkbox>
     </view>

+ 1 - 1
nova-werun/pages/circle/send-circle/index.wxss

@@ -1 +1 @@
-.all{width:100vw;padding-top:10rpx;padding-left:20rpx;padding-right:20rpx}.all .send{margin-left:auto;width:100rpx;height:50rpx;font-size:30rpx;color:white;background-color:#1ed01e;border-radius:10rpx;margin-right:20rpx ;display:flex;justify-content:center;align-items:center}.all .send2{margin-left:auto;width:100rpx;height:50rpx;font-size:30rpx;color:gray;background-color:#e6e6e6;border-radius:10rpx;margin-right:20rpx ;display:flex;justify-content:center;align-items:center}.all .textarea{width:100%;font-size:32rpx;margin-bottom:40rpx;margin-top:20rpx}.all .clickbox{margin-top:60rpx;width:100%}
+.all{width:100vw;padding-top:10rpx;padding-left:20rpx;padding-right:20rpx}.all .send{margin-left:auto;width:100rpx;height:50rpx;font-size:30rpx;color:white;background-color:#4F9AF7;border-radius:10rpx;margin-right:20rpx ;display:flex;justify-content:center;align-items:center}.all .send2{margin-left:auto;width:100rpx;height:50rpx;font-size:30rpx;color:gray;background-color:#e6e6e6;border-radius:10rpx;margin-right:20rpx ;display:flex;justify-content:center;align-items:center}.all .textarea{width:100%;font-size:32rpx;margin-bottom:40rpx;margin-top:20rpx}.all .clickbox{margin-top:60rpx;width:100%}

+ 2 - 2
nova-werun/pages/my/my-profile/index.less

@@ -4,7 +4,7 @@
     .avatarbox{
         width: 100%;
         height: 270rpx;
-        background-color: #87ceeb;
+        background-color: #4F9AF7;
         display: flex;
         justify-content: center;
         align-items: center;
@@ -61,7 +61,7 @@
             height: 80rpx;
             font-size: 30rpx;
             color: white;
-            background-color: #87ceeb;
+            background-color: #4F9AF7;
             display: flex;
             justify-content: center;
             align-items: center;

+ 1 - 1
nova-werun/pages/my/my-profile/index.wxml

@@ -1,5 +1,5 @@
 <!--nova-werun/pages/my/my-profile/index.wxml-->
-<nav type="back" title="{{title}}" background-color="{{'#87ceeb'}}" front-color="{{'#ffffff'}}"></nav>
+<nav type="back" title="{{title}}" background-color="{{'#4F9AF7'}}" front-color="{{'#ffffff'}}"></nav>
 <view class="all" style="height: {{contentHeight}}rpx;">
     <view class="avatarbox" wx:if="{{title=='完善资料'}}">
         <view class="avatar-box">

+ 1 - 1
nova-werun/pages/my/my-profile/index.wxss

@@ -1 +1 @@
-.all{width:100vw}.all .avatarbox{width:100%;height:270rpx;background-color:#87ceeb;display:flex;justify-content:center;align-items:center}.all .avatarbox .avatar-box{width:150rpx;height:150rpx;position:relative}.all .avatarbox .avatar-box .avatar{width:150rpx;height:150rpx;border-radius:50%}.all .avatarbox .avatar-box .photo{width:40rpx;height:40rpx;position:absolute;right:-20rpx}.all .selectbox{width:100%;height:88rpx;display:flex;align-items:center;padding-left:16rpx;padding-right:32rpx;padding-top:20rpx;padding-bottom:20rpx}.all .selectbox .fuhao{color:#E22525ed;margin-right:2rpx}.all .selectbox .selecttext{width:174rpx;height:48rpx;font-size:28rpx;color:#646566}.all .selectbox .selectname{font-size:28rpx;margin-left:22rpx}.all .submitbox{width:100%;height:80rpx;display:flex;justify-content:center;align-items:center;margin-top:40rpx}.all .submitbox .submit{width:200rpx;height:80rpx;font-size:30rpx;color:white;background-color:#87ceeb;display:flex;justify-content:center;align-items:center;border-radius:40rpx}
+.all{width:100vw}.all .avatarbox{width:100%;height:270rpx;background-color:#4F9AF7;display:flex;justify-content:center;align-items:center}.all .avatarbox .avatar-box{width:150rpx;height:150rpx;position:relative}.all .avatarbox .avatar-box .avatar{width:150rpx;height:150rpx;border-radius:50%}.all .avatarbox .avatar-box .photo{width:40rpx;height:40rpx;position:absolute;right:-20rpx}.all .selectbox{width:100%;height:88rpx;display:flex;align-items:center;padding-left:16rpx;padding-right:32rpx;padding-top:20rpx;padding-bottom:20rpx}.all .selectbox .fuhao{color:#E22525ed;margin-right:2rpx}.all .selectbox .selecttext{width:174rpx;height:48rpx;font-size:28rpx;color:#646566}.all .selectbox .selectname{font-size:28rpx;margin-left:22rpx}.all .submitbox{width:100%;height:80rpx;display:flex;justify-content:center;align-items:center;margin-top:40rpx}.all .submitbox .submit{width:200rpx;height:80rpx;font-size:30rpx;color:white;background-color:#4F9AF7;display:flex;justify-content:center;align-items:center;border-radius:40rpx}