提交 c4f75bc0c31bfb679df20c4b54bac60470b340e9

作者 wangyu
1 个父辈 632412a2

1.0 commit

... ... @@ -774,8 +774,8 @@ Page({
774 774 success: function(res) {
775 775 console.log(res)
776 776 if (res.statusCode == 200) {
777   - wx.redirectTo({
778   - url: '../home/home',
  777 + wx.navigateBack({
  778 + delta: 1
779 779 })
780 780 } else {
781 781 wx.showModal({
... ...
... ... @@ -294,7 +294,7 @@
294 294 <view class="divide_line"></view>
295 295 <view class='item_body'>
296 296 <text class='text_666_28 float_left'>公司股本总额</text>
297   - <input class='input_wrap float_right' name='company_equity_total' type='digit' placeholder-class='text_999_28' placeholder='请输入公司股本总额' maxlength='13'></input>
  297 + <input class='input_wrap float_right' name='company_equity_total' type='digit' placeholder-class='text_999_28' placeholder='请输入股本总额(保留两位小数)' maxlength='13'></input>
298 298 </view>
299 299 <view class="divide_line"></view>
300 300 <!-- <view class='item_body'>
... ... @@ -326,7 +326,7 @@
326 326 <view class="divide_line" ></view>
327 327 <view class='item_body' >
328 328 <text class='text_666_28 float_left'>个人投资总额</text>
329   - <input class='input_wrap float_right' name='personal_equity_total' type='digit' placeholder-class='text_999_28' placeholder='请输入个人投资总额' maxlength='13'></input>
  329 + <input class='input_wrap float_right' name='personal_equity_total' type='digit' placeholder-class='text_999_28' placeholder='请输入个人投资总额(保留两位小数)' maxlength='13'></input>
330 330 </view>
331 331 <view class="divide_line"></view>
332 332 </view>
... ...
... ... @@ -958,9 +958,12 @@ Page({
958 958 success: function(res) {
959 959 console.log(res)
960 960 if (res.statusCode == 200) {
961   - wx.reLaunch({
962   - url: '../home/home',
  961 + wx.navigateBack({
  962 + delta:1
963 963 })
  964 + // ({
  965 + // url: '../home/home',
  966 + // })
964 967 } else {
965 968 wx.showModal({
966 969 title: res.data.message,
... ...
注册登录 后发表评论