954f3d06 by 田浩浩

已合并

2 parents 917f5b8f 75abc20f
...@@ -71,6 +71,12 @@ ...@@ -71,6 +71,12 @@
71 .acceptance_information ul li p { 71 .acceptance_information ul li p {
72 display: inline-block; 72 display: inline-block;
73 } 73 }
74 .informationList p {
75 display: block!important;
76 }
77 .informationList p span {
78 width: 80px!important;
79 }
74 /* -----------受理流程-------------- */ 80 /* -----------受理流程-------------- */
75 .acceptance_process { 81 .acceptance_process {
76 margin-top: 20px; 82 margin-top: 20px;
......
...@@ -85,4 +85,8 @@ ...@@ -85,4 +85,8 @@
85 .buyer_information ul li{ 85 .buyer_information ul li{
86 line-height: 36px; 86 line-height: 36px;
87 box-sizing: border-box; 87 box-sizing: border-box;
88 }
89 .taxItem {
90 width: 33%!important;
91 margin-bottom: 5px;
88 } 92 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -72,6 +72,12 @@ ...@@ -72,6 +72,12 @@
72 .acceptance_information ul li p { 72 .acceptance_information ul li p {
73 display: inline-block; 73 display: inline-block;
74 } 74 }
75 .informationList p {
76 display: block!important;
77 }
78 .informationList p span {
79 width: 80px!important;
80 }
75 81
76 /* -----------受理流程-------------- */ 82 /* -----------受理流程-------------- */
77 .acceptance_process { 83 .acceptance_process {
......
...@@ -5,4 +5,10 @@ layui.use('element', function () { ...@@ -5,4 +5,10 @@ layui.use('element', function () {
5 //console.log(elem) 5 //console.log(elem)
6 layer.msg(elem.text()); 6 layer.msg(elem.text());
7 }); 7 });
8 });
...\ No newline at end of file ...\ No newline at end of file
8 });
9 $(function(){
10 $('#username').text(getCookie().username)
11 $('#phone').text(getCookie().phone)
12 $('#zjhm').text(getCookie().zjhm)
13 $('#recordtime').text(getCookie().recordtime)
14 })
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -164,7 +164,7 @@ function addCreatSLSQ(jsondata) { ...@@ -164,7 +164,7 @@ function addCreatSLSQ(jsondata) {
164 "bsmQl": jsondata.bsm_ql, 164 "bsmQl": jsondata.bsm_ql,
165 "ywid": business.ywid, 165 "ywid": business.ywid,
166 "businessNo": business.businessno, 166 "businessNo": business.businessno,
167 "userid": "0026609ddc6d2afabaa3c9b0ea3b0ec3" 167 "userid": getCookie().userid
168 }; 168 };
169 $.ajax({ 169 $.ajax({
170 type: "post", //提交方式 170 type: "post", //提交方式
......
1 var list;
2 var houseInfo;
1 $(function () { 3 $(function () {
2 layui.use('element', function () { 4 layui.use('element', function () {
3 let element = layui.element; 5 let element = layui.element;
4 }); 6 });
5 addTabs('#wssq') 7 addTabs('#wssq')
6 setAcceptFlow(GetQueryString('bsm_slsq'),GetQueryString('businessno')); 8 setAcceptFlow(GetQueryString('bsm_slsq'),GetQueryString('businessno'));
7 layui.use('laytpl', function () { 9
8 laytpl = layui.laytpl; 10
9 var getTpl = document.getElementById('progress').innerHTML 11 list = getApplyRecord(GetQueryString('bsm_slsq'),GetQueryString('businessno'));
10 , view = document.getElementById('app_progress'); 12 // 房屋信息
11 laytpl(getTpl).render(data, function (html) { 13 houseInfo = getFDCQ2(GetQueryString('bsm_slsq'));
12 view.innerHTML = html; 14 console.log(list , houseInfo);
13 }); 15 $('#typesPower p').text(list.qllxmc);
14 16 $('#businessType p').text(list.shortname);
15 layui.use(['element'], function () { 17 $('#acceptanceNumber p').text(list.wwsqbh);
16 var element = layui.element; 18 $('#dateAcceptance p').text(list.sqrq);
17 //初始化动态元素,一些动态生成的元素如果不设置初始化,将不会有默认的动态效果 19 $('#unitNumber p').text(houseInfo.bdcdyh);
18 element.init(); 20 $('#titleCertificate p').text(houseInfo.bdcqzh);
19 }); 21 $('#beLocated p').text(houseInfo.fdzl);
20 }); 22 $('#area p').text(houseInfo.jzmj);
23 // 买方信息
24 var listItem;
25 for (var i = 0; i < list.sqrList.length; i++) {
26 listItem = '<li>'
27 listItem += '<p><span>姓名</span>:'+list.sqrList[i].sqrmc+'</p>'
28 if (list.sqrList[i].sqrzj == 1) {
29 listItem += '<p><span>证件类型</span>:身份证</p>'
30 }
31 listItem += '<p><span>证件号码</span>:'+list.sqrList[i].zjhm+'</p>'
32 listItem += '<p><span>联系电话</span>:'+list.sqrList[i].dhhm+'</p>'
33 $('#informationList').append(listItem)
34 }
21 }) 35 })
......
1 var list;
2 var houseInfo;
1 $(function () { 3 $(function () {
2 layui.use('element', function () { 4 layui.use('element', function () {
3 let element = layui.element; //导航的hover效果、二级菜单等功能,需要依赖element模块 5 let element = layui.element; //导航的hover效果、二级菜单等功能,需要依赖element模块
...@@ -8,20 +10,30 @@ $(function () { ...@@ -8,20 +10,30 @@ $(function () {
8 }); 10 });
9 addTabs('#wssq') 11 addTabs('#wssq')
10 setAcceptFlow(GetQueryString('bsm_slsq'),GetQueryString('businessno')); 12 setAcceptFlow(GetQueryString('bsm_slsq'),GetQueryString('businessno'));
11 layui.use('laytpl', function () { 13 list = getApplyRecord(GetQueryString('bsm_slsq'),GetQueryString('businessno'));
12 laytpl = layui.laytpl; 14 // 房屋信息
13 var getTpl = document.getElementById('progress').innerHTML 15 console.log(list , houseInfo);
14 , view = document.getElementById('app_progress'); 16 houseInfo = getFDCQ2(GetQueryString('bsm_slsq'));
15 laytpl(getTpl).render(data, function (html) { 17 $('#typesPower p').text(list.qllxmc);
16 view.innerHTML = html; 18 $('#businessType p').text(list.shortname);
17 }); 19 $('#acceptanceNumber p').text(list.wwsqbh);
18 20 $('#dateAcceptance p').text(list.sqrq);
19 layui.use(['element'], function () { 21 $('#unitNumber p').text(houseInfo.bdcdyh);
20 var element = layui.element; 22 $('#titleCertificate p').text(houseInfo.bdcqzh);
21 //初始化动态元素,一些动态生成的元素如果不设置初始化,将不会有默认的动态效果 23 $('#beLocated p').text(houseInfo.fdzl);
22 element.init(); 24 $('#area p').text(houseInfo.jzmj);
23 }); 25 // 买方信息
24 }); 26 var listItem;
27 for (var i = 0; i < list.sqrList.length; i++) {
28 listItem = '<li>'
29 listItem += '<p><span>姓名</span>:'+list.sqrList[i].sqrmc+'</p>'
30 if (list.sqrList[i].sqrzj == 1) {
31 listItem += '<p><span>证件类型</span>:身份证</p>'
32 }
33 listItem += '<p><span>证件号码</span>:'+list.sqrList[i].zjhm+'</p>'
34 listItem += '<p><span>联系电话</span>:'+list.sqrList[i].dhhm+'</p>'
35 $('#informationList').append(listItem)
36 }
25 }) 37 })
26 //下一步事件 38 //下一步事件
27 function skipClick(){ 39 function skipClick(){
......
...@@ -30,6 +30,12 @@ $(function () { ...@@ -30,6 +30,12 @@ $(function () {
30 $('#userName').val(userInfo.username) 30 $('#userName').val(userInfo.username)
31 $('#idCard').val(userInfo.zjhm) 31 $('#idCard').val(userInfo.zjhm)
32 $('#phone').val(userInfo.phone) 32 $('#phone').val(userInfo.phone)
33 // 获取房屋信息
34 let houseInfo = getFDCQ2(GetQueryString('bsm_slsq'));
35 $('#unitNumber p').text(houseInfo.bdcdyh);
36 $('#titleCertificate p').text(houseInfo.bdcqzh);
37 $('#beLocated p').text(houseInfo.fdzl);
38 $('#area p').text(houseInfo.jzmj);
33 }) 39 })
34 addTabs('#wssq') 40 addTabs('#wssq')
35 // form 表单 41 // form 表单
...@@ -237,9 +243,6 @@ function _saveSQR() { ...@@ -237,9 +243,6 @@ function _saveSQR() {
237 }); 243 });
238 d.userid = getCookie('myCookie').userid 244 d.userid = getCookie('myCookie').userid
239 sqrList.push(d) 245 sqrList.push(d)
240 sqrList.forEach((item, index)=> {
241 item.sqrlb = slsqxx.sqrlb
242 })
243 // 领证方式-邮寄地址 246 // 领证方式-邮寄地址
244 247
245 var addMailRecordRequest = {}; 248 var addMailRecordRequest = {};
...@@ -259,6 +262,7 @@ function _saveSQR() { ...@@ -259,6 +262,7 @@ function _saveSQR() {
259 'bsmSlsq': slsqxx.bsmSlsq, 262 'bsmSlsq': slsqxx.bsmSlsq,
260 'gyfsbm': 1, 263 'gyfsbm': 1,
261 'sqrlx': 1, 264 'sqrlx': 1,
265 'sqrlb': slsqxx.sqrlb,
262 'gyfsmc': '单独所有', 266 'gyfsmc': '单独所有',
263 'lzfs': lzfs, 267 'lzfs': lzfs,
264 'sqrList':sqrList, 268 'sqrList':sqrList,
......
1 $(function () { 1 $(function () {
2 layui.use('element', function () { 2 layui.use('element', function () {
3 let element = layui.element; //导航的hover效果、二级菜单等功能,需要依赖element模块
4 }); 3 });
4
5 addTabs('#wssq') 5 addTabs('#wssq')
6 setAcceptFlow(GetQueryString('bsm_slsq'),GetQueryString('businessno')); 6 setAcceptFlow(GetQueryString('bsm_slsq'),GetQueryString('businessno'));
7
8 layui.use('laytpl', function () {
9 laytpl = layui.laytpl;
10 var getTpl = document.getElementById('progress').innerHTML
11 , view = document.getElementById('app_progress');
12 laytpl(getTpl).render(data, function (html) {
13 view.innerHTML = html;
14 });
15
16 layui.use(['element'], function () {
17 var element = layui.element;
18 //初始化动态元素,一些动态生成的元素如果不设置初始化,将不会有默认的动态效果
19 element.init();
20 });
21 });
22
23 Webcam.set({ 7 Webcam.set({
24 width: 320, 8 width: 320,
25 height: 240, 9 height: 240,
...@@ -39,5 +23,46 @@ function take_snapshot() { ...@@ -39,5 +23,46 @@ function take_snapshot() {
39 } 23 }
40 //下一步事件 24 //下一步事件
41 function skipClick(){ 25 function skipClick(){
42 skipNextPage(GetQueryString('bsm_slsq'),GetQueryString('businessno'));
43 }
...\ No newline at end of file ...\ No newline at end of file
26 if(_SFYz()) {
27 $.ajax({
28 type: "post", //提交方式
29 url: portal.api_url + "/portal/FillInformation/ToZRF",//路径
30 dataType: "json",
31 contentType: 'application/json',
32 data: JSON.stringify({
33 "bsmSlsq": GetQueryString('bsm_slsq'),
34 }),
35 //数据,这里使用的是Json格式进行传输
36 success: function (result) {//返回数据根据结果进行相应的处理
37 if (result.code == 200 ) {
38 skipNextPage(GetQueryString('bsm_slsq'),GetQueryString('businessno'));
39 }
40 }
41 });
42 }
43 }
44 // 身份验证
45 function _SFYz() {
46 var isVerification;
47 $.ajax({
48 type: "post", //提交方式
49 url: portal.api_url + "/portal/FillInformation/SFYz",//路径
50 dataType: "json",
51 contentType: 'application/json',
52 async: false,
53 data: JSON.stringify({
54 "dhhm": $('#phone').val(),
55 "yzm": $('#code').val()
56 }),
57 //数据,这里使用的是Json格式进行传输
58 success: function (result) {//返回数据根据结果进行相应的处理
59 if (result.code == 200 ) {
60 isVerification = true
61 }else {
62 isVerification = false
63 }
64 }
65 });
66 return isVerification
67 }
68 // /portal/FillInformation/ToZRF转给转入方进行流转
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -5,10 +5,46 @@ $(function () { ...@@ -5,10 +5,46 @@ $(function () {
5 addTabs('#wssq') 5 addTabs('#wssq')
6 setAcceptFlow(GetQueryString('bsm_slsq'),GetQueryString('businessno')); 6 setAcceptFlow(GetQueryString('bsm_slsq'),GetQueryString('businessno'));
7 // 获取页面信息 7 // 获取页面信息
8 dataList = getApplyRecord(GetQueryString('bsm_slsq'), GetQueryString('businessno')); 8 _taxVerification(GetQueryString('bsm_slsq'), GetQueryString('businessno'))
9 console.log(dataList)
10 }) 9 })
11 //下一步事件 10 //下一步事件
12 function skipClick(){ 11 function skipClick(){
13 skipNextPage(GetQueryString('bsm_slsq'),GetQueryString('businessno')); 12 skipNextPage(GetQueryString('bsm_slsq'),GetQueryString('businessno'));
13 }
14
15 function _taxVerification(bsm_slsq, businessno) {
16 var li, listItem;
17 $.ajax({
18 type: "get", //提交方式
19 url: portal.api_url + "/portal/FillInformation/taxVerification",//路径
20 dataType: "json",
21 data: {
22 "bsmSlsq": bsm_slsq,
23 "businessNo": businessno,
24 },
25 //数据,这里使用的是Json格式进行传输
26 success: function (result) {//返回数据根据结果进行相应的处理
27 if (result.code == 200 && result.data != null) {
28 let data = result.data
29 $('#acceptanceUnit p').text(data.sldw)
30 $('#paymentTime p').text(data.jfsj)
31 $('#serialNumber p').text(data.sslsh)
32 for (var i = 0; i < data.taxList.length; i++) {
33 li = '<li class="taxItem"><span>税费项目</span>:<p>'+data.taxList[i].sfxm+'</p></li>'
34 li += '<li class="taxItem"><span>税费</span>:<p>'+data.taxList[i].sf+'元</p></li>'
35 $('.paymentDetails').append(li);
36 }
37 for (var i = 0; i < data.sqrList.length; i++) {
38 listItem = '<li>'
39 listItem += '<p><span>姓名</span>:'+data.sqrList[i].sqrmc+'</p>'
40 if (data.sqrList[i].sqrzj == 1) {
41 listItem += '<p><span>证件类型</span>:身份证</p>'
42 }
43 listItem += '<p><span>证件号码</span>:'+data.sqrList[i].zjhm+'</p>'
44 listItem += '<p><span>联系电话</span>:'+data.sqrList[i].dhhm+'</p>'
45 $('#informationList').append(listItem)
46 }
47 }
48 }
49 });
14 } 50 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -124,6 +124,28 @@ function createBusinesseFlow(ywid) { ...@@ -124,6 +124,28 @@ function createBusinesseFlow(ywid) {
124 window.open(portal.rootPath + business.stepList[0].pageurl + "?ywid=" + ywid + "&businessno=" + business.businessno, "_self") 124 window.open(portal.rootPath + business.stepList[0].pageurl + "?ywid=" + ywid + "&businessno=" + business.businessno, "_self")
125 } 125 }
126 126
127 // 房屋独幢信息读取
128 function getFDCQ2(bsm_slsq) {
129 let bdc = null;
130 $.ajax({
131 type: "post", //提交方式
132 url: portal.api_url + "/portal/bdcqlReadService/getFDCQ2",//路径
133 dataType: "json",
134 async: false,
135 data: {
136 "bsm_ql": bsm_slsq,
137 },
138 //数据,这里使用的是Json格式进行传输
139 success: function (result) {//返回数据根据结果进行相应的处理
140 if (result.code == 200 && result.data != null) {
141 bdc = result.data;
142 }
143 }
144 });
145 return bdc;
146 }
147
148
127 149
128 //工作箱调取流程方法 150 //工作箱调取流程方法
129 function getWorkBoxFLow(bsm_slsq, businessno) { 151 function getWorkBoxFLow(bsm_slsq, businessno) {
......
...@@ -49,6 +49,8 @@ $(function () { ...@@ -49,6 +49,8 @@ $(function () {
49 }); 49 });
50 }); 50 });
51 }) 51 })
52 $('#zjhm').text(getCookie().zjhm)
53 $('#username').text(getCookie().username )
52 }) 54 })
53 55
54 // 列表操作 56 // 列表操作
...@@ -79,7 +81,7 @@ function _applyBusinessWiat(currentPage = 1) { ...@@ -79,7 +81,7 @@ function _applyBusinessWiat(currentPage = 1) {
79 url: portal.api_url + "/portal/WorkBoxService/applyBusinessWait",//路径 81 url: portal.api_url + "/portal/WorkBoxService/applyBusinessWait",//路径
80 dataType: "json", 82 dataType: "json",
81 data: { 83 data: {
82 "userId": '0026609ddc6d2afabaa3c9b0ea3b0ec3', 84 "userId": getCookie().userid,
83 "currentPage": currentPage, 85 "currentPage": currentPage,
84 "pageSize": 10 86 "pageSize": 10
85 }, 87 },
...@@ -102,7 +104,7 @@ function _applyBusinessIn(currentPage = 1) { ...@@ -102,7 +104,7 @@ function _applyBusinessIn(currentPage = 1) {
102 url: portal.api_url + "/portal/WorkBoxService/applyBusinessIn",//路径 104 url: portal.api_url + "/portal/WorkBoxService/applyBusinessIn",//路径
103 dataType: "json", 105 dataType: "json",
104 data: { 106 data: {
105 "userId": '0026609ddc6d2afabaa3c9b0ea3b0ec3', 107 "userId": getCookie().userid,
106 "currentPage": currentPage, 108 "currentPage": currentPage,
107 "pageSize": 10 109 "pageSize": 10
108 }, 110 },
...@@ -126,7 +128,7 @@ function _applyBusinessEnd(currentPage = 1) { ...@@ -126,7 +128,7 @@ function _applyBusinessEnd(currentPage = 1) {
126 url: portal.api_url + "/portal/WorkBoxService/applyBusinessEnd",//路径 128 url: portal.api_url + "/portal/WorkBoxService/applyBusinessEnd",//路径
127 dataType: "json", 129 dataType: "json",
128 data: { 130 data: {
129 "userId": '0026609ddc6d2afabaa3c9b0ea3b0ec3', 131 "userId": getCookie().userid,
130 "currentPage": currentPage, 132 "currentPage": currentPage,
131 "pageSize": 10 133 "pageSize": 10
132 }, 134 },
...@@ -150,7 +152,7 @@ function _applyBusinessRecord(currentPage = 1) { ...@@ -150,7 +152,7 @@ function _applyBusinessRecord(currentPage = 1) {
150 url: portal.api_url + "/portal/WorkBoxService/applyBusinessRecord",//路径 152 url: portal.api_url + "/portal/WorkBoxService/applyBusinessRecord",//路径
151 dataType: "json", 153 dataType: "json",
152 data: { 154 data: {
153 "userId": '0026609ddc6d2afabaa3c9b0ea3b0ec3', 155 "userId": getCookie().userid,
154 "currentPage": currentPage, 156 "currentPage": currentPage,
155 "pageSize": 10 157 "pageSize": 10
156 }, 158 },
...@@ -256,5 +258,5 @@ function dataRendering() { ...@@ -256,5 +258,5 @@ function dataRendering() {
256 258
257 var dataList = { 259 var dataList = {
258 "list": [], 260 "list": [],
259 "userid": '0026609ddc6d2afabaa3c9b0ea3b0ec3' 261 "userid": getCookie().userid
260 }; 262 };
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -8,6 +8,8 @@ layui.use('element', function () { ...@@ -8,6 +8,8 @@ layui.use('element', function () {
8 }); 8 });
9 $(function () { 9 $(function () {
10 _initData() 10 _initData()
11 $('#zjhm').text(getCookie().zjhm)
12 $('#username').text(getCookie().username )
11 }) 13 })
12 // 获取列表信息 14 // 获取列表信息
13 function _initData(currentPage=1) { 15 function _initData(currentPage=1) {
...@@ -90,5 +92,5 @@ function paged(pageCount, curr) { ...@@ -90,5 +92,5 @@ function paged(pageCount, curr) {
90 }) 92 })
91 } 93 }
92 var dataList = { 94 var dataList = {
93 "userid":'0026609ddc6d2afabaa3c9b0ea3b0ec3' 95 "userid":getCookie().userid
94 }; 96 };
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -28,22 +28,19 @@ ...@@ -28,22 +28,19 @@
28 <ul> 28 <ul>
29 <li> 29 <li>
30 <span>姓名:</span> 30 <span>姓名:</span>
31 <p>任超</p> 31 <p id="username"></p>
32 </li> 32 </li>
33 <li> 33 <li>
34 <span>登录时间:</span> 34 <span>登录时间:</span>
35 <p>2020-120-2</p> 35 <p id="recordtime"></p>
36 </li> 36 </li>
37 <li> 37 <li>
38 <span>联系方式:</span> 38 <span>联系方式:</span>
39 <p>1852555224</p> 39 <p id="phone"></p>
40 </li>
41 <li>
42 第25次次登录此平台
43 </li> 40 </li>
44 <li> 41 <li>
45 <span>身份证号码:</span> 42 <span>身份证号码:</span>
46 <p>61012419930545464</p> 43 <p id="zjhm"></p>
47 </li> 44 </li>
48 </ul> 45 </ul>
49 </div> 46 </div>
......
...@@ -62,21 +62,25 @@ ...@@ -62,21 +62,25 @@
62 <div class="acceptance_information"> 62 <div class="acceptance_information">
63 <h3>受理信息</h3> 63 <h3>受理信息</h3>
64 <ul> 64 <ul>
65 <li> 65 <li id="typesPower">
66 <span>权利类型:</span> 66 <span>权利类型:</span>
67 <p>房屋等建筑物、构筑物所有权</p> 67 <p>房屋等建筑物、构筑物所有权</p>
68 </li> 68 </li>
69 <li> 69 <li id="businessType">
70 <span>业务类型:</span> 70 <span>业务类型:</span>
71 <p>商品房买卖转移登记(个人)</p> 71 <p>
72 商品房买卖转移登记(个人)
73 </p>
72 </li> 74 </li>
73 <li> 75 <li id="acceptanceNumber">
74 <span>受理编号:</span> 76 <span>受理编号:</span>
75 <p>201022221345</p> 77 <p>78979879879</p>
76 </li> 78 </li>
77 <li> 79 <li id="dateAcceptance">
78 <span>受理日期:</span> 80 <span>受理日期:</span>
79 <p>77987989</p> 81 <p>
82 2023-5-9
83 </p>
80 </li> 84 </li>
81 </ul> 85 </ul>
82 </div> 86 </div>
...@@ -84,23 +88,25 @@ ...@@ -84,23 +88,25 @@
84 <div class="acceptance_information"> 88 <div class="acceptance_information">
85 <h3>屋信息</h3> 89 <h3>屋信息</h3>
86 <ul> 90 <ul>
87 <li> 91 <li id="unitNumber">
88 <span>不动产单元号:</span> 92 <span>不动产单元号:</span>
89 <p>450101 450002 GB 00740W00000000</p> 93 <p>450101 450002 GB 00740W00000000</p>
90 </li> 94 </li>
91 <li> 95 <li id="titleCertificate">
92 <span>产权证号:</span> 96 <span>产权证号:</span>
93 <p>370205004005GB10030</p> 97 <p>70205004005GB10030</p>
94 </li> 98 </li>
95 <li> 99 <li id="beLocated">
96 <span>坐落:</span> 100 <span>坐落:</span>
97 <p>XXX市(县)XXX街道(乡镇)XXX社区(村委会)XXX街(巷)xxx号XXXX楼XXX室</p> 101 <p>
102 XXX市(县)XXX街道(乡镇)XXX社区(村委会)XXX街(巷)xxx号XXXX楼XXX室
103 </p>
98 </li> 104 </li>
99 <li> 105 <li id="area">
100 <span>面积(㎡)</span> 106 <span>面积:</span>
101 <p>568</p> 107 <p>526</p>
102 </li> 108 </li>
103 <li> 109 <li id="recordNo">
104 <span>合同备案号:</span> 110 <span>合同备案号:</span>
105 <p>YS000000000001</p> 111 <p>YS000000000001</p>
106 </li> 112 </li>
...@@ -109,24 +115,7 @@ ...@@ -109,24 +115,7 @@
109 <!-- ------------买方信息-------------- --> 115 <!-- ------------买方信息-------------- -->
110 <div class="acceptance_information"> 116 <div class="acceptance_information">
111 <h3>买方信息</h3> 117 <h3>买方信息</h3>
112 <ul> 118 <ul id="informationList" class="informationList"></ul>
113 <li>
114 <span>姓名:</span>
115 <p>任超1111</p>
116 </li>
117 <li>
118 <span>证件类型:</span>
119 <p>8998798798798</p>
120 </li>
121 <li>
122 <span>证件号码:</span>
123 <p>89798798</p>
124 </li>
125 <li>
126 <span>联系电话:</span>
127 <p>15877343636</p>
128 </li>
129 </ul>
130 </div> 119 </div>
131 <!-- ------------受理流程-------------- --> 120 <!-- ------------受理流程-------------- -->
132 <div class="acceptance_process"> 121 <div class="acceptance_process">
...@@ -179,39 +168,4 @@ ...@@ -179,39 +168,4 @@
179 <script type="text/javascript" src="../../staticJs/down.js"></script> 168 <script type="text/javascript" src="../../staticJs/down.js"></script>
180 <script type="text/javascript" src="../../staticJs/onlineApply/workFlow.js"></script> 169 <script type="text/javascript" src="../../staticJs/onlineApply/workFlow.js"></script>
181 <script type="text/javascript" src="../../staticJs/onlineApply/certificateIssuance.js"></script> 170 <script type="text/javascript" src="../../staticJs/onlineApply/certificateIssuance.js"></script>
182 <script id="progress" type="text/html">
183 {{# layui.each(d.progressList, function(index, item){ }}
184 {{# if(item.stepState==2){ }}
185 <li class="item_proress">
186 <p class="active"></p>
187 <h5>{{item.stepName}}</h5>
188 </li>
189 <li class="layui-progress">
190 <div class="layui-progress-bar" lay-percent="100%"></div>
191 </li>
192 {{# } }}
193 {{# if(item.stepState==1){ }}
194 <li class="item_proress">
195 <p class="activeing"></p>
196 <h5 class="activeingtext">{{item.stepName}}</h5>
197 </li>
198 {{# if(index!=(d.progressList.length-1)){ }}
199 <li class="layui-progress">
200 <div class="layui-progress-bar" lay-percent="50%"></div>
201 </li>
202 {{# } }}
203 {{# } }}
204 {{# if(item.stepState==0){ }}
205 <li class="item_proress">
206 <p></p>
207 <h5>{{item.stepName}}</h5>
208 </li>
209 {{# if(index!=(d.progressList.length-1)){ }}
210 <li class="layui-progress">
211 <div class="layui-progress-bar" lay-percent="0%"></div>
212 </li>
213 {{# } }}
214 {{# } }}
215 {{# }); }}
216 </script>
217 </html> 171 </html>
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -41,21 +41,21 @@ ...@@ -41,21 +41,21 @@
41 <div class="acceptance_information"> 41 <div class="acceptance_information">
42 <h3>受理信息</h3> 42 <h3>受理信息</h3>
43 <ul> 43 <ul>
44 <li> 44 <li id="typesPower">
45 <span>权利类型:</span> 45 <span>权利类型:</span>
46 <p>房屋等建筑物、构筑物所有权</p> 46 <p>房屋等建筑物、构筑物所有权</p>
47 </li> 47 </li>
48 <li> 48 <li id="businessType">
49 <span>业务类型:</span> 49 <span>业务类型:</span>
50 <p> 50 <p>
51 商品房买卖转移登记(个人) 51 商品房买卖转移登记(个人)
52 </p> 52 </p>
53 </li> 53 </li>
54 <li> 54 <li id="acceptanceNumber">
55 <span>受理编号:</span> 55 <span>受理编号:</span>
56 <p>78979879879</p> 56 <p>78979879879</p>
57 </li> 57 </li>
58 <li> 58 <li id="dateAcceptance">
59 <span>受理日期:</span> 59 <span>受理日期:</span>
60 <p> 60 <p>
61 2023-5-9 61 2023-5-9
...@@ -67,25 +67,25 @@ ...@@ -67,25 +67,25 @@
67 <div class="acceptance_information"> 67 <div class="acceptance_information">
68 <h3>房屋信息</h3> 68 <h3>房屋信息</h3>
69 <ul> 69 <ul>
70 <li> 70 <li id="unitNumber">
71 <span>不动产单元号:</span> 71 <span>不动产单元号:</span>
72 <p>450101 450002 GB 00740W00000000</p> 72 <p>450101 450002 GB 00740W00000000</p>
73 </li> 73 </li>
74 <li> 74 <li id="titleCertificate">
75 <span>产权证号:</span> 75 <span>产权证号:</span>
76 <p>70205004005GB10030</p> 76 <p>70205004005GB10030</p>
77 </li> 77 </li>
78 <li> 78 <li id="beLocated">
79 <span>坐落:</span> 79 <span>坐落:</span>
80 <p> 80 <p>
81 XXX市(县)XXX街道(乡镇)XXX社区(村委会)XXX街(巷)xxx号XXXX楼XXX室 81 XXX市(县)XXX街道(乡镇)XXX社区(村委会)XXX街(巷)xxx号XXXX楼XXX室
82 </p> 82 </p>
83 </li> 83 </li>
84 <li> 84 <li id="area">
85 <span>面积:</span> 85 <span>面积:</span>
86 <p>526</p> 86 <p>526</p>
87 </li> 87 </li>
88 <li> 88 <li id="recordNo">
89 <span>合同备案号:</span> 89 <span>合同备案号:</span>
90 <p>YS000000000001</p> 90 <p>YS000000000001</p>
91 </li> 91 </li>
...@@ -94,24 +94,7 @@ ...@@ -94,24 +94,7 @@
94 <!-- ----------买方信息--------- --> 94 <!-- ----------买方信息--------- -->
95 <div class="acceptance_information"> 95 <div class="acceptance_information">
96 <h3>买方信息</h3> 96 <h3>买方信息</h3>
97 <ul> 97 <ul id="informationList" class="informationList"></ul>
98 <li>
99 <span>姓名:</span>
100 <p>郭小美</p>
101 </li>
102 <li>
103 <span>证件类型:</span>
104 <p>身份证</p>
105 </li>
106 <li>
107 <span>证件号码:</span>
108 <p>611312317987</p>
109 </li>
110 <li>
111 <span>联系电话:</span>
112 <p>1977897987987</p>
113 </li>
114 </ul>
115 </div> 98 </div>
116 <!-- ------------受理流程-------------- --> 99 <!-- ------------受理流程-------------- -->
117 <div class="acceptance_process"> 100 <div class="acceptance_process">
...@@ -169,39 +152,4 @@ ...@@ -169,39 +152,4 @@
169 <script type="text/javascript" src="../../staticJs/down.js"></script> 152 <script type="text/javascript" src="../../staticJs/down.js"></script>
170 <script type="text/javascript" src="../../staticJs/onlineApply/workFlow.js"></script> 153 <script type="text/javascript" src="../../staticJs/onlineApply/workFlow.js"></script>
171 <script type="text/javascript" src="../../staticJs/onlineApply/dataReview.js"></script> 154 <script type="text/javascript" src="../../staticJs/onlineApply/dataReview.js"></script>
172 <script id="progress" type="text/html">
173 {{# layui.each(d.progressList, function(index, item){ }}
174 {{# if(item.stepState==2){ }}
175 <li class="item_proress">
176 <p class="active"></p>
177 <h5>{{item.stepName}}</h5>
178 </li>
179 <li class="layui-progress">
180 <div class="layui-progress-bar" lay-percent="100%"></div>
181 </li>
182 {{# } }}
183 {{# if(item.stepState==1){ }}
184 <li class="item_proress">
185 <p class="activeing"></p>
186 <h5 class="activeingtext">{{item.stepName}}</h5>
187 </li>
188 {{# if(index!=(d.progressList.length-1)){ }}
189 <li class="layui-progress">
190 <div class="layui-progress-bar" lay-percent="50%"></div>
191 </li>
192 {{# } }}
193 {{# } }}
194 {{# if(item.stepState==0){ }}
195 <li class="item_proress">
196 <p></p>
197 <h5>{{item.stepName}}</h5>
198 </li>
199 {{# if(index!=(d.progressList.length-1)){ }}
200 <li class="layui-progress">
201 <div class="layui-progress-bar" lay-percent="0%"></div>
202 </li>
203 {{# } }}
204 {{# } }}
205 {{# }); }}
206 </script>
207 </html> 155 </html>
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -36,25 +36,25 @@ ...@@ -36,25 +36,25 @@
36 <div class="acceptance_information"> 36 <div class="acceptance_information">
37 <h3>房屋信息</h3> 37 <h3>房屋信息</h3>
38 <ul> 38 <ul>
39 <li> 39 <li id="unitNumber">
40 <span>不动产单元号:</span> 40 <span>不动产单元号:</span>
41 <p>450101 450002 GB00740 W00000000</p> 41 <p>450101 450002 GB 00740W00000000</p>
42 </li> 42 </li>
43 <li> 43 <li id="titleCertificate">
44 <span>产权证号:</span> 44 <span>产权证号:</span>
45 <p>70205004005GB10030</p> 45 <p>70205004005GB10030</p>
46 </li> 46 </li>
47 <li> 47 <li id="beLocated">
48 <span>坐落:</span> 48 <span>坐落:</span>
49 <p> 49 <p>
50 XXX市(县)XXX街道(乡镇)XXX社区(村委会)XXX街(巷)xxx号XXXX楼XXX室 50 XXX市(县)XXX街道(乡镇)XXX社区(村委会)XXX街(巷)xxx号XXXX楼XXX室
51 </p> 51 </p>
52 </li> 52 </li>
53 <li> 53 <li id="area">
54 <span>面积:</span> 54 <span>面积:</span>
55 <p>526</p> 55 <p>526</p>
56 </li> 56 </li>
57 <li> 57 <li id="recordNo">
58 <span>合同备案号:</span> 58 <span>合同备案号:</span>
59 <p>YS000000000001</p> 59 <p>YS000000000001</p>
60 </li> 60 </li>
......
...@@ -40,11 +40,11 @@ ...@@ -40,11 +40,11 @@
40 <h5>短信认证</h5> 40 <h5>短信认证</h5>
41 <div> 41 <div>
42 <span>手机号</span> 42 <span>手机号</span>
43 <input type="tel" name="phone" placeholder="请输入手机号" class="layui-input"> 43 <input type="tel" id="phone" name="phone" placeholder="请输入手机号" class="layui-input">
44 </div> 44 </div>
45 <div> 45 <div>
46 <span>验证码</span> 46 <span>验证码</span>
47 <input type="tel" name="code" placeholder="请输入验证码" class="layui-input"> 47 <input type="tel" id="code" name="code" placeholder="请输入验证码" class="layui-input">
48 </div> 48 </div>
49 </div> 49 </div>
50 50
...@@ -69,40 +69,4 @@ ...@@ -69,40 +69,4 @@
69 <script type="text/javascript" src="../../staticJs/jquery.webcam.min.js"></script> 69 <script type="text/javascript" src="../../staticJs/jquery.webcam.min.js"></script>
70 <script type="text/javascript" src="../../staticJs/onlineApply/workFlow.js"></script> 70 <script type="text/javascript" src="../../staticJs/onlineApply/workFlow.js"></script>
71 <script type="text/javascript" src="../../staticJs/onlineApply/identityAuthentication.js"></script> 71 <script type="text/javascript" src="../../staticJs/onlineApply/identityAuthentication.js"></script>
72 <script id="progress" type="text/html">
73 {{# layui.each(d.progressList, function(index, item){ }}
74 {{# if(item.stepState==2){ }}
75 <li class="item_proress">
76 <p class="active"></p>
77 <h5>{{item.stepName}}</h5>
78 </li>
79 <li class="layui-progress">
80 <div class="layui-progress-bar" lay-percent="100%"></div>
81 </li>
82 {{# } }}
83 {{# if(item.stepState==1){ }}
84 <li class="item_proress">
85 <p class="activeing"></p>
86 <h5 class="activeingtext">{{item.stepName}}</h5>
87 </li>
88 {{# if(index!=(d.progressList.length-1)){ }}
89 <li class="layui-progress">
90 <div class="layui-progress-bar" lay-percent="50%"></div>
91 </li>
92 {{# } }}
93 {{# } }}
94 {{# if(item.stepState==0){ }}
95 <li class="item_proress">
96 <p></p>
97 <h5>{{item.stepName}}</h5>
98 </li>
99 {{# if(index!=(d.progressList.length-1)){ }}
100 <li class="layui-progress">
101 <div class="layui-progress-bar" lay-percent="0%"></div>
102 </li>
103 {{# } }}
104 {{# } }}
105 {{# }); }}
106 </script>
107
108 </html> 72 </html>
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -45,89 +45,24 @@ ...@@ -45,89 +45,24 @@
45 <h3>税费信息</h3> 45 <h3>税费信息</h3>
46 </div> 46 </div>
47 <ul class="tax_information"> 47 <ul class="tax_information">
48 <li> 48 <li id="acceptanceUnit">
49 <span>税费项目</span>:
50 <p>二手房过户</p>
51 </li>
52 <li>
53 <span>税费</span>:
54 <p>20000元</p>
55 </li>
56 <li>
57 <span>缴费时间</span>:
58 <p>2020-1231</p>
59 </li>
60 <li>
61 <span>受理单位</span>: 49 <span>受理单位</span>:
62 <p>xxx税务局</p> 50 <p>xxx税务局</p>
63 </li> 51 </li>
64 <li> 52 <li id="paymentTime">
65 <span>税费流水号</span>: 53 <span>缴费时间</span>:
66 <p>610234199612126622</p> 54 <p>2020-1231</p>
67 </li> 55 </li>
68 <li> 56 <li id="serialNumber">
69 <span>完税证明号</span>: 57 <span>流水号</span>
70 <p>610234199612126622</p> 58 <p></p>
71 </li> 59 </li>
60 <div class="paymentDetails">
61 </div>
72 </ul> 62 </ul>
73 <div class="buyer_information"> 63 <div class="buyer_information">
74 <h3>买方信息</h3> 64 <h3>买方信息</h3>
75 <ul> 65 <ul id="informationList"></ul>
76 <li>
77 <p>
78 <span>姓名</span>
79 任超
80 </p>
81 <p>
82 <span>证件类型</span>
83 身份证
84 </p>
85 <p>
86 <span>证件号码</span>
87 6101241933091679
88 </p>
89 <p>
90 <span>联系电话</span>
91 1874064565
92 </p>
93 </li>
94 <li>
95 <p>
96 <span>姓名</span>
97 任超
98 </p>
99 <p>
100 <span>证件类型</span>
101 身份证
102 </p>
103 <p>
104 <span>证件号码</span>
105 6101241933091679
106 </p>
107 <p>
108 <span>联系电话</span>
109 1874064565
110 </p>
111 </li>
112 <li>
113 <p>
114 <span>姓名</span>
115 任超
116 </p>
117 <p>
118 <span>证件类型</span>
119 身份证
120 </p>
121 <p>
122 <span>证件号码</span>
123 6101241933091679
124 </p>
125 <p>
126 <span>联系电话</span>
127 1874064565
128 </p>
129 </li>
130 </ul>
131 </div> 66 </div>
132 </div> 67 </div>
133 <div class="next_button"> 68 <div class="next_button">
......
...@@ -30,11 +30,11 @@ ...@@ -30,11 +30,11 @@
30 <ul> 30 <ul>
31 <li> 31 <li>
32 <span>上午好:</span> 32 <span>上午好:</span>
33 <p>任超</p> 33 <p id="username"></p>
34 </li> 34 </li>
35 <li> 35 <li>
36 <span>身份证号:</span> 36 <span>身份证号:</span>
37 <p>61012216464646</p> 37 <p id="zjhm"></p>
38 </li> 38 </li>
39 </ul> 39 </ul>
40 </div> 40 </div>
......
...@@ -28,11 +28,11 @@ ...@@ -28,11 +28,11 @@
28 <ul> 28 <ul>
29 <li> 29 <li>
30 <span>上午好:</span> 30 <span>上午好:</span>
31 <p>任超</p> 31 <p id="username"></p>
32 </li> 32 </li>
33 <li> 33 <li>
34 <span>身份证号:</span> 34 <span>身份证号:</span>
35 <p>61012216464646</p> 35 <p id="zjhm"></p>
36 </li> 36 </li>
37 </ul> 37 </ul>
38 </div> 38 </div>
......