|
@@ -99,7 +99,7 @@ export default {
|
|
|
},
|
|
|
theRemainingThemeDlg: {
|
|
|
handler(newValue) {
|
|
|
- newValue && this.getVoteDetail();
|
|
|
+ newValue && this.lookVoteOther();
|
|
|
},
|
|
|
},
|
|
|
},
|
|
@@ -144,12 +144,12 @@ export default {
|
|
|
},
|
|
|
// 查看其余主题
|
|
|
async lookVoteOther() {
|
|
|
+ console.log(this.rowForm);
|
|
|
const res = await raiInterface.questionnaireVote_other({
|
|
|
- QuestionnaireThemeId: item.QuestionnaireThemeId,
|
|
|
+ QuestionnaireId: this.rowForm.QuestionnaireId,
|
|
|
});
|
|
|
|
|
|
if (res.Ret === 200) {
|
|
|
- this.isVoteDetails = true;
|
|
|
this.$nextTick(() => {
|
|
|
this.voteOtherList = res.Data.List || [];
|
|
|
});
|