Browse Source

宅基地调查优化

rongxin_prod
Xyq123* 1 year ago
parent
commit
8aa04c0d83
4 changed files with 19 additions and 18 deletions
  1. +10
    -4
      src/views/homesteadSurvey/add4.vue
  2. +7
    -6
      src/views/homesteadSurvey/index.vue
  3. +1
    -0
      src/views/homesteadSurvey/nhAdd.vue
  4. +1
    -8
      src/views/homesteadSurvey/shyqrAdd.vue

+ 10
- 4
src/views/homesteadSurvey/add4.vue View File

@@ -104,9 +104,8 @@
<p v-if="zjdzdxx.surveyStatus == '4'" style="width:32%;border: 1px solid transparent;background: #FFA500;padding: 5px 0;border-radius: 50px;"> <p v-if="zjdzdxx.surveyStatus == '4'" style="width:32%;border: 1px solid transparent;background: #FFA500;padding: 5px 0;border-radius: 50px;">
<span style="font-size: 14px;color: #fff;margin-left: 5px;" @click="bhyyLook()">驳回原因</span> <span style="font-size: 14px;color: #fff;margin-left: 5px;" @click="bhyyLook()">驳回原因</span>
</p> </p>
<p style="width:32%;border: 1px solid transparent;background: #22B7F2;padding: 5px 0;border-radius: 50px;">
<span v-if="permission == 'true'" style="font-size: 14px;color: #fff;margin-left: 5px;" @click="qmqr()">签名确认</span>
<span v-if="permission == 'false'" style="font-size: 14px;color: #fff;margin-left: 5px;" @click="qmqr()">签名图片</span>
<p v-if="showSh" style="width:32%;border: 1px solid transparent;background: #22B7F2;padding: 5px 0;border-radius: 50px;">
<span style="font-size: 14px;color: #fff;margin-left: 5px;" @click="qmqr()">{{qzqr}}</span>
</p> </p>
<p v-if = "showDcsh" style="width:32%;border: 1px solid #22B7F2;background: #ffffff;padding: 5px 0;border-radius: 50px;"> <p v-if = "showDcsh" style="width:32%;border: 1px solid #22B7F2;background: #ffffff;padding: 5px 0;border-radius: 50px;">
<span style="font-size: 14px;color: #22B7F2;margin-left: 5px;" @click="dcsh()">调查审核</span> <span style="font-size: 14px;color: #22B7F2;margin-left: 5px;" @click="dcsh()">调查审核</span>
@@ -210,6 +209,8 @@ export default {
dcshShow:false, dcshShow:false,
showesign:false, showesign:false,
showDcsh:false, showDcsh:false,
qzqr:"签名确认",
showSh:false,
loading:false, loading:false,
finished:false, finished:false,
countyhc:1, countyhc:1,
@@ -254,6 +255,12 @@ export default {
if(response.data.surveyStatus === "3" && businessLevel === "2"){ if(response.data.surveyStatus === "3" && businessLevel === "2"){
this.showDcsh = true; this.showDcsh = true;
} }
if(response.data.surveyStatus === '5' || response.data.surveyStatus === '3'){
this.qzqr = "签名图片";
}else{
this.qzqr = "签名确认";
}
this.showSh = true;
}); });
this.getList(); this.getList();
} }
@@ -361,7 +368,6 @@ export default {
getZjdzd(this.zjdzdxx.id).then((response) => { getZjdzd(this.zjdzdxx.id).then((response) => {
localStorage.setItem("zjdzdxxItem",JSON.stringify(response.data)) localStorage.setItem("zjdzdxxItem",JSON.stringify(response.data))
location.reload(); location.reload();
this.showesign = false;
}); });
}); });




+ 7
- 6
src/views/homesteadSurvey/index.vue View File

@@ -330,13 +330,13 @@
} }
listTask(params).then((response) => { listTask(params).then((response) => {
if(response.rows.length>0&&this.totalList.length<response.total){ if(response.rows.length>0&&this.totalList.length<response.total){
this.totalList = response.rows.map(function(item) {
response.rows.map(function(item) {
if(item.zjdwcsl === 0){ if(item.zjdwcsl === 0){
item.zjdslz = 0; item.zjdslz = 0;
}else{ }else{
item.zjdslz = 100; item.zjdslz = 100;
} }
return item;
_this.totalList.push(item)
}) })
this.countyhc++ this.countyhc++
this.loading = false; this.loading = false;
@@ -358,13 +358,14 @@
} }
listTask(params).then((response) => { listTask(params).then((response) => {
if(response.rows.lenght>0&&this.doneList.length<response.total){ if(response.rows.lenght>0&&this.doneList.length<response.total){
this.doneList = response.rows.map(function(item){
response.rows.map(function(item){
if(item.zjdwcsl === 0){ if(item.zjdwcsl === 0){
item.zjdslz = 0; item.zjdslz = 0;
}else{ }else{
item.zjdslz = 100; item.zjdslz = 100;
} }
return item;
_this.doneList.push(item)

}) })
this.countwhc++ this.countwhc++
this.loading = false; this.loading = false;
@@ -386,13 +387,13 @@
} }
listTask(params).then((response) => { listTask(params).then((response) => {
if(response.rows.length>0&&this.todoList.length<response.total){ if(response.rows.length>0&&this.todoList.length<response.total){
this.todoList = response.rows.map(function(item){
response.rows.map(function(item){
if(item.zjdwcsl === 0){ if(item.zjdwcsl === 0){
item.zjdslz = 0; item.zjdslz = 0;
}else{ }else{
item.zjdslz = 100; item.zjdslz = 100;
} }
return item;
_this.todoList.push(item);
}) })
this.countqb++ this.countqb++
this.loading = false; this.loading = false;


+ 1
- 0
src/views/homesteadSurvey/nhAdd.vue View File

@@ -304,6 +304,7 @@ export default {
let data = this.$route.query; let data = this.$route.query;
this.permission = localStorage.getItem("executePermission"); this.permission = localStorage.getItem("executePermission");
this.form = data; this.form = data;
console.info(this.form);
if(this.form.nhdm == null){ if(this.form.nhdm == null){
this.$set(this.form, 'zjlx', "01"); this.$set(this.form, 'zjlx', "01");
this.$set(this.form, 'xb', "1"); this.$set(this.form, 'xb', "1");


+ 1
- 8
src/views/homesteadSurvey/shyqrAdd.vue View File

@@ -91,7 +91,7 @@
label="农民房屋代码" label="农民房屋代码"
placeholder="请选择" placeholder="请选择"
v-model="form.nmfwdm" v-model="form.nmfwdm"
@click="checkNmfwQx"
@click="shownmfwdm = true"
input-align="right" input-align="right"
right-icon="arrow-down" right-icon="arrow-down"
/> />
@@ -411,13 +411,6 @@ export default {
this.shownhdm = true; this.shownhdm = true;
} }
}, },
checkNmfwQx(){
if(this.form.id != null){
this.shownmfwdm = false;
}else{
this.shownmfwdm = true;
}
},
/** 模糊查询人员信息 */ /** 模糊查询人员信息 */
remoteTransfereeMethod(query) { remoteTransfereeMethod(query) {
if (query !== "") { if (query !== "") {


Loading…
Cancel
Save