update text
This commit is contained in:
parent
189d5af81e
commit
a64a4c3456
@ -68,21 +68,6 @@ const BillQuery = () => {
|
||||
}
|
||||
return (<div>
|
||||
<SearchForm showApply loading={loading} onSearch={setBillQueryParams}/>
|
||||
{/*<Button onClick={()=>{*/}
|
||||
{/* Sentry.showReportDialog({*/}
|
||||
{/* eventId:'Error: Query bill error',//'QueryBill Report'*/}
|
||||
{/* user:{*/}
|
||||
{/* email:'123123123',*/}
|
||||
{/* name:'test'*/}
|
||||
{/* },*/}
|
||||
{/* lang:'zh-CN',*/}
|
||||
{/* title:'看起来出现问题了',*/}
|
||||
{/* subtitle:'请填写你遇到的问题',*/}
|
||||
{/* subtitle2:'',*/}
|
||||
{/* labelComments:'问题类型',*/}
|
||||
{/* labelName:'问题类型',*/}
|
||||
{/* })*/}
|
||||
{/*}}></Button>*/}
|
||||
<BillList
|
||||
type={'query'} loading={loading}
|
||||
operationRender={operation} source={data}
|
||||
|
@ -83,10 +83,10 @@ const PayIndex = () => {
|
||||
<div className={styles.billInfo}>
|
||||
<div className="pay-item">
|
||||
<span className="title">Bill Number:</span>
|
||||
<span className="value">{bill.student_number || bill.application_number} - {bill.student_english_name}/{bill.student_chinese_name}</span>
|
||||
<span className="value">{bill.application_number || bill.student_number} - {bill.student_english_name}/{bill.student_chinese_name}</span>
|
||||
</div>
|
||||
<div className="pay-item">
|
||||
<span className="title">Order Number:</span>
|
||||
<span className="title">Bill ID:</span>
|
||||
<span className="value">{bill.id}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -58,7 +58,7 @@ export function GeneratePdf(bill: BillModel) {
|
||||
body: [
|
||||
...(bill.details.map(it=>{
|
||||
return [
|
||||
`#${it.id || bill.id}`,
|
||||
`#${bill.id}${it.id?'-' + it.id:''}`,
|
||||
dayjs(bill.paid_at).format('YYYY-MM-DD'),
|
||||
it.bill_type,
|
||||
`${bill.payment_channel}(${bill.payment_method})`,
|
||||
|
Loading…
x
Reference in New Issue
Block a user