slxx300.vue 10.9 KB
0
<!--
 * @Description:
 * @Autor: renchao
 * @LastEditTime: 2023-07-25 09:23:42
-->
<template>
  <!-- 受理信息 -->
  <div class="slxx loadingtext">
    <el-form
      :model="ruleForm"
      :rules="rules"
      ref="ruleForm"
      :label-position="flag ? 'top' : ''"
      :inline="flag"
      label-width="120px"
    >
      <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''">
        <div class="slxx_title title-block">
          受理信息
          <div class="triangle"></div>
        </div>
        <el-row :gutter="10">
          <el-col :span="8">
            <el-form-item label="业务号:">
              <el-input disabled v-model="ruleForm.flow.ywh"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="受理人员:">
              <el-input disabled v-model="ruleForm.slsq.slry"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="受理时间:">
              <el-input disabled v-model="ruleForm.slsq.slsj"></el-input>
            </el-form-item>
          </el-col>
        </el-row>
        <el-row :gutter="10">
          <el-col :span="8">
            <el-form-item label="权利类型:">
              <el-input disabled v-model="ruleForm.sldy.qllxmc"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="登记类型:">
              <el-input disabled v-model="ruleForm.sldy.djlxmc"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="登记情形:">
              <el-input disabled v-model="ruleForm.slsq.djqxmc"></el-input>
            </el-form-item>
          </el-col>
        </el-row>
        <div
          class="slxx_title title-block flex"
          style="justify-content: space-between"
        >
          不动产单元情况
          <el-button @click="compare">变化情况对比+</el-button>
        </div>
        <el-row :gutter="10">
          <el-col :span="8">
            <el-form-item label="原不动产权证号:">
              <el-input disabled v-model="ruleForm.sldy.ybdcqzsh"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="不动产单元号:">
              <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="权利性质:">
              <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input>
            </el-form-item>
          </el-col>
        </el-row>
        <el-row :gutter="10">
          <el-col :span="8">
            <el-form-item label="宗地面积:">
              <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="土地用途:">
              <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="8">
            <el-form-item label="权利设定方式:">
              <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input>
            </el-form-item>
          </el-col>
        </el-row>
        <el-row :gutter="10">
          <el-col :span="8">
            <el-form-item label="取得价格:">
              <div style="display: flex">
                <el-input
                  v-model="ruleForm.jsydsyq.qdjg"
                  style="width: 500%"
                   oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"
                  disabled
                ></el-input>
                <el-select v-model="ruleForm.jsydsyq.jedw" disabled>
                  <el-option
                    v-for="item in dictData['A57']"
                    :key="item.dcode"
                    :label="item.dname"
                    :value="item.dcode"
                  >
                  </el-option>
                </el-select>
              </div>
            </el-form-item>
          </el-col>

          <el-col :span="16">
            <el-form-item label="坐落:">
              <el-input disabled v-model="ruleForm.qlxx.zl"></el-input>
            </el-form-item>
          </el-col>
        </el-row>
        <!-- <el-row :gutter="10">
          <el-col :span="8">
            <el-form-item label="使用期限:">
              <el-input disabled v-model="ruleForm.jsydsyq.tdsyqx"></el-input>
            </el-form-item>
          </el-col>

          <el-col :span="16">
            <el-form-item label="使用权起止时间:">
              <el-input disabled v-model="ruleForm.jsydsyq.syqqzsj"></el-input>
            </el-form-item>
          </el-col>
        </el-row> -->
        <el-row :gutter="10">
          <el-col>
            <el-form-item label="附记:" prop="fj">
              <el-input
                type="textarea"
                v-model="ruleForm.jsydsyq.fj"
                :disabled="!ableOperation"
              ></el-input>
            </el-form-item>
          </el-col>
        </el-row>
        <div class="slxx_title title-block">
          土地用途
          <div class="triangle"></div>
        </div>
        <tdytTable
          :tableData="ruleForm.tdytqxList"
          :ableOperation="ableOperation"
          @upDateTdytxxList="upDateTdytxxList"
        />
        <div class="slxx_title title-block">
          权利人信息
          <div class="triangle"></div>
        </div>
        <!-- <el-divider content-position="left"><i
            style="background-color:#3498db;font-size:16px;color:#fff !important;border-radius: 5px 5px 5px 0px;margin-bottom:10px;"
            class="el-icon-edit-outline">权利人信息</i></el-divider> -->
        <el-row :gutter="10">
          <el-col :span="14">
            <el-form-item label="共有方式:">
              <el-radio-group
                :disabled="!ableOperation"
                v-model="ruleForm.sldy.gyfs"
              >
                <el-radio label="0">单独所有</el-radio>
                <el-radio label="1">共同共有</el-radio>
                <el-radio label="2">按份所有</el-radio>
                <el-radio label="3">其它共有</el-radio>
              </el-radio-group>
            </el-form-item>
          </el-col>
          <el-col :span="5" v-show="ruleForm.gyfs == '2'">
            <el-form-item label="是否分别持证:">
              <el-radio-group
                v-model="ruleForm.sldy.sqfbcz"
                :disabled="!ableOperation"
              >
                <el-radio label="1"></el-radio>
                <el-radio label="0"></el-radio>
              </el-radio-group>
            </el-form-item>
          </el-col>
          <el-col :span="5" v-show="ruleForm.gyfs == '2'">
            <el-form-item label="持证人:">
              <el-select
                v-model="ruleForm.czr"
                placeholder="持证人"
                :disabled="!ableOperation"
              >
                <el-option
                  v-for="item in czrOptions"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </el-select>
            </el-form-item>
          </el-col>
        </el-row>
        <qlrCommonTable
          :tableData="ruleForm.qlrList"
          :disabled="!ableOperation"
          @upDateQlrxxList="upDateQlrxxList"
          :gyfs="ruleForm.sldy.gyfs"
        />
        <div class="slxx_title title-block">
          登记原因
          <div class="triangle"></div>
        </div>
        <el-row :gutter="10">
          <el-col>
            <el-form-item label="登记原因:" prop="djyy">
              <el-input
                class="textArea"
                type="textarea"
                :disabled="!ableOperation"
                v-model="ruleForm.jsydsyq.djyy"
              >
              </el-input>
            </el-form-item>
          </el-col>
        </el-row>
      </div>
      <el-row class="btn" v-if="ableOperation">
        <el-form-item>
          <el-button type="primary" @click="onSubmit">保存</el-button>
        </el-form-item>
      </el-row>
    </el-form>
  </div>
</template>
<script>
import { mapGetters } from "vuex";
import qlrCommonTable from "@/views/workflow/components/qlrCommonTable";
import tdytTable from "@/views/workflow/components/tdytTable";
import { Init, saveData } from "@/api/workflow/jsydsyqFlow.js";
export default {
  mounted() {
    this.ableOperation = this.$parent.currentSelectTab.ableOperation;
    this.propsParam = this.$attrs;
    var formdata = new FormData();
    this.$startLoading();
    formdata.append("bsmSldy", this.propsParam.bsmSldy);
    formdata.append("djlx", this.propsParam.djlx);
    formdata.append("isEdit", this.ableOperation);
    Init(formdata).then((res) => {
      if (res.code === 200 && res.result) {
        this.ruleForm = res.result;
      }
      this.$endLoading();
    });
  },
  components: { qlrCommonTable, tdytTable },
  computed: {
    ...mapGetters(["dictData", "flag"]),
  },
  data() {
    return {
      //表单是否可操作
      ableOperation: true,
      disabled: true,
      czrOptions: [],
      ruleForm: {
        slywxx: {},
        qlxx: {},
        zdjbxx: {},
        jsydsyq: {},
      },
      //传递参数
      propsParam: {},
      rules: {},
    };
  },
  methods: {
    // 更新土地用途信息
    /**
     * @description: 更新土地用途信息
     * @param {*} val
     * @author: renchao
     */
    upDateTdytxxList(val) {
      this.ruleForm.tdytqxList && (this.ruleForm.tdytqxList = _.cloneDeep(val));
      this.key++;
    },
    // 更新权利人信息
    /**
     * @description: 更新权利人信息
     * @param {*} val
     * @author: renchao
     */
    upDateQlrxxList(val) {
      this.ruleForm.qlrList = _.cloneDeep(val);
    },
    /**
     * @description: onSubmit
     * @author: renchao
     */
    onSubmit() {
      saveData(this.ruleForm).then((res) => {
        if (res.code === 200) {
          this.$message({
            showClose: true,
            message: "保存成功!",
            type: "success",
          });
          this.$store.dispatch("user/refreshPage", true);
        } else {
          this.$message({
            showClose: true,
            message: res.message,
            type: "error",
          });
        }
      });
    },
    /**
     * @description: compare
     * @author: renchao
     */
      compare() {
        console.log("this.ruleForm",this.ruleForm);
     this.$popupDialog(
        this.ruleForm.qlxx.qllxmc,
        "registerBook/comparison",
        { bsmQlxx: this.ruleForm.qlxx.bsmQlxx,
         dqqllx: 'JSYDSYQ',
        },
        "80%",
        true
      )
    }
  }
}
</script>
<style scoped lang="scss">
@import "~@/styles/public.scss";
@import "~@/styles/slxx/slxx.scss";
</style>