selectQjzdjbxx.vue 4.55 KB
<template>
  <div class="from-clues">
    <!-- 表单部分 国有建设用地使用权 -->
    <div class="from-clues-header">
      <el-form :model="queryForm" ref="queryForm">
        <el-row>
          <el-col :span="8">
            <el-form-item label="不动产单元号">
              <el-input placeholder="请输入不动产单元号" maxlength="28" 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.trim="queryForm.zl" clearable class="width300px">
              </el-input>
            </el-form-item>
          </el-col>
          <el-col :span="6" class="btnColRight">
            <el-form-item>
              <el-button type="primary" @click="resetForm(true)">重置</el-button>
              <el-button type="primary" @click="handleSearch">查询</el-button>
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
    </div>
    <!-- 表格 -->
    <div class="from-clues-content loadingtext">
    <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300"
        :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="$popupCacel">取消</el-button>
      <el-button type="primary" plain @click="submitForm">发起申请</el-button>
    </div>
  </div>
</template>
<script>
  //首次登记
  import store from '@/store/index.js'
  import { datas, sendThis } from "../javascript/selectQjzdjbxx.js";
  import { defaultParameters } from "../javascript/publicDefaultPar.js";
  import table from "@/utils/mixin/table";
  import jump from "./mixin/jump";
  import { startBusinessFlow, selectZdjbxx} from "@/api/ywbl.js";
  export default {
    mixins: [table, jump],
    props: {
      isJump: { type: Boolean, default: false },
      sqywInfo: { type: Object, default: () => { } },
    },
    data () {
      return {
        queryForm: defaultParameters.defaultParameters(),
         tableData: {
          total: 0,
          columns: datas.columns(),
          data: [],
        },
         radioVal: "",
        bdcdysz: [],
        bsmSqyw:
          this.sqywInfo.nodetype === "djlx"
            ? this.sqywInfo.bsmSqyw
            : this.sqywInfo.parentid,
      };
    },
    mounted () {
      sendThis(this);
    },
    methods: {
      queryClick () {
        this.$startLoading();
        this.queryForm.sqywbm = this.sqywInfo.djywbm;
        selectZdjbxx({ ...this.queryForm, ...this.pageData }).then((res) => {
          this.$endLoading();
          if (res.code === 200) {
            let { total, records } = res.result;
            this.tableData.total = total;
            this.tableData.data = records;
          //   this.tableData.columns.splice(0, 1,{
          //   label: '选择',
          //   width: '50px',
          //   render: (h, scope) => {
          //     return (
          //       <div class="orgColumn">
          //         <el-radio v-model={this.radioVal} label={scope.row.bdcdyh}>
          //           &ensp;
          //         </el-radio>
          //       </div>
          //     )
          //   }
          // })
          }
        });
      },

      submitForm () {
        if (this.bdcdysz.length == 0) {
          this.$alert("请至少选择一条数据");
          return;
        }
        startBusinessFlow({
          bsmSqyw: this.bsmSqyw,
          bdcdysz: this.bdcdysz,
          djqxbm: this.sqywInfo.nodetype == "djqx" ? this.sqywInfo.nodecode : "",
          djqxmc: this.sqywInfo.nodetype == "djqx" ? this.sqywInfo.nodename : "",
        }).then((res) => {
          if (res.code == 200) {
            this.$message({
              showClose: true,
              message: "发起申请成功",
              type: "success",
            });
            if (!this.isJump) {
              this.jump(res.result, this.djywbm);
            } else {
              store.dispatch('user/refreshPage', true);
            }
          } else {
            this.$alert(res.message);
          }
        });
      },
      handleSelectionChange (val) {
        this.bdcdysz = val;
      },

    },
  };
</script>
<style scoped lang="scss">
  @import "~@/styles/mixin.scss";
  @import "~@/styles/public.scss";
</style>