Commit 89ade954 by LJM

add

parent 86bd34a2
.abnormalTally {
height: 100vh;
padding: 0 24rpx;
padding: 24rpx 24rpx 0 24rpx;
overflow: hidden;
.head-text {
height: 80rpx;
......@@ -132,4 +132,16 @@
}
}
}
.fix-btn {
position: fixed;
bottom: 20rpx;
left: 0;
right: 0;
margin: 0 24rpx;
height: 88rpx;
background: #197adb;
border-radius: 4rpx;
font-size: 28rpx;
color: #ffffff;
}
}
......@@ -201,6 +201,7 @@
export default {
data() {
return {
is_focus: true, //获取焦点动态化
title: '',
step: 0,
keyword: '',
......
<template>
<view class="printBox">
<view class="input-box row bothSide verCenter">
<input class="uni-input" placeholder="输入或扫描入箱号" placeholder-style="color:#000;font-weight: bold;" v-model="box_sn" />
<input class="uni-input" placeholder="输入或扫描入箱号" placeholder-style="color:#000;font-weight: bold;" v-model="box_sn" :focus="is_focus" />
<view class="btn row rowCenter verCenter" @click="print()">打印箱号</view>
</view>
</view>
......@@ -13,6 +13,7 @@
export default {
data() {
return {
is_focus: true, //获取焦点动态化
box_sn: ''
};
},
......
......@@ -279,7 +279,7 @@ const API = {
/**
* 异常型号装箱
*/
getAbnormalTallyDetail: API_BASE + '/supplywechatwms/closeAbnormalBox',
submitAbnormalBox: API_BASE + '/supplywechatwms/submitAbnormalBox',
/**
* 合箱
*/
......
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