|
@@ -41,6 +41,7 @@ const mutations = {
|
|
|
const actions = {
|
|
|
async fetchDimensionList({ state, commit }) {
|
|
|
const datas = {
|
|
|
+ examId: state.baseInfo.examId,
|
|
|
paperNumber: state.baseInfo.paperNumber,
|
|
|
paperType: state.baseInfo.paperType
|
|
|
};
|
|
@@ -50,6 +51,7 @@ const actions = {
|
|
|
},
|
|
|
async fetchStructList({ state, commit }) {
|
|
|
const datas = {
|
|
|
+ examId: state.baseInfo.examId,
|
|
|
paperNumber: state.baseInfo.paperNumber,
|
|
|
paperType: state.baseInfo.paperType
|
|
|
};
|
|
@@ -59,6 +61,7 @@ const actions = {
|
|
|
},
|
|
|
async fetchDefineList({ state, commit }) {
|
|
|
const datas = {
|
|
|
+ examId: state.baseInfo.examId,
|
|
|
paperNumber: state.baseInfo.paperNumber,
|
|
|
paperType: state.baseInfo.paperType
|
|
|
};
|
|
@@ -71,6 +74,7 @@ const actions = {
|
|
|
},
|
|
|
async fetchEvaluationList({ state, commit }) {
|
|
|
const datas = {
|
|
|
+ examId: state.baseInfo.examId,
|
|
|
paperNumber: state.baseInfo.paperNumber,
|
|
|
paperType: state.baseInfo.paperType
|
|
|
};
|