领料出库-数字增大
This commit is contained in:
parent
0313eedb4a
commit
74fa10a565
|
|
@ -46,19 +46,19 @@
|
||||||
<uni-row :gutter="24">
|
<uni-row :gutter="24">
|
||||||
<uni-col :span="6">预领数量:</uni-col>
|
<uni-col :span="6">预领数量:</uni-col>
|
||||||
<uni-col :span="16">
|
<uni-col :span="16">
|
||||||
<view class="cont">{{ item.preNum }}</view>
|
<view class="cont" style="font-size: 20px">{{ item.preNum }}</view>
|
||||||
</uni-col>
|
</uni-col>
|
||||||
</uni-row>
|
</uni-row>
|
||||||
<uni-row :gutter="24">
|
<uni-row :gutter="24">
|
||||||
<uni-col :span="6">已领数量:</uni-col>
|
<uni-col :span="6">已领数量:</uni-col>
|
||||||
<uni-col :span="16">
|
<uni-col :span="16">
|
||||||
<view class="cont">{{ item.alNum }}</view>
|
<view class="cont" style="font-size: 20px">{{ item.alNum }}</view>
|
||||||
</uni-col>
|
</uni-col>
|
||||||
</uni-row>
|
</uni-row>
|
||||||
<uni-row :gutter="24">
|
<uni-row :gutter="24">
|
||||||
<uni-col :span="6">待领数量:</uni-col>
|
<uni-col :span="6">待领数量:</uni-col>
|
||||||
<uni-col :span="16">
|
<uni-col :span="16">
|
||||||
<view class="cont">{{ formatDiff(item.preNum, item.alNum) }}</view>
|
<view class="cont" style="font-size: 20px">{{ formatDiff(item.preNum, item.alNum) }}</view>
|
||||||
</uni-col>
|
</uni-col>
|
||||||
</uni-row>
|
</uni-row>
|
||||||
<uni-row :gutter="24">
|
<uni-row :gutter="24">
|
||||||
|
|
|
||||||
|
|
@ -112,19 +112,19 @@
|
||||||
<uni-row :gutter="24">
|
<uni-row :gutter="24">
|
||||||
<uni-col :span="6">预领数量:</uni-col>
|
<uni-col :span="6">预领数量:</uni-col>
|
||||||
<uni-col :span="18">
|
<uni-col :span="18">
|
||||||
<div class="cont">{{ item.preCountNum }}</div>
|
<div class="cont" style="font-size: 20px">{{ item.preCountNum }}</div>
|
||||||
</uni-col>
|
</uni-col>
|
||||||
</uni-row>
|
</uni-row>
|
||||||
<uni-row :gutter="24">
|
<uni-row :gutter="24">
|
||||||
<uni-col :span="6">已领数量:</uni-col>
|
<uni-col :span="6">已领数量:</uni-col>
|
||||||
<uni-col :span="18">
|
<uni-col :span="18">
|
||||||
<div class="cont">{{ item.alNum }}</div>
|
<div class="cont" style="font-size: 20px">{{ item.alNum }}</div>
|
||||||
</uni-col>
|
</uni-col>
|
||||||
</uni-row>
|
</uni-row>
|
||||||
<uni-row :gutter="24">
|
<uni-row :gutter="24">
|
||||||
<uni-col :span="6">待领数量:</uni-col>
|
<uni-col :span="6">待领数量:</uni-col>
|
||||||
<uni-col :span="18">
|
<uni-col :span="18">
|
||||||
<div class="cont">{{ formatDiff(item.preCountNum, item.alNum) }}</div>
|
<div class="cont" style="font-size: 20px">{{ formatDiff(item.preCountNum, item.alNum) }}</div>
|
||||||
</uni-col>
|
</uni-col>
|
||||||
</uni-row>
|
</uni-row>
|
||||||
</uni-swipe-action-item>
|
</uni-swipe-action-item>
|
||||||
|
|
|
||||||
|
|
@ -20,13 +20,13 @@
|
||||||
</uni-forms-item>
|
</uni-forms-item>
|
||||||
|
|
||||||
<uni-forms-item label="库存数量:" name="storageNum">
|
<uni-forms-item label="库存数量:" name="storageNum">
|
||||||
<span class="form-view">{{ queryParams.storageNum }}</span>
|
<span class="form-view" style="font-size: 20px">{{ queryParams.storageNum }}</span>
|
||||||
</uni-forms-item>
|
</uni-forms-item>
|
||||||
<uni-forms-item label="预领数量:" name="preNum">
|
<uni-forms-item label="预领数量:" name="preNum">
|
||||||
<span class="form-view">{{ queryParams.preNum }}</span>
|
<span class="form-view" style="font-size: 20px">{{ queryParams.preNum }}</span>
|
||||||
</uni-forms-item>
|
</uni-forms-item>
|
||||||
<uni-forms-item label="已领数量:" name="alNum">
|
<uni-forms-item label="已领数量:" name="alNum">
|
||||||
<span class="form-view">{{ queryParams.alNum }}</span>
|
<span class="form-view" style="font-size: 20px">{{ queryParams.alNum }}</span>
|
||||||
</uni-forms-item>
|
</uni-forms-item>
|
||||||
<uni-forms-item label="出库数量:">
|
<uni-forms-item label="出库数量:">
|
||||||
<uni-easyinput
|
<uni-easyinput
|
||||||
|
|
@ -330,4 +330,7 @@ const onHandleOutbound = async () => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
::v-deep .uni-easyinput__content-input {
|
||||||
|
font-size: 20px !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue