<template> <div class="from-clues"> <!-- 表单部分 国有建设用地使用权 --> <div class="from-clues-header"> <el-form :model="queryForm" ref="queryForm" label-width="120px"> <el-row> <el-col :span="10"> <el-form-item label="不动产单元号"> <el-input placeholder="请输入不动产单元号" v-model="queryForm.bdcdyh" clearable class="width300px"> </el-input> </el-form-item> </el-col> <el-col :span="10"> <el-form-item label="坐落"> <el-input placeholder="请输入坐落" v-model="queryForm.zl" clearable class="width300px"> </el-input> </el-form-item> </el-col> <el-col :span="4" class="btnCol"> <el-form-item> <el-button type="primary" @click="fetchData">查询</el-button> </el-form-item> </el-col> </el-row> </el-form> </div> <!-- 表格 --> <div class="from-clues-content"> <lb-table border :page-size="pageData.pageSize" :heightNum="400" :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" :data="tableData.data"> </lb-table> </div> <div class="submit_button"> <el-button @click="closeDialog">取消</el-button> <el-button type="primary" plain @click="submitForm" :loading="saveloding">发起申请</el-button> </div> </div> </template> <script> //首次登记 import Cookies from 'js-cookie' import { datas, sendThis } from "../javascript/jsydsyq100.js"; import { defaultParameters } from "../javascript/publicDefaultPar.js"; import table from "@/utils/mixin/table"; import jump from "../components/mixin/jump"; import { selectScBdcdy, startBusinessFlow } from "@/api/ywbl.js"; export default { mixins: [table, jump], props: { isJump: { type: Boolean, default: false }, djywbm: { type: String, default: '' } }, data () { return { queryForm: defaultParameters.defaultParameters(), qllxs: [], tableData: { total: 0, columns: datas.columns(), data: [], }, bdcdysz: [], saveloding: false, }; }, mounted () { sendThis(this); }, methods: { closeDialog () { this.$emit("closeDialog"); }, fetchData () { this.queryForm.sqywbm = this.djywbm; selectScBdcdy({ ...this.queryForm, ...this.pageData }).then((res) => { if (res.code === 200) { let { total, records } = res.result; this.tableData.total = total; this.tableData.data = records; } }); }, submitForm () { if (this.bdcdysz.length == 0) { this.$message.error("请至少选择一条数据"); return; } this.saveloding = true; startBusinessFlow({ bsmSqyw: Cookies.get("bsmSqyw"), bdcdysz: this.bdcdysz, djqxbm: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxbm : '', djqxmc: Cookies.get("djqxObj") ? JSON.parse(Cookies.get("djqxObj"))?.djqxmc : '', }).then((res) => { this.saveloding = false; if (res.code == 200) { this.$message({ showClose: true, message: '发起申请成功', type: 'success' }) if (!this.isJump) { this.jump(res.result, this.djywbm) } else { this.$emit('updateDialog', true) } } else { this.$message.error(res.message); } }); }, handleSelectionChange (val) { this.bdcdysz = val; }, } } </script> <style scoped lang="scss"> @import "~@/styles/mixin.scss"; @import "~@/styles/public.scss"; </style>