新增 退扫功能
parent
835292800c
commit
c21b64da1c
@ -0,0 +1,118 @@
|
||||
<template>
|
||||
<view class="page-raw-returning">
|
||||
<view class="header" :style="{ backgroundColor: `rgba(23, 83, 234, ${scrollTop / 100})` }">
|
||||
<view class="left">
|
||||
<u-icon class="icon" name="arrow-left" @click="uni.navigateBack({ delta: 1 })" />
|
||||
</view>
|
||||
<view class="title">{{ $t('message.BackSweep') }}</view>
|
||||
<view class="right"></view>
|
||||
</view>
|
||||
<u-form class="form" ref="form" :error-type="['toast']" label-width="150rpx">
|
||||
<!-- DN单号 -->
|
||||
<u-form-item :label="$t('message.dn_OddNumbers')">
|
||||
<u-input v-model="SweepCode" :disabled="true" />
|
||||
</u-form-item>
|
||||
<!-- 已扫数量 -->
|
||||
<u-form-item :label="$t('message.SweptQuantity')">
|
||||
<u-input v-model="model.orderInInfo.stoAmount" :disabled="true" />
|
||||
</u-form-item>
|
||||
<!-- 已退数量 -->
|
||||
<u-form-item :label="$t('message.QuantityReturned')">
|
||||
<u-input v-model="model.orderInInfo.stoAmount" :disabled="true" />
|
||||
</u-form-item>
|
||||
<!-- 成品条码 -->
|
||||
<u-form-item :label="$t('message.sweepBarCode')">
|
||||
<u-search :placeholder="$t('message.barcode')" v-model="arr" @search="BackSweep" :focus="firstFocus" :show-action="false"></u-search>
|
||||
</u-form-item>
|
||||
</u-form>
|
||||
<view class="bottom-bar">
|
||||
<u-row class="button-bar">
|
||||
<u-col :span="6">
|
||||
<u-button type="warning" @click="uni.navigateBack({ delta: 1 })">{{ $t('message.po_Return') }}</u-button>
|
||||
</u-col>
|
||||
<u-col :span="6">
|
||||
<u-button type="primary" @click="BackSweep">{{ $t('message.BackSweep') }}</u-button>
|
||||
</u-col>
|
||||
</u-row>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { Component } from 'vue-property-decorator';
|
||||
import { BasePage } from '@/components/base/page';
|
||||
import model from './model';
|
||||
import { session } from '@/store/modules/session';
|
||||
@Component
|
||||
export default class stoOutboundDom extends BasePage {
|
||||
model = model;
|
||||
SweepCode: any = '';
|
||||
firstFocus = false;
|
||||
arr: any = '';
|
||||
onReady() {
|
||||
let code = sessionStorage.getItem('SweepCode');
|
||||
this.SweepCode = JSON.parse(code);
|
||||
}
|
||||
BackSweep() {}
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.page-raw-returning {
|
||||
background: #f2f2f2 linear-gradient(0deg, #f2f2f2 0%, #4a78ea 51%, #1753ea 100%) no-repeat;
|
||||
background-size: 100% 600rpx;
|
||||
padding: 118rpx 30rpx 162rpx;
|
||||
min-height: 100%;
|
||||
|
||||
.header {
|
||||
position: fixed;
|
||||
top: 36rpx;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 99;
|
||||
display: flex;
|
||||
height: 88rpx;
|
||||
line-height: 88rpx;
|
||||
color: #fff;
|
||||
font-size: 34rpx;
|
||||
font-weight: 500;
|
||||
text-align: center;
|
||||
.title {
|
||||
flex: 3;
|
||||
}
|
||||
.left,
|
||||
.right {
|
||||
flex: 1;
|
||||
}
|
||||
.icon {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 88rpx;
|
||||
height: 88rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.form {
|
||||
background-color: #fff;
|
||||
padding: 40rpx;
|
||||
border-radius: 10rpx;
|
||||
box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
|
||||
|
||||
.u-form-item {
|
||||
padding: 30rpx 0;
|
||||
line-height: 35rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.bottom-bar {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 99;
|
||||
background: #ffffff;
|
||||
box-shadow: 0 1rpx 20rpx 0 rgba(128, 128, 128, 0.2);
|
||||
padding: 20rpx;
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue