|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
- <dw-survey-dcs-wrapper :id="id" is-answer-data="true" >
|
|
|
+ <dw-survey-dcs-wrapper :id="id" :is-answer-data="true" >
|
|
|
<template v-slot:dw-dcs-main-slot="{survey}" >
|
|
|
<div class="dw-dcs-main-title">
|
|
|
<el-row type="flex">
|
|
@@ -13,6 +13,7 @@
|
|
|
stripe
|
|
|
style="width: 100%">
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
+ <el-table-column label="回答用户" prop="userId" width="200"></el-table-column>
|
|
|
<el-table-column label="回答IP" >
|
|
|
<template slot-scope="scope">
|
|
|
<el-popover trigger="hover" placement="top">
|
|
@@ -99,6 +100,11 @@ export default {
|
|
|
expUpQu: 0
|
|
|
}
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ id () {
|
|
|
+ return this.$route.params.id
|
|
|
+ }
|
|
|
+ },
|
|
|
mounted () {
|
|
|
this.queryList(1)
|
|
|
},
|