|
@@ -72,7 +72,7 @@ export default class EnquiryLists extends Component {
|
|
|
},
|
|
|
{
|
|
|
title: `${sldComLanguage("月份")}`,
|
|
|
- dataIndex: "email",
|
|
|
+ dataIndex: "queryMonth",
|
|
|
align: "center",
|
|
|
width: 80,
|
|
|
},
|
|
@@ -134,7 +134,10 @@ export default class EnquiryLists extends Component {
|
|
|
this.get_list({ pageSize: pageSize });
|
|
|
}
|
|
|
|
|
|
- detailRecord = () => {
|
|
|
+ detailRecord = (record) => {
|
|
|
+ if (record.pdfUrl) {
|
|
|
+ window.open(record.pdfUrl, '_blank')
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
//获取数据列表
|