#
whycq
2024-05-05 3c06dd86de7b503bbe14c52bb02a77e965e4c596
pages/phyz/orderOut/orderCheck.vue
@@ -35,7 +35,16 @@
               <!-- 标题 -->
               <view class="title">出库数量</view>
               <view class="popup-item">
                  <uni-number-box :value="data.anfme" :step='1' :min="0" :max="count" color="#747474" @change="changeValue" />
                  <view>
                     <uni-number-box :value="data.anfme" :step='1' :min="0" :max="count" color="#747474" @change="changeValue" />
                  </view>
               </view>
               <view class="popup-item">
                  <view>
                     <view @click="max()" style="padding: 0rpx 16rpx;background-color: #d9d9d9;font-size: 10px;">MAX</view>
                  </view>
               </view>
               <view class="btn">
                  <view class="btn-left" @click="addClose">取消</view>
@@ -76,6 +85,9 @@
         })
      },
      methods: {
         max() {
             this.data.anfme = this.count
         },
         toggleDropdown(item) {
            item.isOpen = !item.isOpen;
         },