xjc 3 년 전
부모
커밋
3d88e0a071
4개의 변경된 파일12개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 1
      pages/day/day.wxml
  2. 5 0
      pages/day/day.wxss
  3. 1 1
      pages/detail/detail.wxml
  4. 2 2
      pages/upload/upload.wxml

+ 4 - 1
pages/day/day.wxml

@@ -4,7 +4,7 @@
         <text class="tag">日期</text>{{item.stock_date}}
     </view>
     <view class="item">
-        <text class="tag red">资产</text>{{item.today_fund}}w 
+        <text class="tag red">今日资产</text>{{item.today_fund}}w 
          <text class="tag border">当日收益</text>
          <text class="{{item.today_income[0]=='-'?'down':'up'}}">{{item.today_income}}</text>  
          <text class="tag border">总收益</text>
@@ -24,6 +24,9 @@
               <view wx:if='{{!item.is_markt && item.today_stock.length<=0 && item.auto_complete>0}}'>请假</view>
         </view>
     </view>
+    <view>
+        <text class="note">点击持股查看当日交接单</text>
+    </view>
 </navigator>
 
 <view style="text-align:center;padding:100px 0;" wx:if='{{datas.list.length==0}}'>暂无数据</view>

+ 5 - 0
pages/day/day.wxss

@@ -51,4 +51,9 @@ page{
 .list text{
   display: block;
   color: #999;
+}
+.note{
+  font-size:22rpx;
+  padding:10rpx 0rpx;
+  color:#999;
 }

+ 1 - 1
pages/detail/detail.wxml

@@ -25,7 +25,7 @@
             <view wx:for='{{datas.yesterday_stock}}' wx:for-item='stock' >
             {{stock.name}}  <text wx:if='{{stock.fund>0}}'>{{stock.fund}}万</text></view>
             <view style="width:100%;background:none;" wx:if='{{datas.yesterday_stock_img.length>0}}'>
-            <text>点击查看完整交单</text>
+            <text>点击查看完整交单</text>
               <image style="width:100rpx;height:100rpx;margin-right:10rpx;"  mode="scaleToFill" wx:for='{{datas.yesterday_stock_img}}' wx:for-item='img' 
             src='{{img}}' data-src="{{img}}" bindtap="prview"></image>
              </view>

+ 2 - 2
pages/upload/upload.wxml

@@ -5,7 +5,7 @@
     <input type='digit' value="{{today_fund}}" bindinput="fundChange1" placeholder="请输入今日净资产"></input>
      
     <block wx:if='{{!is_markt}}'>
-    <view class="label">今日持股</view>
+    <view class="label">今日持股<text class="note">(空仓请留空不填)</text></view>
     <view class="info" wx:for='{{stock}}'>
       <input bindchange="nameChange" data-id='{{index}}'  value="{{item.name}}" placeholder="请输入股票名称"></input>
       <!-- <picker  bindchange="bindPickerChange" data-id='{{index}}' value="{{value[index]}}" range-key='label' range="{{stockList}}">
@@ -26,7 +26,7 @@
         开超市<text class="note">(持股超5支可选)</text>  
         <switch checked="{{is_markt}}" bindchange="switch1Change" />
     </view>
-    <view class="label">账户截图<text class="note">(截图上传要有:净资产-股票名-持股金额,请屏蔽账号号-开户名-股东代码等个人信息)</text></view>
+    <view class="label">账户截图<text class="note">(截图需包括:净资产-股票名-持股金额,请屏蔽账户-开户名-股东代码等个人信息)</text></view>
     <view wx:for='{{today_stock_img}}'>
         <image style="width:220rpx;height:220rpx;" mode="scaleToFill" src="{{item}}"></image>
         <icon bindtap="del1" data-id='{{index}}' class="icon-small" type="cancel" size="25"></icon>