Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-convertor-view
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
station
amos-convertor-view
Commits
05ac1ed8
Commit
05ac1ed8
authored
Aug 14, 2024
by
李秀明
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
重点设备-增加排油时长字段
parent
35fbfc0c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
EquipmentModel.js
src/view/bizview/equipmentLedger/Equipment/EquipmentModel.js
+5
-1
No files found.
src/view/bizview/equipmentLedger/Equipment/EquipmentModel.js
View file @
05ac1ed8
...
...
@@ -4,7 +4,7 @@ import SysConsts from 'amos-processor/lib/config/consts';
import
formatUrl
from
'amos-processor/lib/utils/urlFormat'
;
import
*
as
endConf
from
'amos-processor/lib/config/endconf'
;
import
{
FasSerUrl
}
from
'../../../../consts/urlConsts'
;
import
{
Form
,
Upload
,
Input
,
Select
,
Radio
,
Modal
,
AmosAlert
,
Icon
,
Toast
}
from
'amos-framework'
;
import
{
Form
,
Upload
,
Input
,
Select
,
Radio
,
Modal
,
AmosAlert
,
Icon
,
Toast
,
InputNumber
}
from
'amos-framework'
;
import
{
TreeSelect
}
from
'amos-antd'
;
import
PropTypes
from
'amos-react-router/lib/PropTypes'
;
import
{
getEquipmentDataAction
,
getFireStationDataAction
,
getPrePlanPictureAction
}
from
'../../../../services/ledgerService'
;
...
...
@@ -47,6 +47,7 @@ class EquipmentModel extends Component {
room
:
''
,
remark
:
''
,
isIndoor
:
true
,
drainDuration
:
0
,
imageUrl1
:
[],
imageUrl2
:
[],
imageUrl3
:
[],
...
...
@@ -569,6 +570,9 @@ class EquipmentModel extends Component {
<Radio value>是</Radio>
</RadioGroup>
</FormItem>
<FormItem label={<span>排油时长(分钟)</span>} field="drainDuration" {...formItemLayout}>
<InputNumber defaultValue={0} max={1000000} min={1} value={form.drainDuration} onChange={value => this.onInputChange('
drainDuration
', value)} />
</FormItem>
<FormItem label={<span>备注</span>} field="remark" {...formItemLayout}>
<TextArea rows={4} className="risk_factor_input" required value={form.remark} onChange={e => this.onInputChange('
remark
', e.target.value)} />
</FormItem>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment