@@ -806,6 +840,13 @@
+
+
+
+
+
+
+
@@ -829,6 +870,7 @@ import { getYtzm, updateYtzm } from "@/api/dangan/ytzm";
import { getQyz, updateQyz } from "@/api/dangan/qyz";
import { getZqz, updateZqz } from "@/api/dangan/zqz";
import { getZfnyhkcg, updateZfnyhkcg } from "@/api/dangan/zfnyhkcg";
+import { getQuanwen, updateQuanwen } from "@/api/dangan/quanwen";
export default {
name: "Retrieval",
@@ -963,6 +1005,19 @@ export default {
},
total: 0
},
+ // 转非农业人口批复存根
+ option12: {
+ // 遮罩层
+ loading: true,
+ open: false,
+ list: [],
+ qParams: {
+ pageNum: 1,
+ pageSize: 10,
+ name: null,
+ },
+ total: 0
+ },
option:{
open_jc: false,
form:{},
@@ -1041,6 +1096,13 @@ export default {
this.option7Query()
}
+ // 转非农业人口批复存根
+ if(this.checkList.indexOf('option12') !== -1){
+ this.option12.open = true
+ this.option12.qParams.name = this.keyword
+ this.option12Query()
+ }
+
}else {
this.$alert(`请先输入关键字`, `提示`, {
@@ -1061,6 +1123,7 @@ export default {
this.option7.open = false;
this.option8.open = false;
this.option9.open = false;
+ this.option12.open = false;
this.option1.list = [];
this.option2.list = [];
@@ -1071,6 +1134,7 @@ export default {
this.option7.list = [];
this.option8.list = [];
this.option9.list = [];
+ this.option12.list = [];
this.option1.name = null;
this.option2.name = null;
@@ -1081,6 +1145,7 @@ export default {
this.option7.name = null;
this.option8.name = null;
this.option9.name = null;
+ this.option12.name = null;
this.option1.total = 0;
this.option2.total = 0;
@@ -1091,6 +1156,7 @@ export default {
this.option7.total = 0;
this.option8.total = 0;
this.option9.total = 0;
+ this.option12.total = 0;
},
// 常住人口登记表1
option1Query(){
@@ -1245,6 +1311,23 @@ export default {
})
}
},
+ // 全文识别内容
+ option12Query(){
+ this.option12.loading = true;
+ if(this.isTongYin){
+ listZfnyhkcg(this.option12.qParams).then(response => {
+ this.option12.list = response.rows;
+ this.option12.total = response.total;
+ this.option12.loading = false;
+ })
+ }else {
+ listZfnyhkcg1(this.option12.qParams).then(response => {
+ this.option12.list = response.rows;
+ this.option12.total = response.total;
+ this.option12.loading = false;
+ })
+ }
+ },
handleCheckAllChange(val) {
if(val){
this.checkList = []
@@ -1544,6 +1627,30 @@ export default {
updateBy: null,
updateTime: null
};
+ }else if(row.ywType==='option12'){
+ this.option.form = {
+ id: null,
+ ywType: 'option12',
+ allInfo: null,
+ taskId: null,
+ flag: 1,
+ muId: null,
+ muPath: null,
+ picIds: null,
+ pictures: null,
+ allPicIds: null,
+ allPics: null,
+ errorCorrect: null,
+ auditStatus: null,
+ auditName: null,
+ auditResult: null,
+ auditReason: null,
+ remark: null,
+ createBy: null,
+ createTime: null,
+ updateBy: null,
+ updateTime: null
+ };
}
this.shiBieList = [];
this.resetForm("formOption");
@@ -1587,6 +1694,12 @@ export default {
this.option.form = response.data;
this.option.open_jc = true;
});
+ }else if(row.ywType==='option12'){
+ getQuanwen(id).then(response => {
+ this.reset(response.data)
+ this.option.form = response.data;
+ this.option.open_jc = true;
+ });
}
},
/** 提交按钮 */
@@ -1635,6 +1748,13 @@ export default {
this.option.open_jc = false;
this.handleQuery()
});
+ }else if(this.option.form.ywType==='option12'){
+ this.option.form.errorCorrect = 1;
+ updateQuanwen(this.option.form).then(response => {
+ this.$modal.msgSuccess("修改成功");
+ this.option.open_jc = false;
+ this.handleQuery()
+ });
}
}
});
diff --git a/dangan-ui/src/views/dangan/task/index.vue b/dangan-ui/src/views/dangan/task/index.vue
index babb917..c4fd4a1 100644
--- a/dangan-ui/src/views/dangan/task/index.vue
+++ b/dangan-ui/src/views/dangan/task/index.vue
@@ -184,7 +184,21 @@
-
+
+
+
+
+
+
+
+
确定
@@ -520,6 +548,12 @@
+
+
+
+
+
+