|
|
@@ -86,7 +86,7 @@ |
|
|
|
</template> |
|
|
|
</van-cell> |
|
|
|
</van-list> |
|
|
|
<van-dialog v-model="outsideOpen" title="外村农户" show-cancel-button confirmButtonText="保存" cancelButtonText="关闭" @confirm="outsideSubmitForm" > |
|
|
|
<van-dialog v-model="outsideOpen" title="外村农户" show-cancel-button confirmButtonText="保存" cancelButtonText="关闭" @confirm="outsideSubmitForm" @cancel="outsideCancel" > |
|
|
|
<wcnhList style="height: 600px;overflow: auto;" ref="wcnh"/> |
|
|
|
</van-dialog> |
|
|
|
<!-- </van-pull-refresh>--> |
|
|
@@ -4921,6 +4921,10 @@ |
|
|
|
value.indexOf('zrzSx') == -1 ? this.zrzSx = false : this.zrzSx = true; |
|
|
|
value.indexOf('fsssSx') == -1 ? this.fsssSx = false : this.fsssSx = true; |
|
|
|
}, |
|
|
|
/** 外村农户关闭事件 */ |
|
|
|
outsideCancel(){ |
|
|
|
this.$refs.wcnh.clearSelection(); |
|
|
|
}, |
|
|
|
/** 外村农户提交按钮 */ |
|
|
|
outsideSubmitForm() { |
|
|
|
let wcnhData = this.$refs.wcnh.wcnhData; |
|
|
@@ -4936,6 +4940,7 @@ |
|
|
|
if(response.code != 200) throw response.msg; |
|
|
|
this.$toast.clear(); |
|
|
|
this.$toast("新增成功"); |
|
|
|
this.$refs.wcnh.clearSelection(); |
|
|
|
this.outsideOpen = false; |
|
|
|
this.getList(); |
|
|
|
this.outDiglogStatus = true; |
|
|
|