魏超 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