|
|
@ -57,6 +57,9 @@ |
|
|
|
type="danger" |
|
|
|
@click="deleteHandle()">{{ $t('deleteBatch') }}</el-button> |
|
|
|
</el-form-item> |
|
|
|
<!-- <el-form-item>--> |
|
|
|
<!-- <el-button type="primary" @click="exportHandle()">{{ $t('export') }}</el-button>--> |
|
|
|
<!-- </el-form-item>--> |
|
|
|
</el-form> |
|
|
|
<el-table v-loading="dataListLoading" |
|
|
|
:data="dataList" |
|
|
@ -209,7 +212,9 @@ export default { |
|
|
|
getDataListURL: 'sys/epidemicuserinfo/getEpidemicPage', |
|
|
|
getDataListIsPage: true, |
|
|
|
deleteURL: 'sys/epidemicuserinfo', |
|
|
|
deleteIsBatch: true |
|
|
|
deleteIsBatch: true, |
|
|
|
exportURL: '/sys/vaccinationerror/exportError', |
|
|
|
exportErrorInfoURL: 'sys/vaccinationerror/exportError' |
|
|
|
}, |
|
|
|
dataForm: { |
|
|
|
infoId: '', |
|
|
@ -342,11 +347,12 @@ export default { |
|
|
|
cancelButtonText: '取消', |
|
|
|
type: 'warning' |
|
|
|
}).then(() => { |
|
|
|
var params = qs.stringify({ |
|
|
|
'token': Cookies.get('token'), |
|
|
|
...this.dataForm |
|
|
|
}) |
|
|
|
window.location.href = `${window.SITE_CONFIG['apiURL']}${this.mixinViewModuleOptions.exportErrorInfoURL}?${params}` |
|
|
|
this.exportHandle() |
|
|
|
// var params = qs.stringify({ |
|
|
|
// 'token': Cookies.get('token'), |
|
|
|
// ...this.dataForm |
|
|
|
// }) |
|
|
|
// window.location.href = `${window.SITE_CONFIG['apiURL']}${this.mixinViewModuleOptions.exportErrorInfoURL}?${params}` |
|
|
|
this.$message({ |
|
|
|
type: 'success', |
|
|
|
message: '下载成功' |
|
|
|