Browse Source

特殊人群bug修改

feature/syp_points
songyunpeng 5 years ago
parent
commit
beffd3693d
  1. 23
      src/views/modules/custom/specialuser.vue

23
src/views/modules/custom/specialuser.vue

@ -68,6 +68,25 @@
</el-pagination>
<!-- 弹窗, 新增 / 修改 -->
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
<el-dialog :visible.sync="faultDataVisible"
title="请修改后重新提交">
<el-table :data="errordataList"
border
style="width: 100%;">
<el-table-column prop="erroLine"
label="行数"
header-align="center"
align="center"></el-table-column>
<el-table-column prop="errorInfo"
label="错误信息"
header-align="center"
align="center"></el-table-column>
</el-table>
<template slot="footer">
<el-button type="primary"
@click="faultDataVisible = false">确定</el-button>
</template>
</el-dialog>
</div>
</el-card>
</template>
@ -92,7 +111,9 @@ export default {
dataForm: {
id: ''
},
uploadUrl: ''
uploadUrl: '',
faultDataVisible: false,
errordataList: []
}
},
components: {

Loading…
Cancel
Save