Commit 72abe65f authored by 田涛's avatar 田涛

Merge branch 'dev_upgrade' of http://172.16.10.76/station/amos-convertor-view into dev_upgrade

parents 5d612bb5 3ea1830b
......@@ -59,7 +59,7 @@
"amos-designer": "^1.0.2",
"amos-framework": "^1.2.2",
"amos-iot-3dgraph": "^1.0.0",
"amos-iot-webstudio": "^1.0.4",
"amos-iot-webstudio": "1.0.4",
"eslint-config-ray": "^1.0.26",
"mockjs": "^1.0.1-beta3",
"ray-build": "^2.0.2",
......
......@@ -113,7 +113,7 @@ class PointSearch extends Component {
data.departments ? data.departments.map(e => {
if (e) {
departmentList.push(<Option value={`${e.sequenceNbr}`}>{e.departmentName}</Option>);
departmentList.push(<Option value={`${e.id}`}>{e.name}</Option>);
}
}) : [];
......
......@@ -129,6 +129,7 @@ class EvaluationModel extends Component {
}
});
form.rpni = rpni;
form.riskLevelId = target[0] && target[0].id;
return target[0] && target[0].name;
}
......@@ -239,7 +240,7 @@ class EvaluationModel extends Component {
{item.coefficient}-{item.describe}
</Option>
)}
value={form.evaluationDid}
value={parseInt(form.evaluationDid)}
onChange={(e, item) => this.onSelectChange('evaluationDid', e, item)}
/>
</FormItem>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment