|
@@ -322,7 +322,8 @@ export default {
|
|
|
created() {
|
|
|
this.examRecordDataId = this.$route.params.examRecordDataId;
|
|
|
this.pendingOperate = this.$route.query.pendingOperate;
|
|
|
- this.searchParam = this.$route.query.searchParam;
|
|
|
+ this.searchParam = JSON.parse(this.$route.query.searchParam);
|
|
|
+ console.log(this.$route.query.searchParam, this.searchParam);
|
|
|
var fromPage = this.$route.params.from;
|
|
|
var currentPathJson = {
|
|
|
illegalityNameList: ["违纪名单", "抓拍详情"],
|
|
@@ -452,6 +453,7 @@ export default {
|
|
|
this.examRecordDataId +
|
|
|
"&next=" +
|
|
|
next;
|
|
|
+ console.log(this.searchParam);
|
|
|
this.$http.post(url, this.searchParam).then((response) => {
|
|
|
if (response.data) {
|
|
|
this.examRecordDataId = response.data;
|