fwsyq.vue 4.37 KB
<template>
  <div class="from-clues">
    <div class="from-clues-header">
      <el-tabs v-model="activeName" @tab-click="handleTabClick">
        <el-tab-pane label="自然幢" name="zrz"></el-tab-pane>
        <el-tab-pane label="户" name="h"></el-tab-pane>
      </el-tabs>
      <el-form :model="queryForm" ref="queryForm" label-width="110px">
        <el-row>
          <el-col :span="6">
            <el-form-item label="不动产单元号">
              <el-input placeholder="不动产单元号" v-model="queryForm.bdcdyh" clearable>
              </el-input>
            </el-form-item>
          </el-col>
          <el-col :span="6">
            <el-form-item label="坐落">
              <el-input placeholder="请输入坐落" v-model="queryForm.zl" clearable>
              </el-input>
            </el-form-item>
          </el-col>
          <el-col :span="12" class="btnColRight">
            <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">发起申请</el-button>
    </div>
  </div>
</template>
<script>
//国有建设用地使用权/房屋使用权
import Cookies from 'js-cookie'
import { datas, sendThis } from "../javascript/fwsyq.js";
import table from "@/utils/mixin/table";
import jump from "@/views/ywbl/ywsq/components/mixin/jump";
import { selectScBdcdy, startBusinessFlow, choiceBdcdy } from "@/api/ywbl.js";
export default {
  mixins: [table, jump],
  props: {
    isJump: { type: Boolean, default: false },
    djywbm: { type: String, default: '' }
  },
  data () {
    return {
      activeName: 'zrz',
      queryForm: {
        qllx: '',
        bdcdyh: '',
        ywh: '',
        bdcqzh: ''
      },

      tableData: {
        total: 0,
        columns: datas.columns(),
        data: [],
      },
      bdcdysz: []
    };
  },
  mounted () {
    sendThis(this)
  },
  methods: {
    closeDialog () {
      this.$emit("closeDialog");
    },
    fetchData () {
      this.queryForm.sqywbm = this.djywbm;
      this.queryForm.fwfl = this.activeName;
      selectScBdcdy({ ...this.queryForm, ...this.pageData  }).then((res) => {
        if (res.code === 200) {
          let { total, records } = res.result;
          this.tableData.total = total;
          this.tableData.data = records;
        }
      })
    },
    handleTabClick () {
      this.pageData.currentPage = 1;
      this.fetchData()
    },
    submitForm () {
      if (this.bdcdysz.length == 0) {
        this.$message.error("请至少选择一条数据");
        return;
      }
      if (!this.isJump) {
        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) => {
          if (res.code == 200) {
            this.$message({
              showClose: true,
              message: '发起申请成功',
              type: 'success'
            })
            this.jump(res.result, this.djywbm)
          } else {
            this.$message.error(res.message);
          }
        })
      } else {
        choiceBdcdy({
          bsmSlsq: this.$route.query.bsmSlsq,
          bdcdysz: this.bdcdysz
        }).then(res => {
          if (res.code == 200) {
            this.$message({
              showClose: true,
              message: '发起申请成功',
              type: 'success'
            })
            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>