style:业务申请
Showing
10 changed files
with
93 additions
and
77 deletions
... | @@ -70,7 +70,7 @@ import searchBox from '../components/search.vue' | ... | @@ -70,7 +70,7 @@ import searchBox from '../components/search.vue' |
70 | import table from "@/utils/mixin/table" | 70 | import table from "@/utils/mixin/table" |
71 | import searchMin from "../components/mixin/index" | 71 | import searchMin from "../components/mixin/index" |
72 | import { datas, sendThis } from "./dbxdata" | 72 | import { datas, sendThis } from "./dbxdata" |
73 | import { searchTaskToDo, deleteFlow ,claimTask} from "@/api/ywbl.js" | 73 | import { searchTaskToDo, deleteFlow, claimTask } from "@/api/ywbl.js" |
74 | export default { | 74 | export default { |
75 | name: "dbx", | 75 | name: "dbx", |
76 | components: { searchBox }, | 76 | components: { searchBox }, |
... | @@ -174,9 +174,8 @@ export default { | ... | @@ -174,9 +174,8 @@ export default { |
174 | ywhClick (item) { | 174 | ywhClick (item) { |
175 | const { href } = this.$router.resolve('/workFrame?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + '&sqywbm=' + item.djywbm); | 175 | const { href } = this.$router.resolve('/workFrame?bsmSlsq=' + item.bsmSlsq + '&bestepid=' + item.bestepid + '&bsmBusiness=' + '&sqywbm=' + item.djywbm); |
176 | window.open(href, '_blank'); | 176 | window.open(href, '_blank'); |
177 | |||
178 | //从待办箱进入的调取任务领取接口 | 177 | //从待办箱进入的调取任务领取接口 |
179 | claimTask(item.bsmSlsq,item.bestepid) | 178 | claimTask(item.bsmSlsq, item.bestepid) |
180 | } | 179 | } |
181 | } | 180 | } |
182 | } | 181 | } | ... | ... |
... | @@ -53,7 +53,6 @@ | ... | @@ -53,7 +53,6 @@ |
53 | </template> | 53 | </template> |
54 | <script> | 54 | <script> |
55 | //查封登记 | 55 | //查封登记 |
56 | import Cookies from 'js-cookie' | ||
57 | import { datas, sendThis } from "../javascript/bdcql.js"; | 56 | import { datas, sendThis } from "../javascript/bdcql.js"; |
58 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
59 | import table from "@/utils/mixin/table"; | 58 | import table from "@/utils/mixin/table"; |
... | @@ -63,7 +62,12 @@ export default { | ... | @@ -63,7 +62,12 @@ export default { |
63 | mixins: [table, jump], | 62 | mixins: [table, jump], |
64 | props: { | 63 | props: { |
65 | isJump: { type: Boolean, default: false }, | 64 | isJump: { type: Boolean, default: false }, |
66 | djywbm: { type: String, default: '' } | 65 | djywbm: { type: String, default: '' }, |
66 | djqxObj: { | ||
67 | type: Object, | ||
68 | default: {} | ||
69 | }, | ||
70 | bsmSqyw: { type: String, default: '' }, | ||
67 | }, | 71 | }, |
68 | data () { | 72 | data () { |
69 | return { | 73 | return { |
... | @@ -103,10 +107,10 @@ export default { | ... | @@ -103,10 +107,10 @@ export default { |
103 | } | 107 | } |
104 | if (!this.isJump) { | 108 | if (!this.isJump) { |
105 | startBusinessFlow({ | 109 | startBusinessFlow({ |
106 | bsmSqyw: Cookies.get("bsmSqyw"), | 110 | bsmSqyw: this.bsmSqyw, |
107 | bdcdysz: this.bdcdysz, | 111 | bdcdysz: this.bdcdysz, |
108 | djqxbm: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxbm : '', | 112 | djqxbm: this.djqxObj?.djqxbm, |
109 | djqxmc: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxmc : '', | 113 | djqxmc: this.djqxObj?.djqxmc |
110 | }).then((res) => { | 114 | }).then((res) => { |
111 | if (res.code == 200) { | 115 | if (res.code == 200) { |
112 | this.$message({ | 116 | this.$message({ |
... | @@ -146,7 +150,7 @@ export default { | ... | @@ -146,7 +150,7 @@ export default { |
146 | }) | 150 | }) |
147 | this.bdcdysz = val | 151 | this.bdcdysz = val |
148 | } | 152 | } |
149 | }, | 153 | } |
150 | }; | 154 | }; |
151 | </script> | 155 | </script> |
152 | <style scoped lang="scss"> | 156 | <style scoped lang="scss"> | ... | ... |
... | @@ -53,7 +53,6 @@ | ... | @@ -53,7 +53,6 @@ |
53 | </div> | 53 | </div> |
54 | </template> | 54 | </template> |
55 | <script> | 55 | <script> |
56 | import Cookies from 'js-cookie' | ||
57 | import { datas, sendThis } from "../javascript/bdcqlMain.js"; | 56 | import { datas, sendThis } from "../javascript/bdcqlMain.js"; |
58 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
59 | import table from "@/utils/mixin/table"; | 58 | import table from "@/utils/mixin/table"; |
... | @@ -63,7 +62,12 @@ export default { | ... | @@ -63,7 +62,12 @@ export default { |
63 | mixins: [table, jump], | 62 | mixins: [table, jump], |
64 | props: { | 63 | props: { |
65 | isJump: { type: Boolean, default: false }, | 64 | isJump: { type: Boolean, default: false }, |
66 | djywbm: { type: String, default: '' } | 65 | djywbm: { type: String, default: '' }, |
66 | djqxObj: { | ||
67 | type: Object, | ||
68 | default: {} | ||
69 | }, | ||
70 | bsmSqyw: { type: String, default: '' } | ||
67 | }, | 71 | }, |
68 | data () { | 72 | data () { |
69 | return { | 73 | return { |
... | @@ -101,10 +105,10 @@ export default { | ... | @@ -101,10 +105,10 @@ export default { |
101 | return; | 105 | return; |
102 | } | 106 | } |
103 | startBusinessFlow({ | 107 | startBusinessFlow({ |
104 | bsmSqyw: Cookies.get("bsmSqyw"), | 108 | bsmSqyw: this.bsmSqyw, |
105 | bdcdysz: this.bdcdysz, | 109 | bdcdysz: this.bdcdysz, |
106 | djqxbm: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxbm : '', | 110 | djqxbm: this.djqxObj?.djqxbm, |
107 | djqxmc: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxmc : '', | 111 | djqxmc: this.djqxObj?.djqxmc |
108 | }).then((res) => { | 112 | }).then((res) => { |
109 | if (res.code == 200) { | 113 | if (res.code == 200) { |
110 | this.jump(res.result) | 114 | this.jump(res.result) | ... | ... |
... | @@ -53,7 +53,6 @@ | ... | @@ -53,7 +53,6 @@ |
53 | </template> | 53 | </template> |
54 | <script> | 54 | <script> |
55 | //查封登记 | 55 | //查封登记 |
56 | import Cookies from 'js-cookie' | ||
57 | import { datas, sendThis } from "../javascript/cfdj.js"; | 56 | import { datas, sendThis } from "../javascript/cfdj.js"; |
58 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
59 | import table from "@/utils/mixin/table"; | 58 | import table from "@/utils/mixin/table"; |
... | @@ -62,7 +61,12 @@ import { selectCfdj, startBusinessFlow, choiceBdcdy } from "@/api/ywbl.js"; | ... | @@ -62,7 +61,12 @@ import { selectCfdj, startBusinessFlow, choiceBdcdy } from "@/api/ywbl.js"; |
62 | export default { | 61 | export default { |
63 | props: { | 62 | props: { |
64 | isJump: { type: Boolean, default: false }, | 63 | isJump: { type: Boolean, default: false }, |
65 | djywbm: { type: String, default: '' } | 64 | djywbm: { type: String, default: '' }, |
65 | djqxObj: { | ||
66 | type: Object, | ||
67 | default: {} | ||
68 | }, | ||
69 | bsmSqyw: { type: String, default: '' }, | ||
66 | }, | 70 | }, |
67 | mixins: [table, jump], | 71 | mixins: [table, jump], |
68 | data () { | 72 | data () { |
... | @@ -102,10 +106,10 @@ export default { | ... | @@ -102,10 +106,10 @@ export default { |
102 | } | 106 | } |
103 | if (!this.isJump) { | 107 | if (!this.isJump) { |
104 | startBusinessFlow({ | 108 | startBusinessFlow({ |
105 | bsmSqyw: Cookies.get("bsmSqyw"), | 109 | bsmSqyw: this.bsmSqyw, |
106 | bdcdysz: this.bdcdysz, | 110 | bdcdysz: this.bdcdysz, |
107 | djqxbm: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxbm : '', | 111 | djqxbm: this.djqxObj?.djqxbm, |
108 | djqxmc: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxmc : '', | 112 | djqxmc: this.djqxObj?.djqxmc |
109 | }).then((res) => { | 113 | }).then((res) => { |
110 | if (res.code == 200) { | 114 | if (res.code == 200) { |
111 | this.$message({ | 115 | this.$message({ | ... | ... |
... | @@ -65,7 +65,12 @@ export default { | ... | @@ -65,7 +65,12 @@ export default { |
65 | mixins: [table, jump], | 65 | mixins: [table, jump], |
66 | props: { | 66 | props: { |
67 | isJump: { type: Boolean, default: false }, | 67 | isJump: { type: Boolean, default: false }, |
68 | djywbm: { type: String, default: '' } | 68 | djywbm: { type: String, default: '' }, |
69 | djqxObj: { | ||
70 | type: Object, | ||
71 | default: {} | ||
72 | }, | ||
73 | bsmSqyw: { type: String, default: '' }, | ||
69 | }, | 74 | }, |
70 | data () { | 75 | data () { |
71 | return { | 76 | return { |
... | @@ -94,7 +99,7 @@ export default { | ... | @@ -94,7 +99,7 @@ export default { |
94 | this.tableData.total = total; | 99 | this.tableData.total = total; |
95 | this.tableData.data = records; | 100 | this.tableData.data = records; |
96 | } | 101 | } |
97 | }); | 102 | }) |
98 | }, | 103 | }, |
99 | submitForm () { | 104 | submitForm () { |
100 | if (this.bdcdysz.length == 0) { | 105 | if (this.bdcdysz.length == 0) { |
... | @@ -102,10 +107,10 @@ export default { | ... | @@ -102,10 +107,10 @@ export default { |
102 | return; | 107 | return; |
103 | } | 108 | } |
104 | startBusinessFlow({ | 109 | startBusinessFlow({ |
105 | bsmSqyw: Cookies.get("bsmSqyw"), | 110 | bsmSqyw: this.bsmSqyw, |
106 | bdcdysz: this.bdcdysz, | 111 | bdcdysz: this.bdcdysz, |
107 | djqxbm: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxbm : '', | 112 | djqxbm: this.djqxObj?.djqxbm, |
108 | djqxmc: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxmc : '', | 113 | djqxmc: this.djqxObj?.djqxmc |
109 | }).then((res) => { | 114 | }).then((res) => { |
110 | if (res.code == 200) { | 115 | if (res.code == 200) { |
111 | this.$message({ | 116 | this.$message({ |
... | @@ -129,8 +134,7 @@ export default { | ... | @@ -129,8 +134,7 @@ export default { |
129 | item.ybdcqzsh = item.bdcqzh | 134 | item.ybdcqzsh = item.bdcqzh |
130 | }) | 135 | }) |
131 | this.bdcdysz = val; | 136 | this.bdcdysz = val; |
132 | }, | 137 | } |
133 | |||
134 | } | 138 | } |
135 | } | 139 | } |
136 | </script> | 140 | </script> | ... | ... |
... | @@ -68,7 +68,6 @@ | ... | @@ -68,7 +68,6 @@ |
68 | </template> | 68 | </template> |
69 | <script> | 69 | <script> |
70 | //国有建设用地使用权/房屋使用权 | 70 | //国有建设用地使用权/房屋使用权 |
71 | import Cookies from 'js-cookie' | ||
72 | import { datas, sendThis } from "../javascript/fwsyq.js"; | 71 | import { datas, sendThis } from "../javascript/fwsyq.js"; |
73 | import table from "@/utils/mixin/table"; | 72 | import table from "@/utils/mixin/table"; |
74 | import jump from "@/views/ywbl/ywsq/components/mixin/jump"; | 73 | import jump from "@/views/ywbl/ywsq/components/mixin/jump"; |
... | @@ -78,7 +77,12 @@ export default { | ... | @@ -78,7 +77,12 @@ export default { |
78 | mixins: [table, jump], | 77 | mixins: [table, jump], |
79 | props: { | 78 | props: { |
80 | isJump: { type: Boolean, default: false }, | 79 | isJump: { type: Boolean, default: false }, |
81 | djywbm: { type: String, default: '' } | 80 | djywbm: { type: String, default: '' }, |
81 | djqxObj: { | ||
82 | type: Object, | ||
83 | default: {} | ||
84 | }, | ||
85 | bsmSqyw: { type: String, default: '' }, | ||
82 | }, | 86 | }, |
83 | data () { | 87 | data () { |
84 | return { | 88 | return { |
... | @@ -150,11 +154,11 @@ export default { | ... | @@ -150,11 +154,11 @@ export default { |
150 | } | 154 | } |
151 | if (!this.isJump) { | 155 | if (!this.isJump) { |
152 | startBusinessFlow({ | 156 | startBusinessFlow({ |
153 | bsmSqyw: Cookies.get("bsmSqyw"), | 157 | bsmSqyw: this.bsmSqyw, |
154 | fwlx: this.activeName, | 158 | fwlx: this.activeName, |
155 | bdcdysz: this.bdcdysz, | 159 | bdcdysz: this.bdcdysz, |
156 | djqxbm: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxbm : '', | 160 | djqxbm: this.djqxObj?.djqxbm, |
157 | djqxmc: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxmc : '', | 161 | djqxmc: this.djqxObj?.djqxmc |
158 | }).then((res) => { | 162 | }).then((res) => { |
159 | if (res.code == 200) { | 163 | if (res.code == 200) { |
160 | this.$message({ | 164 | this.$message({ |
... | @@ -189,14 +193,11 @@ export default { | ... | @@ -189,14 +193,11 @@ export default { |
189 | this.bdcdysz = val | 193 | this.bdcdysz = val |
190 | }, | 194 | }, |
191 | handleLpbClick (item) { | 195 | handleLpbClick (item) { |
192 | console.log(item, 'eeeeeeeeeeeeee'); | ||
193 | this.$popup('楼盘表', 'components/bjlp/index', { | 196 | this.$popup('楼盘表', 'components/bjlp/index', { |
194 | width: '85%', | 197 | width: '85%', |
195 | formData: { | 198 | formData: { |
196 | bsm: item.bsm | 199 | bsm: item.bsm |
197 | }, | 200 | } |
198 | cancel: function () { }, //取消事件的回调 | ||
199 | confirm: function () { }, //确认事件的回调 | ||
200 | }) | 201 | }) |
201 | } | 202 | } |
202 | } | 203 | } | ... | ... |
... | @@ -39,7 +39,6 @@ | ... | @@ -39,7 +39,6 @@ |
39 | </template> | 39 | </template> |
40 | <script> | 40 | <script> |
41 | //首次登记 | 41 | //首次登记 |
42 | import Cookies from 'js-cookie' | ||
43 | import { datas, sendThis } from "../javascript/jsydsyq100.js"; | 42 | import { datas, sendThis } from "../javascript/jsydsyq100.js"; |
44 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 43 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
45 | import table from "@/utils/mixin/table"; | 44 | import table from "@/utils/mixin/table"; |
... | @@ -50,7 +49,12 @@ export default { | ... | @@ -50,7 +49,12 @@ export default { |
50 | mixins: [table, jump], | 49 | mixins: [table, jump], |
51 | props: { | 50 | props: { |
52 | isJump: { type: Boolean, default: false }, | 51 | isJump: { type: Boolean, default: false }, |
53 | djywbm: { type: String, default: '' } | 52 | djywbm: { type: String, default: '' }, |
53 | djqxObj: { | ||
54 | type: Object, | ||
55 | default: {} | ||
56 | }, | ||
57 | bsmSqyw: { type: String, default: '' }, | ||
54 | }, | 58 | }, |
55 | data () { | 59 | data () { |
56 | return { | 60 | return { |
... | @@ -75,7 +79,6 @@ export default { | ... | @@ -75,7 +79,6 @@ export default { |
75 | }, | 79 | }, |
76 | fetchData () { | 80 | fetchData () { |
77 | this.queryForm.sqywbm = this.djywbm; | 81 | this.queryForm.sqywbm = this.djywbm; |
78 | |||
79 | selectZdjbxx({ ...this.queryForm, ...this.pageData }).then((res) => { | 82 | selectZdjbxx({ ...this.queryForm, ...this.pageData }).then((res) => { |
80 | if (res.code === 200) { | 83 | if (res.code === 200) { |
81 | let { total, records } = res.result; | 84 | let { total, records } = res.result; |
... | @@ -90,10 +93,10 @@ export default { | ... | @@ -90,10 +93,10 @@ export default { |
90 | return; | 93 | return; |
91 | } | 94 | } |
92 | startBusinessFlow({ | 95 | startBusinessFlow({ |
93 | bsmSqyw: Cookies.get("bsmSqyw"), | 96 | bsmSqyw: this.bsmSqyw, |
94 | bdcdysz: this.bdcdysz, | 97 | bdcdysz: this.bdcdysz, |
95 | djqxbm: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxbm : '', | 98 | djqxbm: this.djqxObj?.djqxbm, |
96 | djqxmc: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxmc : '', | 99 | djqxmc: this.djqxObj?.djqxmc |
97 | }).then((res) => { | 100 | }).then((res) => { |
98 | if (res.code == 200) { | 101 | if (res.code == 200) { |
99 | this.$message({ | 102 | this.$message({ |
... | @@ -109,11 +112,11 @@ export default { | ... | @@ -109,11 +112,11 @@ export default { |
109 | } else { | 112 | } else { |
110 | this.$message.error(res.message); | 113 | this.$message.error(res.message); |
111 | } | 114 | } |
112 | }); | 115 | }) |
113 | }, | 116 | }, |
114 | handleSelectionChange (val) { | 117 | handleSelectionChange (val) { |
115 | this.bdcdysz = val; | 118 | this.bdcdysz = val; |
116 | }, | 119 | } |
117 | } | 120 | } |
118 | } | 121 | } |
119 | </script> | 122 | </script> |
... | @@ -121,3 +124,4 @@ export default { | ... | @@ -121,3 +124,4 @@ export default { |
121 | @import "~@/styles/mixin.scss"; | 124 | @import "~@/styles/mixin.scss"; |
122 | @import "~@/styles/public.scss"; | 125 | @import "~@/styles/public.scss"; |
123 | </style> | 126 | </style> |
127 | ... | ... |
... | @@ -53,7 +53,6 @@ | ... | @@ -53,7 +53,6 @@ |
53 | </template> | 53 | </template> |
54 | <script> | 54 | <script> |
55 | //首次登记 | 55 | //首次登记 |
56 | import Cookies from 'js-cookie' | ||
57 | import { datas, sendThis } from "../javascript/jsydsyq200.js"; | 56 | import { datas, sendThis } from "../javascript/jsydsyq200.js"; |
58 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
59 | import table from "@/utils/mixin/table"; | 58 | import table from "@/utils/mixin/table"; |
... | @@ -64,7 +63,12 @@ export default { | ... | @@ -64,7 +63,12 @@ export default { |
64 | mixins: [table, jump], | 63 | mixins: [table, jump], |
65 | props: { | 64 | props: { |
66 | isJump: { type: Boolean, default: false }, | 65 | isJump: { type: Boolean, default: false }, |
67 | djywbm: { type: String, default: '' } | 66 | djywbm: { type: String, default: '' }, |
67 | djqxObj: { | ||
68 | type: Object, | ||
69 | default: {} | ||
70 | }, | ||
71 | bsmSqyw: { type: String, default: '' }, | ||
68 | }, | 72 | }, |
69 | data () { | 73 | data () { |
70 | return { | 74 | return { |
... | @@ -93,7 +97,7 @@ export default { | ... | @@ -93,7 +97,7 @@ export default { |
93 | this.tableData.total = total; | 97 | this.tableData.total = total; |
94 | this.tableData.data = records; | 98 | this.tableData.data = records; |
95 | } | 99 | } |
96 | }); | 100 | }) |
97 | }, | 101 | }, |
98 | submitForm () { | 102 | submitForm () { |
99 | if (this.bdcdysz.length == 0) { | 103 | if (this.bdcdysz.length == 0) { |
... | @@ -101,10 +105,10 @@ export default { | ... | @@ -101,10 +105,10 @@ export default { |
101 | return; | 105 | return; |
102 | } | 106 | } |
103 | startBusinessFlow({ | 107 | startBusinessFlow({ |
104 | bsmSqyw: Cookies.get("bsmSqyw"), | 108 | bsmSqyw: this.bsmSqyw, |
105 | bdcdysz: this.bdcdysz, | 109 | bdcdysz: this.bdcdysz, |
106 | djqxbm: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxbm : '', | 110 | djqxbm: this.djqxObj?.djqxbm, |
107 | djqxmc: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxmc : '', | 111 | djqxmc: this.djqxObj?.djqxmc |
108 | }).then((res) => { | 112 | }).then((res) => { |
109 | if (res.code == 200) { | 113 | if (res.code == 200) { |
110 | this.$message({ | 114 | this.$message({ |
... | @@ -120,7 +124,7 @@ export default { | ... | @@ -120,7 +124,7 @@ export default { |
120 | } else { | 124 | } else { |
121 | this.$message.error(res.message); | 125 | this.$message.error(res.message); |
122 | } | 126 | } |
123 | }); | 127 | }) |
124 | }, | 128 | }, |
125 | handleSelectionChange (val) { | 129 | handleSelectionChange (val) { |
126 | val.forEach((item, index) => { | 130 | val.forEach((item, index) => { |
... | @@ -131,22 +135,9 @@ export default { | ... | @@ -131,22 +135,9 @@ export default { |
131 | }, | 135 | }, |
132 | openBook (row) { | 136 | openBook (row) { |
133 | var param = { bdcdyid: row.bdcdyid, qllx: row.qllx, bdcdyh: row.bdcdyh, bsmQlxx: row.bsmQlxx }; | 137 | var param = { bdcdyid: row.bdcdyid, qllx: row.qllx, bdcdyh: row.bdcdyh, bsmQlxx: row.bsmQlxx }; |
134 | this.$popup({ | 138 | this.$popup('登记簿详情', 'registerBook/djbFrame', { |
135 | titleStyle: "left", | 139 | formData: param |
136 | title: "登记簿详情", // 弹窗标题 | 140 | }) |
137 | editItem: "registerBook/djbFrame", // 弹窗内容 | ||
138 | formData: param, | ||
139 | width: "1220px", | ||
140 | height: "790px", | ||
141 | // cancelText: '取消摆烂', // 右边按钮文本 | ||
142 | // confirmText: '确定点击', //左边按钮文本 | ||
143 | cancel: () => { | ||
144 | console.log("取消回调"); | ||
145 | }, | ||
146 | confirm: () => { | ||
147 | console.log("确认回调"); | ||
148 | }, | ||
149 | }); | ||
150 | } | 141 | } |
151 | } | 142 | } |
152 | } | 143 | } | ... | ... |
1 | <template> | 1 | <template> |
2 | <dialogBox title="查询权利信息" width="85%" :isButton="false" :isMain="true" @closeDialog="closeDialog" v-model="myValue"> | 2 | <dialogBox title="查询权利信息" width="85%" :isButton="false" :isMain="true" @closeDialog="closeDialog" v-model="myValue"> |
3 | <component :is="editItem" @closeDialog="closeDialog" :isJump="isJump" id="slectBdc" @updateDialog="updateDialog" | 3 | <component :is="editItem" @closeDialog="closeDialog" v-bind="$attrs" :isJump="isJump" id="slectBdc" |
4 | :djywbm="djywbm" :key="key" /> | 4 | @updateDialog="updateDialog" :djywbm="djywbm" :key="key" /> |
5 | </dialogBox> | 5 | </dialogBox> |
6 | </template> | 6 | </template> |
7 | <script> | 7 | <script> |
... | @@ -24,12 +24,12 @@ export default { | ... | @@ -24,12 +24,12 @@ export default { |
24 | this.myValue = val | 24 | this.myValue = val |
25 | this.key++ | 25 | this.key++ |
26 | if (this.$route.query.sqywbm) { | 26 | if (this.$route.query.sqywbm) { |
27 | let dd = queueDjywmc(this.$route.query.sqywbm, { 'target': '#slectBdc' }) | 27 | let dd = queueDjywmc(this.$route.query.sqywbm) |
28 | this.editItem = this.loadView(dd) | 28 | this.editItem = this.loadView(dd) |
29 | } | 29 | } |
30 | }, | 30 | }, |
31 | 'djywbm' (val) { | 31 | 'djywbm' (val) { |
32 | let dd = queueDjywmc(val, { 'target': '#slectBdc' }) | 32 | let dd = queueDjywmc(val) |
33 | this.editItem = this.loadView(dd) | 33 | this.editItem = this.loadView(dd) |
34 | } | 34 | } |
35 | }, | 35 | }, | ... | ... |
... | @@ -66,7 +66,7 @@ | ... | @@ -66,7 +66,7 @@ |
66 | <el-button type="primary" :disabled="btnDisabled" @click="bthSelectClick">选择不动产</el-button> | 66 | <el-button type="primary" :disabled="btnDisabled" @click="bthSelectClick">选择不动产</el-button> |
67 | </div> | 67 | </div> |
68 | </div> | 68 | </div> |
69 | <fqsqDialog v-model="isDialog" :djywbm="djywbm"/> | 69 | <fqsqDialog v-model="isDialog" :djqxObj="djqxObj" :bsmSqyw="bsmSqyw" :djywbm="djywbm" /> |
70 | </div> | 70 | </div> |
71 | </template> | 71 | </template> |
72 | <script> | 72 | <script> |
... | @@ -87,7 +87,13 @@ export default { | ... | @@ -87,7 +87,13 @@ export default { |
87 | djqxList: [], | 87 | djqxList: [], |
88 | isDialog: false, | 88 | isDialog: false, |
89 | btnDisabled: true, | 89 | btnDisabled: true, |
90 | djywbm: '' | 90 | djywbm: '', |
91 | |||
92 | djqxObj: { | ||
93 | djqxbm: '', | ||
94 | djqxmc: '' | ||
95 | }, | ||
96 | bsmSqyw: '' | ||
91 | } | 97 | } |
92 | }, | 98 | }, |
93 | components: { | 99 | components: { |
... | @@ -122,13 +128,12 @@ export default { | ... | @@ -122,13 +128,12 @@ export default { |
122 | this.$set(item, 'cselect', false) | 128 | this.$set(item, 'cselect', false) |
123 | }) | 129 | }) |
124 | item.cselect = true | 130 | item.cselect = true |
125 | Cookies.set("djqxObj", JSON.stringify({ | 131 | this.djqxObj.djqxbm = item.nodecode |
126 | 'djqxbm': item.nodecode, | 132 | this.djqxObj.djqxmc = item.djqxmc |
127 | 'djqxmc': item.nodename | 133 | |
128 | })) | ||
129 | if (item.sffqlc == '1') { | 134 | if (item.sffqlc == '1') { |
130 | this.btnDisabled = false | 135 | this.btnDisabled = false |
131 | Cookies.set("bsmSqyw", item.bsmSqyw) | 136 | this.bsmSqyw = item.bsmSqyw |
132 | this.djywbm = item.djywbm | 137 | this.djywbm = item.djywbm |
133 | console.log(this.djywbm, 'this.djywbm'); | 138 | console.log(this.djywbm, 'this.djywbm'); |
134 | } | 139 | } | ... | ... |
-
Please register or sign in to post a comment