申请用户信息
-申请用户信息
+家庭成员信息
家庭成员信息
现宅基地及农房状况
现宅基地及农房状况
-拟申请宅基地及建房情况
+拟申请宅基地及建房情况
-申请理由
-申请理由
+会议纪要
-宅基地使用承诺书
-{{item.fileTypeName}}
+宅基地开工
-宅基地开工
+宅基地验收申请
-宅基地验收申请
+From 4703678facee9cb58d461e2348d5489f26f4a471 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=BA=9E=E4=B8=9C=E6=97=AD?= <850374051@qq.com>
Date: Wed, 18 Aug 2021 17:55:20 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AE=85=E5=9F=BA=E5=9C=B0=E7=94=B3=E8=AF=B7?=
=?UTF-8?q?=E6=8E=A5=E5=8F=A3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/application/index.js | 54 ++
src/main.js | 2 +
src/router/index.js | 2 +-
src/utils/data.js | 8 +
src/views/flowChart/index.vue | 28 +
src/views/homeApplication/applicationForm.vue | 657 ++++++++++++++----
src/views/homeApplication/applicationList.vue | 75 +-
7 files changed, 674 insertions(+), 152 deletions(-)
create mode 100644 src/api/application/index.js
create mode 100644 src/views/flowChart/index.vue
diff --git a/src/api/application/index.js b/src/api/application/index.js
new file mode 100644
index 00000000..3bab7b53
--- /dev/null
+++ b/src/api/application/index.js
@@ -0,0 +1,54 @@
+import request from '@/utils/request'
+
+
+//查询列表
+export function getList(data){
+ return request({
+ url:'/house/mobile/proposer/list',
+ method:'get',
+ params:data
+ })
+}
+
+//获取申请单明细
+export function allInformation(id){
+ return request({
+ url:'/house/allinformation/'+id,
+ method:'get',
+ })
+}
+
+//获取文件配置
+export function treeSingleProcessView(data){
+ return request({
+ url:'/system/attachmentConfig/treeSingleProcessView',
+ method:'get',
+ params:data
+ })
+}
+
+//获取上传附件
+export function attachmentFind(data){
+ return request({
+ url:'/system/attachment/find',
+ method:'get',
+ params:data
+ })
+}
+
+//保存申请
+export function saveHouseBaseInfo(data){
+ return request({
+ url:'/house/custom/saveHouseBaseInfo',
+ method:'post',
+ data:data
+ })
+}
+
+//户型
+export function houseList(){
+ return request({
+ url:'/house/type/list',
+ method:'get'
+ })
+}
diff --git a/src/main.js b/src/main.js
index f1fd1c4e..82f9327f 100644
--- a/src/main.js
+++ b/src/main.js
@@ -14,10 +14,12 @@ import './permission' // permission control
import global from '@/utils/global';
import { getDicts } from "@/utils/data";
+import { houseGetDicts } from '@/utils/data';
import { selectDictLabel , onClickLeft , getNowFormatDate } from "@/utils/utils";
//全局方法挂载
Vue.prototype.getDicts = getDicts
+Vue.prototype.houseGetDicts = houseGetDicts
Vue.prototype.selectDictLabel = selectDictLabel
Vue.prototype.onClickLeft = onClickLeft
Vue.prototype.getNowFormatDate = getNowFormatDate
diff --git a/src/router/index.js b/src/router/index.js
index 4e3bfac5..23b3bf4b 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -538,7 +538,7 @@ export const constantRoutes = [
},
{
path: '/applicationForm',
- name: 'authenticRightLogin',
+ name: 'applicationForm',
meta: {
title: '农村宅基地申请表',
hidden: true,
diff --git a/src/utils/data.js b/src/utils/data.js
index 154a0321..37b18cb6 100644
--- a/src/utils/data.js
+++ b/src/utils/data.js
@@ -7,3 +7,11 @@ export function getDicts(type) {
method: 'get',
})
}
+
+// 根据字典类型查询字典数据信息
+export function houseGetDicts(dictType) {
+ return request({
+ url: '/system/dict/data/type/' + dictType,
+ method: 'get'
+ })
+}
diff --git a/src/views/flowChart/index.vue b/src/views/flowChart/index.vue
new file mode 100644
index 00000000..254c3033
--- /dev/null
+++ b/src/views/flowChart/index.vue
@@ -0,0 +1,28 @@
+
+
农村宅基地和建房(规划许可)申请表
申请用户信息
-申请用户信息
+家庭成员信息
家庭成员信息
现宅基地及农房状况
现宅基地及农房状况
-拟申请宅基地及建房情况
+拟申请宅基地及建房情况
-申请理由
-申请理由
+会议纪要
-宅基地使用承诺书
-{{item.fileTypeName}}
+宅基地开工
-宅基地开工
+宅基地验收申请
-宅基地验收申请
+