Blame view

src/components/Business/kttFwZrz.vue 16 KB
yangwei committed
1 2 3 4
<template>
  <div class="naturalBuilding itemForm">
    <el-form :model="naturalForm" :rules="rules" ref="formList" label-width="115px" :key="key">
      <div v-for="(item, index) in naturalForm.naturalList" :key="index" class="naturalBuilding-item">
任超 committed
5
        <p class="naturalBuilding-name obligee-item-name">自然幢{{ index + 1 }}</p>
yangwei committed
6 7 8 9 10 11 12 13
        <div class="naturalBuilding-list">
          <el-row>
            <el-col :span="8">
              <el-form-item>
                <span slot="label">
                  标识码: <br />
                  <p class="label-detail">(BSM)</p>
                </span>
14 15
                <el-input :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].bsm">
                </el-input>
yangwei committed
16 17 18 19 20 21 22 23 24
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.YSDM'" :rules="rules.YSDM">
                <span slot="label">
                  要素代码: <br />
                  <p class="label-detail">(YSDM)</p>
                </span>
25 26
                <el-input :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].ysdm">
                </el-input>
yangwei committed
27 28 29 30 31 32 33 34 35
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.BDCDYH'" :rules="rules.BDCDYH">
                <span slot="label">
                  不动产单元号: <br />
                  <p class="label-detail">(BDCDYH)</p>
                </span>
36 37
                <el-input :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].bdcdyh">
                </el-input>
yangwei committed
38 39 40 41 42 43 44 45 46 47 48
              </el-form-item>
            </el-col>
          </el-row>

          <el-row>
            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.ZDDM'" :rules="rules.ZDDM">
                <span slot="label">
                  宗地代码: <br />
                  <p class="label-detail">(ZDDM)</p>
                </span>
49 50
                <el-input :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].zddm">
                </el-input>
yangwei committed
51 52 53 54 55 56 57 58 59
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.ZRZH'" :rules="rules.ZRZH">
                <span slot="label">
                  自然幢号: <br />
                  <p class="label-detail">(ZRZH)</p>
                </span>
60 61
                <el-input :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].zrzh">
                </el-input>
yangwei committed
62 63 64 65 66 67 68 69 70
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.XMMC'" :rules="rules.XMMC">
                <span slot="label">
                  项目名称: <br />
                  <p class="label-detail">(XMMC)</p>
                </span>
71 72
                <el-input :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].xmmc">
                </el-input>
yangwei committed
73 74 75 76 77 78 79 80 81 82 83
              </el-form-item>
            </el-col>
          </el-row>

          <el-row>
            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.JZWMC'" :rules="rules.JZWMC">
                <span slot="label">
                  建筑物名称: <br />
                  <p class="label-detail">(JZWMC)</p>
                </span>
84 85
                <el-input :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].jzwmc">
                </el-input>
yangwei committed
86 87 88 89 90 91 92 93 94
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.JGRQ'" :rules="rules.JGRQ">
                <span slot="label">
                  竣工日期: <br />
                  <p class="label-detail">(JGRQ)</p>
                </span>
95
                <el-date-picker :disabled="$store.state.business.Edit" type="date" clearable
yangwei committed
96 97 98 99 100 101 102 103 104 105 106
                  v-model="naturalForm.naturalList[index].jgrq" value-format="yyyy-MM-dd"></el-date-picker>
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.JZWGD'" :rules="{ ...rules.JZWGD, ...typeNum }">
                <span slot="label">
                  建筑物高度: <br />
                  <p class="label-detail">(JZWGD)</p>
                </span>
                <el-input :disabled="$store.state.business.Edit"
107
                  v-only-number="{ max: 999999999999999, min: 0, precision: 2 }" type="number"
yangwei committed
108 109 110 111 112 113 114 115 116 117 118 119 120
                  v-model.number="naturalForm.naturalList[index].jzwgd"></el-input>
              </el-form-item>
            </el-col>
          </el-row>

          <el-row>
            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.ZZDMJ'" :rules="{ ...rules.ZZDMJ, ...typeNum }">
                <span slot="label">
                  幢占地面积: <br />
                  <p class="label-detail">(ZZDMJ)</p>
                </span>
                <el-input-number controls-position="right" :disabled="$store.state.business.Edit"
121
                  v-only-number="{ max: 999999999999999, min: 0, precision: 3 }" type="number"
yangwei committed
122 123 124 125 126 127 128 129 130 131 132
                  v-model.number="naturalForm.naturalList[index].zzdmj"></el-input-number>
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.ZYDMJ'" :rules="{ ...rules.ZYDMJ, ...typeNum }">
                <span slot="label">
                  幢用地面积: <br />
                  <p class="label-detail">(ZYDMJ)</p>
                </span>
                <el-input :disabled="$store.state.business.Edit"
133
                  v-only-number="{ max: 999999999999999, min: 0, precision: 3 }" type="number"
yangwei committed
134 135 136 137 138 139 140 141 142 143 144
                  v-model.number="naturalForm.naturalList[index].zydmj"></el-input>
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.YCJZMJ'" :rules="{ ...rules.YCJZMJ, ...typeNum }">
                <span slot="label">
                  预测建筑面积: <br />
                  <p class="label-detail">(YCJZMJ)</p>
                </span>
                <el-input :disabled="$store.state.business.Edit"
145
                  v-only-number="{ max: 999999999999999, min: 0, precision: 3 }" type="number"
yangwei committed
146 147 148 149 150 151 152 153 154 155 156 157 158
                  v-model.number="naturalForm.naturalList[index].ycjzmj"></el-input>
              </el-form-item>
            </el-col>
          </el-row>

          <el-row>
            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.SCJZMJ'" :rules="{ ...rules.SCJZMJ, ...typeNum }">
                <span slot="label">
                  实测建筑面积: <br />
                  <p class="label-detail">(SCJZMJ)</p>
                </span>
                <el-input :disabled="$store.state.business.Edit"
159
                  v-only-number="{ max: 999999999999999, min: 0, precision: 3 }" type="number"
yangwei committed
160 161 162 163 164 165 166 167 168 169
                  v-model.number="naturalForm.naturalList[index].scjzmj"></el-input>
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.ZCS'" :rules="{ ...rules.ZCS, ...typeNum }">
                <span slot="label">
                  总层数: <br />
                  <p class="label-detail">(ZCS)</p>
                </span>
170
                <el-input :disabled="$store.state.business.Edit" type="number"
yangwei committed
171 172 173 174 175 176 177 178 179 180 181 182
                  v-only-number="{ max: 9999, min: 0, precision: 3 }"
                  v-model.number="naturalForm.naturalList[index].zcs"></el-input>
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.DSCS'" :rules="rules.DSCS">
                <span slot="label">
                  地上层数: <br />
                  <p class="label-detail">(DSCS)</p>
                </span>
                <el-input :disabled="$store.state.business.Edit" v-only-number="{ max: 999, min: 0, precision: 0 }"
183
                  v-model="naturalForm.naturalList[index].dscs"></el-input>
yangwei committed
184 185 186 187 188 189 190 191 192 193 194 195
              </el-form-item>
            </el-col>
          </el-row>

          <el-row>
            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.DXCS'" :rules="rules.DXCS">
                <span slot="label">
                  地下层数: <br />
                  <p class="label-detail">(DXCS)</p>
                </span>
                <el-input :disabled="$store.state.business.Edit" v-only-number="{ max: 9, min: 0, precision: 0 }"
196
                  v-model="naturalForm.naturalList[index].dxcs"></el-input>
yangwei committed
197 198 199 200 201 202 203 204 205 206
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.DXSD'" :rules="{ ...rules.DXSD, ...typeNum }">
                <span slot="label">
                  地下深度: <br />
                  <p class="label-detail">(DXSD)</p>
                </span>
                <el-input :disabled="$store.state.business.Edit"
207
                  v-only-number="{ max: 999999999999999, min: 0, precision: 2 }" type="number"
yangwei committed
208 209 210 211 212 213 214 215 216 217
                  v-model.number="naturalForm.naturalList[index].dxsd"></el-input>
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.GHYT'" :rules="rules.GHYT">
                <span slot="label">
                  规划用途: <br />
                  <p class="label-detail">(GHYT)</p>
                </span>
218
                <el-select :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].ghyt">
yangwei committed
219 220 221 222 223 224 225 226 227 228 229 230 231 232
                  <el-option v-for="item in dicData['A17']" :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="'naturalList.' + index + '.FWJG'" :rules="rules.FWJG">
                <span slot="label">
                  房屋结构: <br />
                  <p class="label-detail">(FWJG)</p>
                </span>
233
                <el-select :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].fwjg">
yangwei committed
234 235 236 237 238 239 240 241 242 243 244 245 246
                  <el-option v-for="item in dicData['A46']" :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="'naturalList.' + index + '.ZTS'" :rules="{ ...rules.ZTS, ...typeNum }">
                <span slot="label">
                  总套数: <br />
                  <p class="label-detail">(ZTS)</p>
                </span>
                <el-input :disabled="$store.state.business.Edit" v-only-number="{ max: 999999, min: 0, precision: 0 }"
247
                  type="number" v-model.number="naturalForm.naturalList[index].zts"></el-input>
yangwei committed
248 249 250 251 252 253 254 255 256
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.JZWJBYT'" :rules="rules.JZWJBYT">
                <span slot="label">
                  建筑物基本用途: <br />
                  <p class="label-detail">(JZWJBYT)</p>
                </span>
257 258
                <el-input :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].jzwjbyt">
                </el-input>
yangwei committed
259 260 261 262 263 264 265 266 267 268 269
              </el-form-item>
            </el-col>
          </el-row>

          <el-row>
            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.DAH'" :rules="rules.DAH">
                <span slot="label">
                  档案号: <br />
                  <p class="label-detail">(DAH)</p>
                </span>
270 271
                <el-input :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].dah">
                </el-input>
yangwei committed
272 273 274 275 276 277 278 279 280
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.BZ'" :rules="rules.BZ">
                <span slot="label">
                  备注: <br />
                  <p class="label-detail">(BZ)</p>
                </span>
281
                <el-input :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].bz"></el-input>
yangwei committed
282 283 284 285 286 287 288 289 290
              </el-form-item>
            </el-col>

            <el-col :span="8">
              <el-form-item :prop="'naturalList.' + index + '.ZT'" :rules="rules.ZT">
                <span slot="label">
                  状态: <br />
                  <p class="label-detail">(ZT)</p>
                </span>
291
                <el-select :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].zt">
yangwei committed
292 293 294 295 296 297 298 299 300 301 302 303 304 305
                  <el-option v-for="item in dicData['A11']" :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="'naturalList.' + index + '.QXDM'" :rules="rules.QXDM">
                <span slot="label">
                  区县代码: <br />
                  <p class="label-detail">(QXDM)</p>
                </span>
306 307
                <el-input :disabled="$store.state.business.Edit" v-model="naturalForm.naturalList[index].qxdm">
                </el-input>
yangwei committed
308 309 310 311 312 313 314 315 316 317 318
              </el-form-item>
            </el-col>
          </el-row>
        </div>
      </div>
    </el-form>
    <message-tips ref="msg" />
  </div>
</template>
<script>
// 自然幢
319 320
import kttFwZrz from "@/api/kttFwZrz";
import ruleMixin from "@/mixins/ruleMixin.js";
yangwei committed
321 322 323 324 325
export default {
  mixins: [ruleMixin],
  props: {
    bsmSjsb: {
      type: String,
326
      default: "",
yangwei committed
327 328 329
    },
    bsmYwsjb: {
      type: String,
330 331
      default: "",
    },
yangwei committed
332
  },
任超 committed
333
  data () {
yangwei committed
334 335 336 337
    return {
      naturalForm: {
        naturalList: [
          {
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
            BSM: "",
            YSDM: "",
            BDCDYH: "",
            ZDDM: "",
            ZRZH: "",
            XMMC: "",
            JZWMC: "",
            JGRQ: "",
            JZWGD: "",
            ZZDMJ: "",
            ZYDMJ: "",
            YCJZMJ: "",
            SCJZMJ: "",
            ZCS: "",
            DSCS: "",
            DXCS: "",
            DXSD: "",
            GHYT: "",
            FWJG: "",
            ZTS: "",
            JZWJBYT: "",
            DAH: "",
            BZ: "",
            ZT: "",
            QXDM: "",
          },
        ],
      },
    };
yangwei committed
367 368
  },
  methods: {
任超 committed
369
    async featchData () {
yangwei committed
370
      try {
371 372
        let { result: res } = await kttFwZrz.getKttFwZrzById(this.bsmSjsb);
        this.naturalForm.naturalList = res;
yangwei committed
373 374
        //this.featchRule()
      } catch (error) {
375
        this.$refs.msg.messageShow();
yangwei committed
376 377
      }
    },
任超 committed
378
    handleUpdateForm () {
yangwei committed
379 380
      return new Promise(async (resolve) => {
        try {
381
          let res = await kttFwZrz.updateKttFwZrz(this.naturalForm.naturalList);
yangwei committed
382
          // this.$refs['formList'].resetFields();
383
          resolve(res.code);
yangwei committed
384
        } catch (error) {
385
          this.$refs.msg.messageShow();
yangwei committed
386
        }
387 388 389 390
      });
    },
  },
};
yangwei committed
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
</script>
<style scoped lang="scss">
@import "./css/itemForm.scss";

.naturalBuilding {
  .naturalBuilding-item {
    display: flex;
    height: 100%;
    margin-bottom: 15px;
    margin-right: 5px;

    .naturalBuilding-name {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      padding: 10px 20px;
      line-height: 28px;
      border: 1px solid #ccc;
      margin-right: 15px;
      border-radius: 3px;
    }

    .naturalBuilding-list {
      width: 100%;
      flex: 1;
    }
  }

  .bsm {
    white-space: nowrap;
  }
}
</style>