Commit b230dc91 authored by zhengjiangtao's avatar zhengjiangtao

增加值班

parent 11d9caac
...@@ -124,4 +124,9 @@ ...@@ -124,4 +124,9 @@
window.demo = true; window.demo = true;
window.BizPermissionType = 25; //业务屏菜单权限类型 可删除 window.BizPermissionType = 25; //业务屏菜单权限类型 可删除
window.V3DpermissionType = 26; //3D屏菜单权限类型 可删除 window.V3DpermissionType = 26; //3D屏菜单权限类型 可删除
window.appKey = 'AMOS_BANK';
window.product = 'AMOS_BANK_WEB';
window.dutyType = 'bank'; //normal/bank
})(); })();
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
"dependencies": { "dependencies": {
"amos-3d": "^2.1.5", "amos-3d": "^2.1.5",
"amos-amap": "^1.0.8", "amos-amap": "^1.0.8",
"amos-antd": "^2.0.22", "amos-antd": "^2.1.4",
"amos-core": "^2.0.27", "amos-core": "^2.0.27",
"amos-devgrid": "^1.0.10", "amos-devgrid": "^1.0.10",
"amos-dll": "^2.0.1", "amos-dll": "^2.0.1",
......
...@@ -76,19 +76,19 @@ class RiskContentTable extends Component { ...@@ -76,19 +76,19 @@ class RiskContentTable extends Component {
onCheckStatusClick =(record)=>{ onCheckStatusClick =(record)=>{
this.props.onCheckStatusClick(record); this.props.onCheckStatusClick(record);
} }
render() { render() {
const { dataList,fetchData } = this.props; const { dataList,fetchData } = this.props;
return ( return (
<div> <div>
<AmosGridTable <AmosGridTable
columns={checkListColumns(this)} columns={checkListColumns(this)}
getTableDataAction={()=>{}} getTableDataAction={()=>{}}
callBack={this.reload} callBack={this.reload}
isPageable = {false} isPageable = {false}
isChecked = {false} isChecked = {false}
dataList={dataList} dataList={dataList}
/> />
</div> </div>
); );
} }
......
import React, { Component } from 'react'; import React, { Component } from 'react';
import PropTypes from 'prop-types'; import DutyModellibView from 'amos-duty-model/lib/view/duty/index';
import 'amos-duty-model/lib/styles';
class DutyInfoView extends Component { class DutyInfoView extends Component {
constructor(props){
render() { super(props);
}
render() {
return ( return (
<div className='parent-check-detail' style={{ background: '#33333', height: '100%' }}> <div>
暂未开发 <DutyModellibView {...this.props} />
</div> </div>
); );
} }
......
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