Sfoglia il codice sorgente

宅基地申请流程优化

wulanhaote
hbao 2 anni fa
parent
commit
ece1171d87
3 ha cambiato i file con 994 aggiunte e 68 eliminazioni
  1. +8
    -0
      src/api/onlineHome/homestead/application.js
  2. +4
    -0
      src/views/onlineHome/homestead/homeApplication/applicationList.vue
  3. +982
    -68
      src/views/onlineHome/homestead/homeApplication/proposerLite.vue

+ 8
- 0
src/api/onlineHome/homestead/application.js Vedi File

@@ -222,3 +222,11 @@ export function getWorkflow() {
method: 'get'
})
}

//驳回提交清空历史审批记录
export function updateOpretion(id) {
return request({
url: '/house/custom/updateOpretion/' + id,
method: 'post'
})
}

+ 4
- 0
src/views/onlineHome/homestead/homeApplication/applicationList.vue Vedi File

@@ -63,6 +63,7 @@
<script>
import { getList , removeList } from "@/api/onlineHome/homestead/application";
import { customSubmit, customSubmitWLHT} from "@/api/onlineHome/homestead/application";
import {updateOpretion} from "@/api/onlineHome/homestead/application";
export default {
name: "applicationList",
data() {
@@ -182,6 +183,9 @@ export default {
message: '您确认提交申请草稿?',
}).then(() => {
let func = 1 || item.processKey.endsWith('WLHT') ? customSubmitWLHT : customSubmit; //TODO: 总是走简化流程
if(item.auditStatus == '2'){
updateOpretion(item.id).then();
}
func(item.id).then((resp) => {
this.$toast.success("提交成功");
this.refresh();


+ 982
- 68
src/views/onlineHome/homestead/homeApplication/proposerLite.vue
File diff soppresso perché troppo grande
Vedi File


Caricamento…
Annulla
Salva