Blame view

src/components/Business/qlfQlJsydsyq.vue 9.54 KB
yangwei committed
1 2 3 4 5 6 7 8 9 10
<template>
  <div class="landBuildingInfo itemForm">
    <el-form :model="ruleForm" :rules="rules" ref="formList" label-width="108px" :key="key">
      <el-row>
        <el-col :span="8">
          <el-form-item prop="YSDM" class="borderTopNone">
            <span slot="label">
              要素代码: <br />
              <p class="label-detail">(YSDM)</p>
            </span>
11
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.YSDM"></el-input>
yangwei committed
12 13 14 15 16 17 18 19 20
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="BDCDYH" class="borderTopNone">
            <span slot="label">
              不动产单元号: <br />
              <p class="label-detail">(BDCDYH)</p>
            </span>
21
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.BDCDYH"></el-input>
yangwei committed
22 23 24 25 26 27 28 29 30
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="ZDDM" class="borderTopNone">
            <span slot="label">
              宗地代码: <br />
              <p class="label-detail">(ZDDM)</p>
            </span>
31
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.ZDDM"></el-input>
yangwei committed
32 33 34 35 36 37 38 39 40 41 42
          </el-form-item>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="8">
          <el-form-item prop="YWH">
            <span slot="label">
              业务号: <br />
              <p class="label-detail">(YWH)</p>
            </span>
43
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.YWH"></el-input>
yangwei committed
44 45 46 47 48 49 50 51 52
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="QLLX">
            <span slot="label">
              权利类型: <br />
              <p class="label-detail">(QLLX)</p>
            </span>
53
            <el-select :disabled="$store.state.business.Edit" v-model="ruleForm.QLLX">
yangwei committed
54 55 56 57 58 59 60 61 62 63 64 65
              <el-option v-for="item in dicData['A8']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE">
              </el-option>
            </el-select>
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="DJLX">
            <span slot="label">
              登记类型: <br />
              <p class="label-detail">(DJLX)</p>
            </span>
66
            <el-select :disabled="$store.state.business.Edit" v-model="ruleForm.DJLX">
yangwei committed
67 68 69 70 71 72 73 74 75 76 77 78 79 80
              <el-option v-for="item in dicData['A21']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE">
              </el-option>
            </el-select>
          </el-form-item>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="8">
          <el-form-item prop="DJYY">
            <span slot="label">
              登记原因: <br />
              <p class="label-detail">(DJYY)</p>
            </span>
81
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.DJYY"></el-input>
yangwei committed
82 83 84 85 86 87 88 89 90
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="SYQMJ" :rules="{ type: 'number' }">
            <span slot="label">
              使用权面积: <br />
              <p class="label-detail">(SYQMJ)</p>
            </span>
91
            <el-input :disabled="$store.state.business.Edit" type="number"
yangwei committed
92 93 94 95 96 97 98 99 100 101
              v-only-number="{ max: 999999999999999, min: 0, precision: 2 }" v-model.number="ruleForm.SYQMJ"></el-input>
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="QDJG" :rules="{ type: 'number' }">
            <span slot="label">
              取得价格: <br />
              <p class="label-detail">(QDJG)</p>
            </span>
102
            <el-input :disabled="$store.state.business.Edit" type="number"
yangwei committed
103 104 105 106 107 108 109 110 111 112 113 114
              v-only-number="{ max: 999999999999999, min: 0, precision: 4 }" v-model.number="ruleForm.QDJG"></el-input>
          </el-form-item>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="8">
          <el-form-item prop="SYQQSSJ">
            <span slot="label">
              使用权起始时间: <br />
              <p class="label-detail">(SYQQSSJ)</p>
            </span>
115 116
            <el-date-picker :disabled="$store.state.business.Edit" type="datetime" :picker-options="pickerOptionsStart"
              clearable v-model="ruleForm.SYQQSSJ" value-format="yyyy-MM-dd HH:mm:ss"></el-date-picker>
yangwei committed
117 118 119 120 121 122 123 124 125
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="SYQJSSJ">
            <span slot="label">
              使用权结束时间: <br />
              <p class="label-detail">(SYQJSSJ)</p>
            </span>
126 127
            <el-date-picker :disabled="$store.state.business.Edit" type="datetime" :picker-options="pickerOptionsEnd"
              clearable v-model="ruleForm.SYQJSSJ" value-format="yyyy-MM-dd HH:mm:ss"></el-date-picker>
yangwei committed
128 129 130 131 132 133 134 135 136
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="BDCQZH">
            <span slot="label">
              不动产权证号: <br />
              <p class="label-detail">(BDCQZH)</p>
            </span>
137
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.BDCQZH"></el-input>
yangwei committed
138 139 140 141 142 143 144 145 146 147 148
          </el-form-item>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="8">
          <el-form-item prop="QXDM">
            <span slot="label">
              区县代码: <br />
              <p class="label-detail">(QXDM)</p>
            </span>
149
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.QXDM"></el-input>
yangwei committed
150 151 152 153 154 155 156 157 158
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="DJJG">
            <span slot="label">
              登记机构: <br />
              <p class="label-detail">(DJJG)</p>
            </span>
159
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.DJJG"></el-input>
yangwei committed
160 161 162 163 164 165 166 167 168
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="DBR">
            <span slot="label">
              登簿人: <br />
              <p class="label-detail">(DBR)</p>
            </span>
169
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.DBR"></el-input>
yangwei committed
170 171 172 173 174 175 176 177 178 179 180
          </el-form-item>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="8">
          <el-form-item prop="DJSJ">
            <span slot="label">
              登记时间: <br />
              <p class="label-detail">(DJSJ)</p>
            </span>
181 182
            <el-date-picker :disabled="$store.state.business.Edit" type="datetime" clearable v-model="ruleForm.DJSJ"
              value-format="yyyy-MM-dd HH:mm:ss"></el-date-picker>
yangwei committed
183 184 185 186 187 188 189 190 191
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="FJ">
            <span slot="label">
              附记: <br />
              <p class="label-detail">(FJ)</p>
            </span>
192
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.FJ"></el-input>
yangwei committed
193 194 195 196 197 198 199 200 201
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="QSZT">
            <span slot="label">
              权属状态: <br />
              <p class="label-detail">(QSZT)</p>
            </span>
202
            <el-select :disabled="$store.state.business.Edit" v-model="ruleForm.QSZT">
yangwei committed
203 204 205 206 207 208 209 210 211 212 213 214
              <el-option v-for="item in dicData['A22']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE">
              </el-option>
            </el-select>
          </el-form-item>
        </el-col>
      </el-row>
    </el-form>
    <message-tips ref="msg" />
  </div>
</template>
<script>
// 建设用地、宅基地使用权信息
215 216
import qlfQlJsydsyq from "@/api/qlfQlJsydsyq";
import ruleMixin from "@/mixins/ruleMixin.js";
yangwei committed
217 218 219 220 221
export default {
  mixins: [ruleMixin],
  props: {
    bsmSjsb: {
      type: String,
222
      default: "",
yangwei committed
223 224 225
    },
    bsmYwsjb: {
      type: String,
226 227
      default: "",
    },
yangwei committed
228
  },
229
  data() {
yangwei committed
230 231 232
    return {
      pickerOptionsStart: {
        // 禁止选择
233
        disabledDate: (time) => {
yangwei committed
234 235 236 237
          let endDateVal = this.ruleForm.SYQJSSJ;
          if (endDateVal) {
            return time.getTime() > new Date(endDateVal).getTime();
          }
238
        },
yangwei committed
239 240
      },
      pickerOptionsEnd: {
241
        disabledDate: (time) => {
yangwei committed
242 243
          let beginDateVal = this.ruleForm.SYQQSSJ;
          if (beginDateVal) {
244
            return time.getTime() < new Date(beginDateVal).getTime();
yangwei committed
245
          }
246
        },
yangwei committed
247 248
      },
      ruleForm: {
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
        YSDM: "",
        BDCDYH: "",
        ZDDM: "",
        YWH: "",
        QLLX: "",
        DJLX: "",
        DJYY: "",
        SYQMJ: "",
        QDJG: "",
        SYQQSSJ: "",
        SYQJSSJ: "",
        BDCQZH: "",
        QXDM: "",
        DJJG: "",
        DBR: "",
        DJSJ: "",
        FJ: "",
        QSZT: "",
      },
    };
yangwei committed
269 270
  },
  methods: {
271
    async featchData() {
yangwei committed
272
      try {
273 274 275 276
        let { result: res } = await qlfQlJsydsyq.getQlfQlJsydsyqById(
          this.bsmSjsb
        );
        this.ruleForm = res;
yangwei committed
277 278
        //this.featchRule()
      } catch (error) {
279
        this.$refs.msg.messageShow();
yangwei committed
280 281
      }
    },
282
    handleUpdateForm() {
yangwei committed
283 284
      return new Promise(async (resolve, reject) => {
        try {
285
          let res = await qlfQlJsydsyq.updateQlfQlJsydsyq(this.ruleForm);
yangwei committed
286
          // this.$refs['formList'].resetFields();
287
          resolve(res.code);
yangwei committed
288
        } catch (error) {
289
          this.$refs.msg.messageShow();
yangwei committed
290
        }
291 292 293 294
      });
    },
  },
};
yangwei committed
295 296 297 298 299 300
</script>
<style scoped lang="scss">
@import "./css/itemForm.scss";
</style>