Blame view

src/components/business/qlfQlDyaq.vue 11.7 KB
任超 committed
1 2 3 4 5 6 7 8 9 10
<template>
  <div class="otherRelevant itemForm">
    <el-form :model="ruleForm" :rules="rules" ref="formList" label-width="135px" :key="key">
      <el-row>
        <el-col :span="8">
          <el-form-item prop="YSDM">
            <span slot="label">
              要素代码: <br />
              <p class="label-detail">(YSDM)</p>
            </span>
田浩浩 committed
11
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.ysdm" maxlength="10"
任超 committed
12 13 14 15 16 17 18 19 20 21
              placeholder="要素代码"></el-input>
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="YWH">
            <span slot="label">
              业务号: <br />
              <p class="label-detail">(YWH)</p>
            </span>
田浩浩 committed
22
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.ywh" maxlength="20"
任超 committed
23 24 25 26 27 28 29 30 31 32
              placeholder="业务号"></el-input>
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="BDCDYH">
            <span slot="label">
              不动产单元号: <br />
              <p class="label-detail">(BDCDYH)</p>
            </span>
田浩浩 committed
33
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.bdcdyh" maxlength="28"
任超 committed
34 35 36 37 38 39 40 41 42 43 44 45
              placeholder="不动产单元号"></el-input>
          </el-form-item>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="8">
          <el-form-item prop="SCYWH">
            <span slot="label">
              上次业务号: <br />
              <p class="label-detail">(SCYWH)</p>
            </span>
田浩浩 committed
46
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.scywh" placeholder="上次业务号"></el-input>
任超 committed
47 48 49 50 51 52 53 54 55
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="DYJELX">
            <span slot="label">
              抵押金额类型: <br />
              <p class="label-detail">(DYJELX)</p>
            </span>
田浩浩 committed
56
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.dyjelx" placeholder="抵押金额类型"></el-input>
任超 committed
57 58 59 60 61 62 63 64 65
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="DYBDCLX">
            <span slot="label">
              抵押不动产类型: <br />
              <p class="label-detail">(DYBDCLX)</p>
            </span>
田浩浩 committed
66
            <el-select :disabled="$store.state.business.Edit" v-model="ruleForm.dybdclx" placeholder="抵押不动产类型">
任超 committed
67 68 69 70 71 72 73 74 75 76 77 78 79 80
              <el-option v-for="item in dicData['A27']" :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="DYR">
            <span slot="label">
              抵押人: <br />
              <p class="label-detail">(DYR)</p>
            </span>
田浩浩 committed
81
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.dyr" placeholder="抵押人"></el-input>
任超 committed
82 83 84 85 86 87 88 89 90
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="DYFS">
            <span slot="label">
              抵押方式: <br />
              <p class="label-detail">(DYFS)</p>
            </span>
田浩浩 committed
91
            <el-select :disabled="$store.state.business.Edit" v-model="ruleForm.dyfs" placeholder="抵押方式">
任超 committed
92 93 94 95 96 97 98 99 100 101 102 103
              <el-option v-for="item in dicData['A28']" :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>
田浩浩 committed
104
            <el-select :disabled="$store.state.business.Edit" v-model="ruleForm.djlx" placeholder="登记类型">
任超 committed
105 106 107 108 109 110 111 112 113 114 115 116 117 118
              <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="BDBZZQSE" :rules="{ type: 'number' }">
            <span slot="label">
              被担保主债权数额: <br />
              <p class="label-detail">(BDBZZQSE)</p>
            </span>
田浩浩 committed
119
            <el-input :disabled="$store.state.business.Edit" v-model.number="ruleForm.bdbzzqse" type="number"
任超 committed
120 121 122 123 124 125 126 127 128 129 130
              v-only-number="{ max: 999999999999999, min: 0, precision: 4 }" placeholder="被担保主债权数额"></el-input>
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="ZWLXQSSJ">
            <span slot="label">
              债务履行起始时间: <br />
              <p class="label-detail">(ZWLXQSSJ)</p>
            </span>
            <el-date-picker :disabled="$store.state.business.Edit" type="datetime" placeholder="选择开始日期"
田浩浩 committed
131
              :picker-options="pickerOptionsStart" clearable v-model="ruleForm.zwlxqssj"
任超 committed
132 133 134 135 136 137 138 139 140 141 142
              value-format="yyyy-MM-dd HH:mm:ss"></el-date-picker>
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="ZWLXJSSJ">
            <span slot="label">
              债务履行结束时间: <br />
              <p class="label-detail">(ZWLXJSSJ)</p>
            </span>
            <el-date-picker :disabled="$store.state.business.Edit" type="datetime" placeholder="选择结束日期" clearable
田浩浩 committed
143
              :picker-options="pickerOptionsEnd" v-model="ruleForm.zwlxjssj" value-format="yyyy-MM-dd HH:mm:ss">
任超 committed
144 145 146 147 148 149 150 151 152 153 154 155
            </el-date-picker>
          </el-form-item>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="8">
          <el-form-item prop="ZGZQQDSS">
            <span slot="label">
              最高债权确定事实: <br />
              <p class="label-detail">(ZGZQQDSS)</p>
            </span>
田浩浩 committed
156
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.zgzqqdss"
任超 committed
157 158 159 160 161 162 163 164 165 166
              placeholder="最高债权确定事实"></el-input>
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="ZGZQSE" :rules="{ type: 'number' }">
            <span slot="label">
              最高债权数额: <br />
              <p class="label-detail">(ZGZQSE)</p>
            </span>
田浩浩 committed
167
            <el-input :disabled="$store.state.business.Edit" v-model.number="ruleForm.zgzqse" type="number"
任超 committed
168 169 170 171 172 173 174 175 176 177
              v-only-number="{ max: 999999999999999, min: 0, precision: 4 }" placeholder="最高债权数额"></el-input>
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="ZXDYYWH">
            <span slot="label">
              注销抵押业务号: <br />
              <p class="label-detail">(ZXDYYWH)</p>
            </span>
田浩浩 committed
178
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.zxdyywh"
任超 committed
179 180 181 182 183 184 185 186 187 188 189 190
              placeholder="注销抵押业务号"></el-input>
          </el-form-item>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="8">
          <el-form-item prop="DJJG">
            <span slot="label">
              登记机构: <br />
              <p class="label-detail">(DJJG)</p>
            </span>
田浩浩 committed
191
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.djjg" placeholder="登记机构"></el-input>
任超 committed
192 193 194 195 196 197 198 199 200 201
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="DJSJ">
            <span slot="label">
              登记时间: <br />
              <p class="label-detail">(DJSJ)</p>
            </span>
            <el-date-picker :disabled="$store.state.business.Edit" type="datetime" placeholder="登记时间" clearable
田浩浩 committed
202
              v-model="ruleForm.djsj" value-format="yyyy-MM-dd HH:mm:ss">
任超 committed
203 204 205 206 207 208 209 210 211 212
            </el-date-picker>
          </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>
田浩浩 committed
213
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.dbr" placeholder="登簿人"></el-input>
任超 committed
214 215 216 217 218 219 220 221 222 223 224
          </el-form-item>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="8">
          <el-form-item prop="FJ">
            <span slot="label">
              附记: <br />
              <p class="label-detail">(FJ)</p>
            </span>
田浩浩 committed
225
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.fj" placeholder="附记"></el-input>
任超 committed
226 227 228 229 230 231 232 233 234
          </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>
田浩浩 committed
235
            <el-select :disabled="$store.state.business.Edit" v-model="ruleForm.qszt" placeholder="权属状态">
任超 committed
236 237 238 239 240 241 242 243 244 245 246 247
              <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-col :span="8">
          <el-form-item prop="QXDM">
            <span slot="label">
              区县代码: <br />
              <p class="label-detail">(QXDM)</p>
            </span>
田浩浩 committed
248
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.qxdm" placeholder="区县代码"></el-input>
任超 committed
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
          </el-form-item>
        </el-col>
      </el-row>
    </el-form>
    <message-tips ref="msg" />
  </div>
</template>
<script>
// 抵押权信息
import business from '@/api/business'
import ruleMixin from '@/mixins/ruleMixin.js'
export default {
  mixins: [ruleMixin],
  props: {
    bsmSjsb: {
      type: String,
      default: ''
    },
蔡俊立 committed
267
    bsmYwsjb: {
任超 committed
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
      type: String,
      default: ''
    }
  },
  data () {
    return {
      pickerOptionsStart: {
        // 禁止选择
        disabledDate: time => {
          let endDateVal = this.ruleForm.ZWLXJSSJ;
          if (endDateVal) {
            return time.getTime() > new Date(endDateVal).getTime();
          }
        }
      },
      pickerOptionsEnd: {
        disabledDate: time => {
          let beginDateVal = this.ruleForm.ZWLXQSSJ;
          if (beginDateVal) {
            return (
              time.getTime() <
              new Date(beginDateVal).getTime()
            );
          }
        }
      },
      ruleForm: {
        YSDM: '',
        YWH: '',
        BDCDYH: '',
        SCYWH: '',
        DYJELX: '',
        DYBDCLX: '',
        DYR: '',
        DYFS: '',
        DJLX: '',
        djyy: '',
        zjjzwzl: '',
        zjjzwdyfw: '',
        BDBZZQSE: '',
        ZWLXQSSJ: '',
        ZWLXJSSJ: '',
        ZGZQQDSS: '',
        ZGZQSE: '',
        ZXDYYWH: '',
        zxdyyy: '',
        zxsj: '',
        bdcdjzmh: '',
        DJJG: '',
        DBR: '',
        DJSJ: '',
        FJ: '',
        QSZT: '',
        QXDM: ''
      }
    }
  },
  methods: {
    async featchData () {
      try {
        let { result: res } = await business.getQlfQlDyaqById(this.bsmSjsb)
        this.ruleForm = res
330
        //this.featchRule()
任超 committed
331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
      } catch (error) {
        this.$refs.msg.messageShow()
      }
    },
    handleUpdateForm () {
      return new Promise(async (resolve, reject) => {
        try {
          let res = await business.updateQlfQlDyaq(this.ruleForm)
          // this.$refs['formList'].resetFields();
          resolve(res.code)
        } catch (error) {
          this.$refs.msg.messageShow()
        }
      })
    }
  }
}
</script>
<style scoped lang="scss">
@import "./css/itemForm.scss";
</style>