Browse Source

【深爱】【描述修改】

wuyx 1 month ago
parent
commit
d01883b2b7

+ 10 - 11
uas-office-web/uas-mobile/src/components/common/mainHeader/MainHeader.jsx

@@ -19,25 +19,24 @@ class MainHeader extends Component {
     this.state = {
       homeHeaderIcon: [
         {
+          'name': '我的待办',//待审批
+          countUrl: API.APPCOMMON_COUNT + 'processToDo.action',
+          icon: 'uas-home-approval',
+        },{
           'name': '我的日程',
           countUrl: API.APPCOMMON_COUNT + 'dailyTask.action',
           icon: 'uas-home-schedule',
         },
         {
-          'name': '待审批',
-          countUrl: API.APPCOMMON_COUNT + 'processToDo.action',
-          icon: 'uas-home-approval',
+          'name': '我的订阅',
+          countUrl: API.APPCOMMON_COUNT + 'subscribe.action',
+          icon: 'uas-home-subscribe',
         },
         {
-          'name': '任务',
+          'name': '我的任务',//任务
           countUrl: API.APPCOMMON_COUNT + 'taskToDo.action',
           icon: 'uas-home-task',
         },
-        {
-          'name': '我的订阅',
-          countUrl: API.APPCOMMON_COUNT + 'subscribe.action',
-          icon: 'uas-home-subscribe',
-        },
       ],
     }
   }
@@ -82,11 +81,11 @@ class MainHeader extends Component {
     //点击图标触发
     if (funcObj.name === '我的日程') {
       this.props.history.push('/schedulePage')
-    } else if (funcObj.name === '任务') {
+    } else if (funcObj.name === '我的任务') {
       this.props.history.push('/taskTodo')
     } else if (funcObj.name === '我的订阅') {
       this.props.history.push('/subscribeList')
-    } else if (funcObj.name === '待审批') {
+    } else if (funcObj.name === '我的待办') {
       this.props.history.push(
         '/approvalHome/' + this.props.userState.accountCode)
     }

+ 1 - 1
uas-office-web/uas-mobile/src/components/private/profile/ProfileList.jsx

@@ -33,7 +33,7 @@ class ProfileList extends Component {
         <Item arrow="horizontal" extra={accountName} onClick={this.changeAccount}>切换账套</Item>
         {/* <Item arrow="horizontal">清除缓存</Item> */}
         <Item arrow="horizontal" onClick={this.userFeedback}>用户反馈</Item>
-        <Item arrow="horizontal" onClick={this.contactInfo}>关于我们</Item>
+        <Item arrow="horizontal" onClick={this.contactInfo}>关于优软</Item>
       </div>
     )
   }

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

@@ -165,7 +165,7 @@ class HomePage extends Component {
   getMineTab = () => {
     return (
       <TabBar.Item
-        title="我"
+        title="我"
         key="Mine"
         icon={<UasIcon type="uas-mine-normal"/>}
         selectedIcon={<UasIcon type="uas-mine-select"/>}

+ 1 - 1
uas-office-web/uas-mobile/src/pages/private/mine/ContactInfo.jsx

@@ -18,7 +18,7 @@ class ContactInfo extends Component {
   }
 
   componentDidMount () {
-    document.title = this.title || '关于我们'
+    document.title = this.title || '关于优软'
   }
 
   componentWillUnmount () {