<none>修复代码格式问题

This commit is contained in:
葛林强 2024-12-18 12:35:43 +08:00
parent b927ef661b
commit cefa008231
5 changed files with 28 additions and 20 deletions

View File

@ -42,7 +42,8 @@ class _PickPageState extends State<Pick> {
children: [ children: [
BrnTextInputFormItem( BrnTextInputFormItem(
controller: _vehicleNoTextController, controller: _vehicleNoTextController,
title: "载具号:", hint: "请扫描或输入需要拣货的载具号" title: "载具号:", hint: "请扫描或输入需要拣货的载具号",
isRequire: true,
), ),
Padding(padding: const EdgeInsets.only( Padding(padding: const EdgeInsets.only(
top: 5 top: 5

View File

@ -42,7 +42,8 @@ class _StockCheckPageState extends State<StockCheck> {
children: [ children: [
BrnTextInputFormItem( BrnTextInputFormItem(
controller: _vehicleNoTextController, controller: _vehicleNoTextController,
title: "载具号:", hint: "请扫描或输入需要盘点的载具号" title: "载具号:", hint: "请扫描或输入需要盘点的载具号",
isRequire: true,
), ),
Padding(padding: const EdgeInsets.only( Padding(padding: const EdgeInsets.only(
top: 5 top: 5

View File

@ -47,6 +47,10 @@ class _StockSearchPageState extends State<StockSearch> {
controller: _goodsIdTextController, controller: _goodsIdTextController,
title: "物料号:", hint: "请输入物料号" title: "物料号:", hint: "请输入物料号"
), ),
BrnTextInputFormItem(
controller: _goodsIdTextController,
title: "批次号:", hint: "请输入批次号"
),
Padding(padding: const EdgeInsets.only( Padding(padding: const EdgeInsets.only(
top: 5 top: 5
), child: ElevatedButton( ), child: ElevatedButton(

View File

@ -60,7 +60,8 @@ class _StockInWheelEBSPageState extends State<StockInWheelEBS> {
children: [ children: [
BrnTextInputFormItem( BrnTextInputFormItem(
controller: _vehicleTextController, controller: _vehicleTextController,
title: "载具号:", hint: "请扫描或输入" title: "载具号:", hint: "请扫描或输入",
isRequire: true,
), ),
BrnRadioInputFormItem( BrnRadioInputFormItem(
title: "选择目的地:", title: "选择目的地:",

View File

@ -45,7 +45,8 @@ class _StockInEmptyPageState extends State<StockInEmpty> {
children: [ children: [
BrnTextInputFormItem( BrnTextInputFormItem(
controller: _vehicleTextController, controller: _vehicleTextController,
title: "载具号:", hint: "请扫描或输入" title: "载具号:", hint: "请扫描或输入",
isRequire: true,
), ),
Padding(padding: const EdgeInsets.only( Padding(padding: const EdgeInsets.only(
top: 5 top: 5