Commit 5e21d9fd by LJM

add

parent a8f23424
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
} }
} }
.input-box { .input-box {
margin-top: 24rpx;
height: 88rpx; height: 88rpx;
background: #ffffff; background: #ffffff;
border-radius: 4rpx; border-radius: 4rpx;
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<template v-else-if="index == 3">({{have_close_box_num}})</template> <template v-else-if="index == 3">({{have_close_box_num}})</template>
</view> </view>
</view> </view>
<view class="list"> <view class="list" v-if="list.length > 0">
<scroll-view scroll-y="true" class="scroll-Y"> <scroll-view scroll-y="true" class="scroll-Y">
<view class="box" v-for="(item,index) in list" :key="index"> <view class="box" v-for="(item,index) in list" :key="index">
<view class="text row bothSide verCenter"> <view class="text row bothSide verCenter">
...@@ -104,6 +104,11 @@ ...@@ -104,6 +104,11 @@
</view> </view>
</scroll-view> </scroll-view>
</view> </view>
<view class="no-data column verCenter rowCenter" v-else>
<text class="iconfont icon-jinggao2"></text>
<text class="text">查找不到相关信息</text>
<text class="p">1、请输入正确的箱号或异常批次号</text>
</view>
<!-- 关单封箱弹窗 --> <!-- 关单封箱弹窗 -->
<uni-popup ref="inputDialog" type="dialog"> <uni-popup ref="inputDialog" type="dialog">
<uni-popup-dialog ref="inputClose" mode="input" title="该箱子是否确认封箱?" value="" placeholder="请输入毛重" @close="dialogInputClose" @confirm="dialogInputConfirm" :is-mask-click="true" :before-close="true"></uni-popup-dialog> <uni-popup-dialog ref="inputClose" mode="input" title="该箱子是否确认封箱?" value="" placeholder="请输入毛重" @close="dialogInputClose" @confirm="dialogInputConfirm" :is-mask-click="true" :before-close="true"></uni-popup-dialog>
......
<template> <template>
<view class="tally-fixBox"> <view class="tally-fixBox">
<view class="text row verCenter">
<view style="width: 50%;margin-left: 25rpx;">
<text class="t1">待装载箱数:</text>
<text class="t2">-</text>
</view>
<view style="width: 50%;">
<text class="t1">入仓号数:</text>
<text class="t2">-</text>
</view>
</view>
<view class="input-box row bothSide verCenter"> <view class="input-box row bothSide verCenter">
<input class="uni-input" placeholder="输入或扫描入箱号" placeholder-style="color:#000;font-weight: bold;" v-model="keyword" @input="handleInput($event)" :focus="is_focus" /> <input class="uni-input" placeholder="输入或扫描入箱号" placeholder-style="color:#000;font-weight: bold;" v-model="keyword" @input="handleInput($event)" :focus="is_focus" />
<view class="btn row rowCenter verCenter" @click="add()">添 加</view> <view class="btn row rowCenter verCenter" @click="add()">添 加</view>
</view> </view>
<view class="list" v-if="list.length > 0"> <view class="list" v-if="list.length > 0">
<scroll-view scroll-y="true" class="scroll-Y"> <scroll-view scroll-y="true" class="scroll-Y">
<view class="title">合箱结果</view> <view class="title">待合箱箱号</view>
<view class="box row bothSide verCenter" v-for="(item,index) in list" :key="index"> <view class="box row bothSide verCenter" v-for="(item,index) in list" :key="index">
<view class="row verCenter"> <view class="row verCenter">
<text class="t1">{{index + 1}}.</text> <text class="t1">{{index + 1}}.</text>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment