Browse Source

出库单确认数量规范只能输入小数

master
chenxuhui 7 years ago
parent
commit
f4dfb5408f
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      pages/saleOutStore/saleOutStore.js
  2. +1
    -1
      pages/saleOutStore/saleOutStoreDetail/saleOutStoreDetail.wxml

+ 2
- 2
pages/saleOutStore/saleOutStore.js View File

@ -69,7 +69,7 @@ function getCheckedOrderList(that, CheckedPageIndex) {
getArr.push(dmo); getArr.push(dmo);
} }
let arrLast = that.data.checkedDataArr.concat(getArr); let arrLast = that.data.checkedDataArr.concat(getArr);
console.log(arrLast);
// console.log(arrLast);
that.setData({ that.setData({
checkedDataArr: arrLast, checkedDataArr: arrLast,
}) })
@ -168,7 +168,7 @@ Page({
that.onShow(); that.onShow();
}) })
} else if (res.cancel) { } else if (res.cancel) {
console.log('点击取消了');
// console.log('点击取消了');
return false; return false;
} }
} }


+ 1
- 1
pages/saleOutStore/saleOutStoreDetail/saleOutStoreDetail.wxml View File

@ -161,7 +161,7 @@
<view class='baseitem'> <view class='baseitem'>
<text class='baseitem_key'>确认数量</text> <text class='baseitem_key'>确认数量</text>
<view class='baseitem_value'> <view class='baseitem_value'>
<input class='inputItem' disabled="{{showConfirmBtn}}" bindinput='getConfirmNumber' placeholder='请输入确认收货数量' value="{{item.ConfirmNumber}}" data-index='{{idx}}'></input>
<input class='inputItem' disabled="{{showConfirmBtn}}" type='digit' bindinput='getConfirmNumber' placeholder='请输入确认收货数量' value="{{item.ConfirmNumber}}" data-index='{{idx}}'></input>
</view> </view>
</view> </view>
<view class='horizontallineView'></view> <view class='horizontallineView'></view>


Loading…
Cancel
Save