45d8a33e by 任超

style:权限问题的处理

2 parents 3b1ebb39 4e929a2e
...@@ -29,7 +29,7 @@ export function getNextNode (bsmSqyw) { ...@@ -29,7 +29,7 @@ export function getNextNode (bsmSqyw) {
29 } 29 }
30 30
31 /* 31 /*
32 业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权 32 业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权、房屋所有权(首次登记)
33 */ 33 */
34 export function selectScBdcdy (data) { 34 export function selectScBdcdy (data) {
35 return request({ 35 return request({
...@@ -40,17 +40,17 @@ export function selectScBdcdy (data) { ...@@ -40,17 +40,17 @@ export function selectScBdcdy (data) {
40 }) 40 })
41 } 41 }
42 42
43 /* 43 // /*
44 业务办理-选择单元-根据条件进行列表查询-房屋所有权 44 // 业务办理-选择单元-根据条件进行列表查询-房屋所有权
45 */ 45 // */
46 export function selectFwsyq (data) { 46 // export function selectFwsyq (data) {
47 return request({ 47 // return request({
48 url: 'ywbl/ywsq/selectFwsyq', 48 // url: 'ywbl/ywsq/selectFwsyq',
49 method: 'post', 49 // method: 'post',
50 data, 50 // data,
51 showLoading: true 51 // showLoading: true
52 }) 52 // })
53 } 53 // }
54 54
55 // 待办箱列表查询接口 55 // 待办箱列表查询接口
56 export function searchTaskToDo (data) { 56 export function searchTaskToDo (data) {
......
...@@ -45,7 +45,7 @@ import Cookies from 'js-cookie' ...@@ -45,7 +45,7 @@ import Cookies from 'js-cookie'
45 import { datas, sendThis } from "../javascript/fwsyq.js"; 45 import { datas, sendThis } from "../javascript/fwsyq.js";
46 import table from "@/utils/mixin/table"; 46 import table from "@/utils/mixin/table";
47 import jump from "@/views/ywbl/ywsq/components/mixin/jump"; 47 import jump from "@/views/ywbl/ywsq/components/mixin/jump";
48 import { selectFwsyq, startBusinessFlow, choiceBdcdy } from "@/api/ywbl.js"; 48 import { selectScBdcdy, startBusinessFlow, choiceBdcdy } from "@/api/ywbl.js";
49 export default { 49 export default {
50 mixins: [table, jump], 50 mixins: [table, jump],
51 props: { 51 props: {
...@@ -79,7 +79,8 @@ export default { ...@@ -79,7 +79,8 @@ export default {
79 }, 79 },
80 fetchData () { 80 fetchData () {
81 this.queryForm.sqywbm = this.djywbm; 81 this.queryForm.sqywbm = this.djywbm;
82 selectFwsyq({ ...this.queryForm, ...this.pageData, fwfl: this.activeName }).then((res) => { 82 this.queryForm.fwfl = this.activeName;
83 selectScBdcdy({ ...this.queryForm, ...this.pageData }).then((res) => {
83 if (res.code === 200) { 84 if (res.code === 200) {
84 let { total, records } = res.result; 85 let { total, records } = res.result;
85 this.tableData.total = total; 86 this.tableData.total = total;
...@@ -88,7 +89,7 @@ export default { ...@@ -88,7 +89,7 @@ export default {
88 }) 89 })
89 }, 90 },
90 handleTabClick () { 91 handleTabClick () {
91 this.pageData.currentPage = 1 92 this.pageData.currentPage = 1;
92 this.fetchData() 93 this.fetchData()
93 }, 94 },
94 submitForm () { 95 submitForm () {
......
...@@ -26,10 +26,10 @@ class data extends filter { ...@@ -26,10 +26,10 @@ class data extends filter {
26 ) 26 )
27 } 27 }
28 }, 28 },
29 { 29 // {
30 prop: "status", 30 // prop: "status",
31 label: "状态", 31 // label: "状态",
32 }, 32 // },
33 { 33 {
34 prop: "qllxmc", 34 prop: "qllxmc",
35 label: "权利类型", 35 label: "权利类型",
...@@ -50,10 +50,10 @@ class data extends filter { ...@@ -50,10 +50,10 @@ class data extends filter {
50 prop: "zdmj", 50 prop: "zdmj",
51 label: "宗地面积", 51 label: "宗地面积",
52 }, 52 },
53 { 53 // {
54 prop: "qlsdfs", 54 // prop: "qlsdfs",
55 label: "权利设定方式", 55 // label: "权利设定方式",
56 }, 56 // },
57 { 57 {
58 prop: "jzwjbyt", 58 prop: "jzwjbyt",
59 label: "房屋用途", 59 label: "房屋用途",
......