0aa00936 by tianhaohao@pashanhoo.com

修改一并申请对应的页面规则

1 parent e20c3cc2
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
37 </div> 37 </div>
38 <!-- 表格 --> 38 <!-- 表格 -->
39 <div class="from-clues-content loadingtext"> 39 <div class="from-clues-content loadingtext">
40 国有房屋变更信息 40 预告买卖登记信息
41 <el-table 41 <el-table
42 :data="tableData.data" 42 :data="tableData.data"
43 height="210" 43 height="210"
...@@ -168,7 +168,7 @@ ...@@ -168,7 +168,7 @@
168 @current-change="handleCurrentChange"></el-pagination> 168 @current-change="handleCurrentChange"></el-pagination>
169 </div> 169 </div>
170 <div class="from-clues-content loadingtext"> 170 <div class="from-clues-content loadingtext">
171 抵押变更信息 171 预告抵押信息
172 <lb-table ref="table" :pagination="false" :calcHeight="500" :column="tableData.columns" 172 <lb-table ref="table" :pagination="false" :calcHeight="500" :column="tableData.columns"
173 :data="tableData.dataList"> 173 :data="tableData.dataList">
174 </lb-table> 174 </lb-table>
...@@ -185,10 +185,10 @@ ...@@ -185,10 +185,10 @@
185 import store from '@/store/index.js' 185 import store from '@/store/index.js'
186 import table from "@/utils/mixin/table"; 186 import table from "@/utils/mixin/table";
187 import { ywPopupDialog } from "@/utils/popup.js"; 187 import { ywPopupDialog } from "@/utils/popup.js";
188 import { datas, sendThis } from "../javascript/selectFwbjDybgSplitMerge.js"; 188 import { datas, sendThis } from "../javascript/selectYgdy.js";
189 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 189 import { defaultParameters } from "../javascript/publicDefaultPar.js";
190 import { selectYgdj200, selectDiyaq } from "@/api/ywsq.js"; 190 import { selectYgdj200, selectYgdy } from "@/api/ywsq.js";
191 import { startBusinessFlow } from "@/api/workFlow.js"; 191 import { startTogetherFlow } from "@/api/workFlow.js";
192 export default { 192 export default {
193 mixins: [table, jump], 193 mixins: [table, jump],
194 props: { 194 props: {
...@@ -266,7 +266,7 @@ ...@@ -266,7 +266,7 @@
266 getCurrentRow (row) { 266 getCurrentRow (row) {
267 this.radioVal = row.bdcdyh; 267 this.radioVal = row.bdcdyh;
268 this.bdcdysz = [row] 268 this.bdcdysz = [row]
269 selectDiyaq({ bdcdyh: this.radioVal, currentPage: 1, pageSize: 10 }).then((res) => { 269 selectYgdy({ bdcdyh: this.radioVal, currentPage: 1, pageSize: 10 }).then((res) => {
270 if (res.code === 200) { 270 if (res.code === 200) {
271 this.tableData.dataList = res.result.records 271 this.tableData.dataList = res.result.records
272 this.bdcdysz = [this.bdcdysz[0], ...this.tableData.dataList] 272 this.bdcdysz = [this.bdcdysz[0], ...this.tableData.dataList]
...@@ -305,7 +305,7 @@ ...@@ -305,7 +305,7 @@
305 */ 305 */
306 submitForm () { 306 submitForm () {
307 this.loading = true 307 this.loading = true
308 startBusinessFlow({ 308 startTogetherFlow({
309 bsmSqyw: this.sqywInfo.bsmSqyw, 309 bsmSqyw: this.sqywInfo.bsmSqyw,
310 bdcdysz: this.bdcdysz, 310 bdcdysz: this.bdcdysz,
311 }).then((res) => { 311 }).then((res) => {
......
...@@ -45,6 +45,17 @@ class data extends filter { ...@@ -45,6 +45,17 @@ class data extends filter {
45 } 45 }
46 }, 46 },
47 { 47 {
48 label: "业务号",
49 width: '120',
50 render: (h, scope) => {
51 return (
52 <el-tooltip effect="dark" content={scope.row.ywh} placement="top" popper-class="tooltip-width">
53 <span class="ellipsis-table"> {scope.row.ywh}</span>
54 </el-tooltip>
55 )
56 }
57 },
58 {
48 label: "权利类型", 59 label: "权利类型",
49 width: '120', 60 width: '120',
50 render: (h, scope) => { 61 render: (h, scope) => {
......
...@@ -89,12 +89,11 @@ export function queueDjywmc (djywbm, djqxbm) { ...@@ -89,12 +89,11 @@ export function queueDjywmc (djywbm, djqxbm) {
89 case "B41400": //预告抵押注销 89 case "B41400": //预告抵押注销
90 vm = "selectYgdy"; 90 vm = "selectYgdy";
91 break; 91 break;
92 case "C40100": //一并申请首次 92 case "C40100": //预告买卖抵押首次一并申请
93 vm = "selectYbsc"; 93 vm = "selectYbsc";
94 break; 94 break;
95 case "C40300": //一并申请变更 95 case "C40300": //预告买卖变更+预告抵押变更一并申请
96 case "C40400": //一并申请注销 96 case "C40400": //预告买卖注销+预告抵押注销一并申请
97 // vm = "selectYbbg";
98 vm = "selectYbbgSplitMerge" 97 vm = "selectYbbgSplitMerge"
99 break; 98 break;
100 case "C04371": //一并国有房屋转移 99 case "C04371": //一并国有房屋转移
......