Przeglądaj źródła

宅基地系统-宅基地申请文件验证

rongxin_test
Xyq123* 1 rok temu
rodzic
commit
de4fbcfec2
3 zmienionych plików z 1548 dodań i 1521 usunięć
  1. +4
    -4
      src/components/home/HomeApplyUploadComp.vue
  2. +1
    -1
      src/views/sunVillage_info/homeApplication/applicationNewList.vue
  3. +1543
    -1516
      src/views/sunVillage_info/homeApplication/proposerLiteNew.vue

+ 4
- 4
src/components/home/HomeApplyUploadComp.vue Wyświetl plik

@@ -84,7 +84,7 @@ export default {
file.response = resp;
console.log(resp);
file.fileList = item.fileList;
this.onFileListChanged("ADD", resp.id);
this.onFileListChanged("ADD", resp);
this.setFileStatus(file, 'done', '文件上传成功');
this.$emit('onUploadSuccess', file);
}
@@ -146,15 +146,15 @@ export default {
return UfileList;
}
},
onFileListChanged(type, id) {
onFileListChanged(type, data) {
if(this.proposerId != -1) return;
if(type === "ADD")
{
this.newAttachments.push(id);
this.newAttachments.push(data);
}
else if(type === "REMOVE")
{
let index = this.newAttachments.indexOf(id);
let index = this.newAttachments.indexOf(data.id);
if(index !== -1)
this.newAttachments.splice(index, 1);
}


+ 1
- 1
src/views/sunVillage_info/homeApplication/applicationNewList.vue Wyświetl plik

@@ -53,7 +53,7 @@
<van-button square text="提交" type="primary" v-if="item.homeApplyStatus=='11' || item.homeApplyStatus=='31' || item.homeApplyStatus=='71'" @click="submitApplyProposer(item)" class="delete-button" />
</van-col>
<van-col>
<van-button square text="修改" type="info" v-if="item.homeApplyStatus=='11' || item.homeApplyStatus=='31' || item.homeApplyStatus=='71'" :to="{name:'sunVillageInfoProposerLite', query: {id:item.id, type: 'modify'}}" class="delete-button" />
<van-button square text="修改" type="info" v-if="item.homeApplyStatus=='11' || item.homeApplyStatus=='31' || item.homeApplyStatus=='71'" :to="{name:'sunVillageInfoProposerLiteNew', query: {id:item.id, type: 'modify'}}" class="delete-button" />
</van-col>
<van-col>
<van-button square text="删除" type="danger" v-if="item.homeApplyStatus=='11'" @click="deleteList(item.id,index)" class="delete-button" />


+ 1543
- 1516
src/views/sunVillage_info/homeApplication/proposerLiteNew.vue
Plik diff jest za duży
Wyświetl plik


Ładowanie…
Anuluj
Zapisz