魏超 5 年 前
コミット
89e3b740db
共有3 個のファイルを変更した3 個の追加3 個の削除を含む
  1. 1
    1
      config/routes.js
  2. 1
    1
      src/pages/activity/SignList.jsx
  3. 1
    1
      src/pages/record/drainage/DrainageVisitRecordList.jsx

+ 1
- 1
config/routes.js ファイルの表示

@@ -296,7 +296,7 @@ export default [
296 296
               },
297 297
               {
298 298
                 path: '/activity/helpActivity/signList',
299
-                name: '报名列表',
299
+                name: '助力记录',
300 300
                 hideInMenu: true,
301 301
                 component: './activity/helpActivity/signList',
302 302
               },

+ 1
- 1
src/pages/activity/SignList.jsx ファイルの表示

@@ -121,7 +121,7 @@ const handleSubmit = (e, props) => {
121 121
         const link = document.createElement('a')
122 122
         link.style.display = 'none'
123 123
         link.href = url
124
-        link.setAttribute('download', '助力者记录.xlsx')
124
+        link.setAttribute('download', '报名列表.xlsx')
125 125
         document.body.append(link)
126 126
         link.click()
127 127
       }).catch(() => {

+ 1
- 1
src/pages/record/drainage/DrainageVisitRecordList.jsx ファイルの表示

@@ -83,7 +83,7 @@ const header = props => {
83 83
       dataIndex: 'personType',
84 84
       key: 'personType',
85 85
       align: 'center',
86
-      render: (text, record) => <span>{record.shareName ? record.consultantId === null || record.consultantId === '' ? '普通客户' : '置业顾问' : ''}</span>,
86
+      render: (text, record) => <span>{record.personType === 'Realty Consultant' ? '置业顾问' : '普通客户' }</span>,
87 87
     },
88 88
   ];
89 89