Browse Source

净资产改总资产,添加声明

begmoon 1 year ago
parent
commit
f4d532d7d2
5 changed files with 24 additions and 6 deletions
  1. BIN
      .DS_Store
  2. 2 1
      pages/change/change.wxml
  3. 4 4
      pages/upload/upload.wxml
  4. 5 1
      pages/user/user.wxml
  5. 13 0
      pages/user/user.wxss

BIN
.DS_Store


+ 2 - 1
pages/change/change.wxml

@@ -11,10 +11,11 @@
     <text class="note">(单位:万)</text>
 </view>
 <view class="item">
-    <label>今日进出后收盘净资产</label>
+    <label>今日资产</label>
     <input bindinput="todaychange" type='digit' placeholder-style="color:rgba(203, 203, 203, 1)"  placeholder="请填写"/>
     <text class="note">(单位:万)</text>
 </view>
+<text style="color:rgb(128, 128, 128);font-size:28rpx">注意:1.融资账户填净资产 2.这里填资金进出后的总资产</text>
 <view class="item">
     <label>账户截图</label>
     <view class="stock_imgs" wx:if='{{today_stock_img}}'>

+ 4 - 4
pages/upload/upload.wxml

@@ -2,15 +2,15 @@
     <view class="label" >持仓日期   {{stock_date}}</view>
     <view class="note">交作业时间:15:00-15:30</view>
     <navigator wx:if="{{role == 2}}" class="change" url="../change/change">今日有出入金?必须先点此处申报</navigator>
-    <view class="label">今日资产<text class="note">(单位:万)</text>  </view>
-    <input type='digit' value="{{today_fund}}" bindinput="fundChange1" placeholder="请输入今日净资产"></input>
+    <view class="label">今日资产<text class="note">(单位:万)</text>  </view>
+    <input type='digit' value="{{today_fund}}" bindinput="fundChange1" placeholder="请输入资产"></input>
     <text style="color:red;font-weight:500">万</text>
-    
+    <text style="color:rgb(128, 128, 128);font-size:24rpx">注意:1.融资账户填净资产 2.今日若有银证转账,请先去上面一栏进行申报除权,再来这里填资金进出后的总资产</text>
     <!-- <block wx:if='{{!is_markt}}'> -->
     <view class="label">今日持股<text class="note">(空仓请留空不填)</text></view>
     <view class="info" wx:for='{{stock}}' >
       <input bindinput='stockSearch'   data-id='{{index}}'  value="{{item.name}}" placeholder="股票名称"></input>
-      <input type='digit' bindinput="fundChange" data-id='{{index}}' value="{{item.fund}}" placeholder="金额"></input>
+      <input type='digit' bindinput="fundChange" data-id='{{index}}' value="{{item.fund}}" placeholder="持股金额"></input>
       <text style="color:red;font-weight:500">万</text>    
       <view  style="width:17%;">
         <icon bindtap="del" data-id='{{index}}' style="margin-top:20rpx;" class="icon-small" type="cancel" size="25"></icon>

+ 5 - 1
pages/user/user.wxml

@@ -47,7 +47,11 @@
         </navigator> 
       </view>  
       
-
+      <view class="shenming" >
+        <view class="shenming_text">
+        郑重声明:用户在比赛社区发表的所有信息(包括但不限于文字、数据及图表)仅代表个人观点,与本应用立场无关,不对您构成任何投资建议,据此操作风险自担。请勿相信代客理财、免费荐股和炒股培训等宣传内容,远离非法证券活动。请勿添加发言用户的手机号码、公众号、微博、微信及QQ等信息,谨防上当受骗!
+        </view>
+      </view>
   
 </view>
 

+ 13 - 0
pages/user/user.wxss

@@ -248,4 +248,17 @@ page{
   bottom: 0;
   margin: auto;
   left: 28%;
+}
+.shenming{
+  margin:30rpx;
+  border-radius: 8rpx;
+  box-shadow: 0 0 10px 0px rgba(51, 51, 51, 0.1);
+  overflow: hidden;
+  background-color: white;
+}
+
+.shenming_text{
+  font-size: 30rpx;
+  color: rgb(128, 128, 128);
+  margin: 30rpx;
 }