瀏覽代碼

uas手机版
备份

RaoMeng 5 年之前
父節點
當前提交
f5fcf13891

+ 1 - 1
uas-office-web/uas-mobile/src/components/common/currencyList/CurrencyList.jsx

@@ -124,7 +124,7 @@ class CurrencyList extends Component {
           }}
           renderRow={(rowData, sectionID, rowID) => {
             return <CurrencyListItem
-              rowList={rowData}
+              rowData={rowData}
               onItemClick={this.onItemClick}/>
           }}
           style={{

+ 1 - 1
uas-office-web/uas-mobile/src/components/common/currencyList/CurrencyListItem.jsx

@@ -25,7 +25,7 @@ export default class CurrencyListItem extends Component {
   }
 
   render () {
-    const { rowList } = this.props
+    const { rowData: { rowList } } = this.props
     const rowItems = []
     if (!isObjEmpty(rowList)) {
       rowList.forEach((item, index) => {