张延森 před 4 roky
rodič
revize
168f62f757

+ 1
- 1
src/pages/customer/customerlist/components/integralRecord.jsx Zobrazit soubor

@@ -140,7 +140,7 @@ class ModalIntegralRecord extends React.Component {
140 140
         title: '发生时间',
141 141
         dataIndex: 'createDate',
142 142
         key: 'createDate',
143
-        render: (createDate, records) => <span> {moment(createDate).format('YYYY-MM-DD')}</span>,
143
+        render: (createDate, records) => <span> {moment(createDate).format('YYYY-MM-DD HH:mm')}</span>,
144 144
       },
145 145
     ]
146 146
     return (

+ 2
- 1
src/pages/customer/personlist/index.jsx Zobrazit soubor

@@ -99,6 +99,7 @@ export default props => {
99 99
         />
100 100
         <Table.Column title="姓名" dataIndex="nickname" key="nickname" />
101 101
         <Table.Column title="电话" dataIndex="phone" key="phone" render={t => t ? t.replace(/(\d{3})\d*(\d{4})/,'$1****$2') : ''} />
102
+        <Table.Column title="总积分" dataIndex="points" key="points" />
102 103
         <Table.Column title="创建时间" dataIndex="createDate" key="createDate" />
103 104
         <Table.Column
104 105
           title="操作"
@@ -106,7 +107,7 @@ export default props => {
106 107
           render={(_, row) => {
107 108
             return (
108 109
               <>
109
-                <Button type="link" onClick={() => setShowPoints({visible: true, customerId: row.personId})}>积分</Button>
110
+                <Button type="link" onClick={() => setShowPoints({visible: true, customerId: row.personId})}>积分明细</Button>
110 111
               </>
111 112
             )
112 113
           }}

+ 2
- 2
src/pages/property/bill/info/index.jsx Zobrazit soubor

@@ -11,8 +11,8 @@ import useRoomSelect from '../../utils/hooks/useRoomSelect'
11 11
 
12 12
 const BillStatusDict = [
13 13
   { value: '0', label: '未缴费' },
14
-  { value: '1', label: '已线上缴费' },
15
-  { value: '2', label: '已线下缴费' },
14
+  { value: '1', label: '已缴费' },
15
+  // { value: '2', label: '已线下缴费' },
16 16
   { value: '3', label: '支付中' },
17 17
 ]
18 18