魏超 vor 5 Jahren
Ursprung
Commit
89e3b740db

+ 1
- 1
config/routes.js Datei anzeigen

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

+ 1
- 1
src/pages/activity/SignList.jsx Datei anzeigen

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

+ 1
- 1
src/pages/record/drainage/DrainageVisitRecordList.jsx Datei anzeigen

83
       dataIndex: 'personType',
83
       dataIndex: 'personType',
84
       key: 'personType',
84
       key: 'personType',
85
       align: 'center',
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