920d4ac9 by renchao@pashanhoo.com

style;业务申请

1 parent 53d81dff
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
32 </el-form> 32 </el-form>
33 </div> 33 </div>
34 <!-- 表格 --> 34 <!-- 表格 -->
35 <div class="from-clues-content"> 35 <div class="from-clues-content loadingtext">
36 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" 36 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400"
37 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" 37 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
38 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" 38 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns"
...@@ -79,9 +79,11 @@ export default { ...@@ -79,9 +79,11 @@ export default {
79 }, 79 },
80 methods: { 80 methods: {
81 queryClick () { 81 queryClick () {
82 this.$startLoading();
82 this.queryForm.sqywbm = this.sqywInfo.djywbm; 83 this.queryForm.sqywbm = this.sqywInfo.djywbm;
83 selectCfdj({ ...this.queryForm, ...this.pageData }) 84 selectCfdj({ ...this.queryForm, ...this.pageData })
84 .then((res) => { 85 .then((res) => {
86 this.$endLoading();
85 if (res.code === 200) { 87 if (res.code === 200) {
86 let { total, records } = res.result; 88 let { total, records } = res.result;
87 this.tableData.total = total; 89 this.tableData.total = total;
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
41 </el-form> 41 </el-form>
42 </div> 42 </div>
43 <!-- 表格 --> 43 <!-- 表格 -->
44 <div class="from-clues-content"> 44 <div class="from-clues-content loadingtext">
45 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" 45 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400"
46 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" 46 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
47 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" 47 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns"
...@@ -84,8 +84,10 @@ export default { ...@@ -84,8 +84,10 @@ export default {
84 }, 84 },
85 methods: { 85 methods: {
86 queryClick () { 86 queryClick () {
87 this.$startLoading();
87 this.queryForm.sqywbm = this.sqywInfo.djywbm; 88 this.queryForm.sqywbm = this.sqywInfo.djywbm;
88 selectDiyaq({ ...this.queryForm, ...this.pageData }).then((res) => { 89 selectDiyaq({ ...this.queryForm, ...this.pageData }).then((res) => {
90 this.$endLoading();
89 if (res.code === 200) { 91 if (res.code === 200) {
90 let { total, records } = res.result; 92 let { total, records } = res.result;
91 this.tableData.total = total; 93 this.tableData.total = total;
......
...@@ -106,7 +106,7 @@ ...@@ -106,7 +106,7 @@
106 </el-row> 106 </el-row>
107 </el-form> 107 </el-form>
108 </div> 108 </div>
109 <div class="from-clues-content"> 109 <div class="from-clues-content loadingtext">
110 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" 110 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400"
111 :current-page.sync="pageData.currentPage" :total="dztableData.total" @size-change="handleSizeChange" 111 :current-page.sync="pageData.currentPage" :total="dztableData.total" @size-change="handleSizeChange"
112 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="dztableData.columns" 112 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="dztableData.columns"
...@@ -171,12 +171,14 @@ export default { ...@@ -171,12 +171,14 @@ export default {
171 }, 171 },
172 methods: { 172 methods: {
173 queryClick () { 173 queryClick () {
174 this.$startLoading();
174 if (!this.isJump) { 175 if (!this.isJump) {
175 //从业务办理进入 176 //从业务办理进入
176 if (this.activeName == "zrz") { 177 if (this.activeName == "zrz") {
177 this.queryzrzForm.sqywbm = this.sqywInfo.djywbm; 178 this.queryzrzForm.sqywbm = this.sqywInfo.djywbm;
178 this.queryzrzForm.fwfl = this.activeName; 179 this.queryzrzForm.fwfl = this.activeName;
179 selectZrz({ ...this.queryzrzForm, ...this.pageData }).then((res) => { 180 selectZrz({ ...this.queryzrzForm, ...this.pageData }).then((res) => {
181 this.$endLoading();
180 if (res.code === 200) { 182 if (res.code === 200) {
181 this.zrztableData.total = res.result.total; 183 this.zrztableData.total = res.result.total;
182 this.zrztableData.data = res.result.records; 184 this.zrztableData.data = res.result.records;
...@@ -186,6 +188,7 @@ export default { ...@@ -186,6 +188,7 @@ export default {
186 this.querydzForm.sqywbm = this.sqywInfo.djywbm; 188 this.querydzForm.sqywbm = this.sqywInfo.djywbm;
187 this.querydzForm.fwfl = this.activeName; 189 this.querydzForm.fwfl = this.activeName;
188 selectDz({ ...this.querydzForm, ...this.pageData }).then((res) => { 190 selectDz({ ...this.querydzForm, ...this.pageData }).then((res) => {
191 this.$endLoading();
189 if (res.code === 200) { 192 if (res.code === 200) {
190 this.dztableData.total = res.result.total; 193 this.dztableData.total = res.result.total;
191 this.dztableData.data = res.result.records; 194 this.dztableData.data = res.result.records;
...@@ -198,6 +201,7 @@ export default { ...@@ -198,6 +201,7 @@ export default {
198 //房屋首次办理选择不动产需找出对应自然幢下未选择的户 201 //房屋首次办理选择不动产需找出对应自然幢下未选择的户
199 this.queryzrzForm.bsmSlsq = this.$route.query.bsmSlsq; 202 this.queryzrzForm.bsmSlsq = this.$route.query.bsmSlsq;
200 selectOtherH({ ...this.queryzrzForm, ...this.pageData }).then((res) => { 203 selectOtherH({ ...this.queryzrzForm, ...this.pageData }).then((res) => {
204 this.$endLoading();
201 if (res.code === 200) { 205 if (res.code === 200) {
202 let { total, records } = res.result; 206 let { total, records } = res.result;
203 this.zrztableData.total = total; 207 this.zrztableData.total = total;
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
26 </el-form> 26 </el-form>
27 </div> 27 </div>
28 <!-- 表格 --> 28 <!-- 表格 -->
29 <div class="from-clues-content"> 29 <div class="from-clues-content loadingtext">
30 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" 30 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400"
31 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" 31 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
32 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" 32 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns"
...@@ -73,8 +73,10 @@ export default { ...@@ -73,8 +73,10 @@ export default {
73 }, 73 },
74 methods: { 74 methods: {
75 queryClick () { 75 queryClick () {
76 this.$startLoading();
76 this.queryForm.sqywbm = this.sqywInfo.djywbm; 77 this.queryForm.sqywbm = this.sqywInfo.djywbm;
77 selectZdjbxx({ ...this.queryForm, ...this.pageData }).then((res) => { 78 selectZdjbxx({ ...this.queryForm, ...this.pageData }).then((res) => {
79 this.$endLoading();
78 if (res.code === 200) { 80 if (res.code === 200) {
79 let { total, records } = res.result; 81 let { total, records } = res.result;
80 this.tableData.total = total; 82 this.tableData.total = total;
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
26 </el-form> 26 </el-form>
27 </div> 27 </div>
28 <!-- 表格 --> 28 <!-- 表格 -->
29 <div class="from-clues-content"> 29 <div class="from-clues-content loadingtext">
30 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" 30 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400"
31 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" 31 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
32 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" 32 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns"
...@@ -70,8 +70,10 @@ export default { ...@@ -70,8 +70,10 @@ export default {
70 }, 70 },
71 methods: { 71 methods: {
72 queryClick () { 72 queryClick () {
73 this.$startLoading();
73 this.queryForm.sqywbm = this.sqywInfo.djywbm; 74 this.queryForm.sqywbm = this.sqywInfo.djywbm;
74 selectNydsyqQlxx({ ...this.queryForm, ...this.pageData }).then((res) => { 75 selectNydsyqQlxx({ ...this.queryForm, ...this.pageData }).then((res) => {
76 this.$endLoading();
75 if (res.code === 200) { 77 if (res.code === 200) {
76 let { total, records } = res.result; 78 let { total, records } = res.result;
77 this.tableData.total = total; 79 this.tableData.total = total;
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
41 </el-form> 41 </el-form>
42 </div> 42 </div>
43 <!-- 表格 --> 43 <!-- 表格 -->
44 <div class="from-clues-content"> 44 <div class="from-clues-content loadingtext">
45 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" 45 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400"
46 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" 46 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
47 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" 47 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns"
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
33 </el-form> 33 </el-form>
34 </div> 34 </div>
35 <!-- 表格 --> 35 <!-- 表格 -->
36 <div class="from-clues-content"> 36 <div class="from-clues-content loadingtext">
37 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" 37 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400"
38 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" 38 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
39 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" 39 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns"
...@@ -76,7 +76,9 @@ export default { ...@@ -76,7 +76,9 @@ export default {
76 }, 76 },
77 methods: { 77 methods: {
78 queryClick () { 78 queryClick () {
79 this.$startLoading();
79 selectAllHInfo({ ...this.queryForm, ...this.pageData }).then((res) => { 80 selectAllHInfo({ ...this.queryForm, ...this.pageData }).then((res) => {
81 this.$endLoading();
80 if (res.code === 200) { 82 if (res.code === 200) {
81 let { total, records } = res.result; 83 let { total, records } = res.result;
82 this.tableData.total = total; 84 this.tableData.total = total;
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
33 </el-form> 33 </el-form>
34 </div> 34 </div>
35 <!-- 表格 --> 35 <!-- 表格 -->
36 <div class="from-clues-content"> 36 <div class="from-clues-content loadingtext">
37 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" 37 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400"
38 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" 38 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
39 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" 39 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns"
...@@ -75,8 +75,10 @@ export default { ...@@ -75,8 +75,10 @@ export default {
75 }, 75 },
76 methods: { 76 methods: {
77 queryClick () { 77 queryClick () {
78 this.$startLoading();
78 this.queryForm.sqywbm = this.sqywInfo.djywbm; 79 this.queryForm.sqywbm = this.sqywInfo.djywbm;
79 selectFwsyq({ ...this.queryForm, ...this.pageData }).then((res) => { 80 selectFwsyq({ ...this.queryForm, ...this.pageData }).then((res) => {
81 this.$endLoading();
80 if (res.code === 200) { 82 if (res.code === 200) {
81 let { total, records } = res.result; 83 let { total, records } = res.result;
82 this.tableData.total = total; 84 this.tableData.total = total;
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
40 </el-form> 40 </el-form>
41 </div> 41 </div>
42 <!-- 表格 --> 42 <!-- 表格 -->
43 <div class="from-clues-content"> 43 <div class="from-clues-content loadingtext">
44 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" 44 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400"
45 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" 45 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
46 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" 46 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns"
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
26 </el-form> 26 </el-form>
27 </div> 27 </div>
28 <!-- 表格 --> 28 <!-- 表格 -->
29 <div class="from-clues-content"> 29 <div class="from-clues-content loadingtext">
30 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" 30 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400"
31 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" 31 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
32 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" 32 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns"
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
33 </el-form> 33 </el-form>
34 </div> 34 </div>
35 <!-- 表格 --> 35 <!-- 表格 -->
36 <div class="from-clues-content"> 36 <div class="from-clues-content loadingtext">
37 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" 37 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400"
38 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" 38 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
39 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" 39 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns"
...@@ -75,8 +75,10 @@ export default { ...@@ -75,8 +75,10 @@ export default {
75 }, 75 },
76 methods: { 76 methods: {
77 queryClick () { 77 queryClick () {
78 this.$startLoading();
78 this.queryForm.sqywbm = this.sqywInfo.djywbm; 79 this.queryForm.sqywbm = this.sqywInfo.djywbm;
79 selectYgdj100({ ...this.queryForm, ...this.pageData }).then((res) => { 80 selectYgdj100({ ...this.queryForm, ...this.pageData }).then((res) => {
81 this.$endLoading();
80 if (res.code === 200) { 82 if (res.code === 200) {
81 let { total, records } = res.result; 83 let { total, records } = res.result;
82 this.tableData.total = total; 84 this.tableData.total = total;
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
33 </el-form> 33 </el-form>
34 </div> 34 </div>
35 <!-- 表格 --> 35 <!-- 表格 -->
36 <div class="from-clues-content"> 36 <div class="from-clues-content loadingtext">
37 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" 37 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400"
38 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" 38 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
39 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" 39 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns"
...@@ -75,8 +75,10 @@ export default { ...@@ -75,8 +75,10 @@ export default {
75 }, 75 },
76 methods: { 76 methods: {
77 queryClick () { 77 queryClick () {
78 this.$startLoading();
78 this.queryForm.sqywbm = this.sqywInfo.djywbm; 79 this.queryForm.sqywbm = this.sqywInfo.djywbm;
79 selectYgdj200({ ...this.queryForm, ...this.pageData }).then((res) => { 80 selectYgdj200({ ...this.queryForm, ...this.pageData }).then((res) => {
81 this.$endLoading();
80 if (res.code === 200) { 82 if (res.code === 200) {
81 let { total, records } = res.result; 83 let { total, records } = res.result;
82 this.tableData.total = total; 84 this.tableData.total = total;
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
33 </el-form> 33 </el-form>
34 </div> 34 </div>
35 <!-- 表格 --> 35 <!-- 表格 -->
36 <div class="from-clues-content"> 36 <div class="from-clues-content loadingtext">
37 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" 37 <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400"
38 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" 38 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
39 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" 39 @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns"
...@@ -75,8 +75,10 @@ export default { ...@@ -75,8 +75,10 @@ export default {
75 }, 75 },
76 methods: { 76 methods: {
77 queryClick () { 77 queryClick () {
78 this.$startLoading();
78 this.queryForm.sqywbm = this.sqywInfo.djywbm; 79 this.queryForm.sqywbm = this.sqywInfo.djywbm;
79 selectYgdy({ ...this.queryForm, ...this.pageData }).then((res) => { 80 selectYgdy({ ...this.queryForm, ...this.pageData }).then((res) => {
81 this.$endLoading();
80 if (res.code === 200) { 82 if (res.code === 200) {
81 let { total, records } = res.result; 83 let { total, records } = res.result;
82 this.tableData.total = total; 84 this.tableData.total = total;
......
...@@ -66,7 +66,6 @@ ...@@ -66,7 +66,6 @@
66 <el-button type="primary" :disabled="btnDisabled" @click="dialogClick">选择不动产</el-button> 66 <el-button type="primary" :disabled="btnDisabled" @click="dialogClick">选择不动产</el-button>
67 </div> 67 </div>
68 </div> 68 </div>
69 <!-- <selectDialog v-model="isDialog" :sqywInfo="selectParam" /> -->
70 </div> 69 </div>
71 </template> 70 </template>
72 <script> 71 <script>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-04-13 15:21:35 4 * @LastEditTime: 2023-04-17 09:33:12
5 --> 5 -->
6 <template> 6 <template>
7 <component :is="router" :sqywInfo="formData.sqywInfo" @updateDialog="updateDialog" /> 7 <component :is="router" :sqywInfo="formData.sqywInfo" @updateDialog="updateDialog" />
...@@ -27,6 +27,7 @@ export default { ...@@ -27,6 +27,7 @@ export default {
27 }, 27 },
28 methods: { 28 methods: {
29 loadView (view) { 29 loadView (view) {
30 console.log(view, 'viewviewviewview');
30 return (r) => 31 return (r) =>
31 require.ensure([], () => r(require(`./components/${view}.vue`))); 32 require.ensure([], () => r(require(`./components/${view}.vue`)));
32 }, 33 },
......