<template>
|
<view>
|
<view class="cu-form-group margin-top">
|
<text class="title">产品代号</text>
|
<input type="text" placeholder="扫码 / 输入" name="input" autocomplete="off">
|
</view>
|
<view class="cu-form-group margin-top">
|
<text class="title">产品名称</text>
|
<input type="text" name="input" autocomplete="off">
|
</view>
|
<view class="cu-form-group margin-top">
|
<text class="title">单位</text>
|
<input type="text" name="input" autocomplete="off">
|
</view>
|
<view class="cu-form-group margin-top">
|
<text class="title">数量</text>
|
<uni-number-box @change="changeValue" />
|
</view>
|
<button class="cu-btn bg-yellow pda-btn2">提取</button>
|
</view>
|
</template>
|
|
<script>
|
</script>
|
|
<style>
|
.pda-btn2{
|
margin-left:auto;
|
margin-right: auto;
|
margin-top: 150rpx;
|
width: 200rpx;
|
height: 80rpx;
|
}
|
</style>
|