Browse Source

uas手机版
常用应用管理页面

RaoMeng 5 years ago
parent
commit
8135f7192c

+ 1 - 1
uas-office-web/uas-mobile/src/pages/private/homePage/MainRoot.jsx

@@ -37,7 +37,7 @@ class MainRoot extends Component {
         </div>
         {/* 首页常用功能模块 */}
         <div className="main-common">
-          <OftenFuncGrid/>
+          <OftenFuncGrid rightIcon='uas-edit'/>
         </div>
         {/* 首页看板展示 */}
         <div className="main-kanban">

+ 3 - 2
uas-office-web/uas-mobile/src/pages/private/oftenFunc/OftenFuncGrid.jsx

@@ -24,9 +24,8 @@ class OftenFuncGrid extends Component {
   }
 
   render () {
-    const oftenFunc = {
+    let oftenFunc = {
       groupText: '常用',
-      rightIcon: 'uas-edit',
       funcList: [
         { name: '销售订单' },
         { name: '出货通知单' },
@@ -40,6 +39,8 @@ class OftenFuncGrid extends Component {
         { name: '销售订单' },
       ],
     }
+
+    oftenFunc.rightIcon = this.props.rightIcon
     return (
       <FuncGroup
         funcGroup={oftenFunc}