257d80d1 by yangwei

sjsbFunctionOper控制器修改

1 parent eda17a6c
import request from '@/utils/request'
class dataReporting {
class sjsbFunctionOper {
// 数据上报表头相关接口
async getQltFwFdcqYzByCondition (id) {
return request({
......@@ -22,4 +22,4 @@ class dataReporting {
})
}
}
export default new dataReporting()
\ No newline at end of file
export default new sjsbFunctionOper()
\ No newline at end of file
......
......@@ -70,7 +70,7 @@
// 房地产权(项目内多幢房屋)
import data from "./data"
import business from '@/api/business'
import dataReporting from '@/api/dataReporting'
import sjsbFunctionOper from '@/api/sjsbFunctionOper'
import tableMixin from '@/mixins/tableMixin.js'
import treeSelect from '@/components/treeSelect/index.vue'
export default {
......@@ -184,7 +184,7 @@ export default {
}
},
async handlDatadetails (index, row) {
let { result: res, message } = await dataReporting.getQltFwFdcqYzByCondition(row.BSM_SJSB)
let { result: res, message } = await sjsbFunctionOper.getQltFwFdcqYzByCondition(row.BSM_SJSB)
if (res != null) {
this.diaData = res
this.bsmSjsb = row.BSM_SJSB
......
......@@ -42,7 +42,7 @@
// 建筑物区分所有权业主共有部分
import data from "./data"
import business from '@/api/business'
import dataReporting from '@/api/dataReporting'
import sjsbFunctionOper from '@/api/sjsbFunctionOper'
import tableMixin from '@/mixins/tableMixin.js'
import treeSelect from '@/components/treeSelect/index.vue'
export default {
......@@ -118,7 +118,7 @@ export default {
}
},
async handlDatadetails (index, row) {
let { result: res, message } = await dataReporting.getQltFwFdcqYzByCondition(row.BSM_SJSB)
let { result: res, message } = await sjsbFunctionOper.getQltFwFdcqYzByCondition(row.BSM_SJSB)
if (res != null) {
this.diaData = res
this.bsmSjsb = row.BSM_SJSB
......
......@@ -70,7 +70,7 @@
// 房地产权(独幢、层、套、间、房屋)
import data from "./data"
import business from '@/api/business'
import dataReporting from '@/api/dataReporting'
import sjsbFunctionOper from '@/api/sjsbFunctionOper'
import tableMixin from '@/mixins/tableMixin.js'
import treeSelect from '@/components/treeSelect/index.vue'
export default {
......@@ -184,7 +184,7 @@ export default {
}
},
async handlDatadetails (index, row) {
let { result: res, message } = await dataReporting.getQltFwFdcqYzByCondition(row.BSM_SJSB)
let { result: res, message } = await sjsbFunctionOper.getQltFwFdcqYzByCondition(row.BSM_SJSB)
if (res != null) {
this.diaData = res
this.bsmSjsb = row.BSM_SJSB
......
......@@ -65,7 +65,7 @@
// 建设用地、宅基地使用权
import data from "./data"
import business from '@/api/business'
import dataReporting from '@/api/dataReporting'
import sjsbFunctionOper from '@/api/sjsbFunctionOper'
import tableMixin from '@/mixins/tableMixin.js'
import treeSelect from '@/components/treeSelect/index.vue'
export default {
......@@ -178,7 +178,7 @@ export default {
}
},
async handlDatadetails (index, row) {
let { result: res, message } = await dataReporting.getQltFwFdcqYzByCondition(row.BSM_SJSB)
let { result: res, message } = await sjsbFunctionOper.getQltFwFdcqYzByCondition(row.BSM_SJSB)
if (res != null) {
this.diaData = res
this.bsmSjsb = row.BSM_SJSB
......