|
@@ -806,7 +806,10 @@ export default {
|
|
|
}
|
|
|
);
|
|
|
this.wechat.qrValue = response.data;
|
|
|
- this.wechat.examRecordDataId = examRecordDataId;
|
|
|
+ const trueExamRecordDataId = decodeURIComponent(response.data).match(
|
|
|
+ /&examRecordDataId=(\d+)/
|
|
|
+ )[1];
|
|
|
+ this.wechat.examRecordDataId = trueExamRecordDataId;
|
|
|
};
|
|
|
if (this.wechat.qrValue) {
|
|
|
this.getQRCodeTimeout = setTimeout(() => {
|