Blame view

src/components/Business/zhK105.vue 3.52 KB
任超 committed
1 2 3 4 5 6 7 8 9 10
<template>
  <div class="seaSpaceAttribute itemForm">
    <el-form :model="ruleForm" :rules="rules" ref="formList" label-width="115px" :key="key">
      <el-row>
        <el-col :span="8">
          <el-form-item prop="BDCDYH">
            <span slot="label">
              不动产单元号: <br />
              <p class="label-detail">(BDCDYH)</p>
            </span>
11
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.BDCDYH" maxlength="28"></el-input>
任超 committed
12 13 14 15 16 17 18 19 20
          </el-form-item>
        </el-col>
        <el-col :span="8">
          <el-form-item prop="ZDX" :rules="{ type: 'number' }">
            <span slot="label">
              子对象: <br />
              <p class="label-detail">(ZDX)</p>
            </span>
            <el-input :disabled="$store.state.business.Edit" v-model.number="ruleForm.ZDX" type="number"
21
              v-only-number="{ max: 9999, min: 0, precision: 0 }"></el-input>
任超 committed
22 23 24 25 26 27 28 29 30
          </el-form-item>
        </el-col>
        <el-col :span="8">
          <el-form-item prop="XH" :rules="{ type: 'number' }">
            <span slot="label">
              序号: <br />
              <p class="label-detail">(XH)</p>
            </span>
            <el-input :disabled="$store.state.business.Edit" v-model.number="ruleForm.XH" type="number"
31
              v-only-number="{ max: 9999, min: 0, precision: 0 }"></el-input>
任超 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="XZB" :rules="{ type: 'number' }">
            <span slot="label">
              X坐标: <br />
              <p class="label-detail">(XZB)</p>
            </span>
            <el-input :disabled="$store.state.business.Edit" v-model.number="ruleForm.XZB"
43
              v-only-number="{ max: 999999999999999, min: 0, precision: 8 }" type="number"></el-input>
任超 committed
44 45 46 47 48 49 50 51 52
          </el-form-item>
        </el-col>
        <el-col :span="8">
          <el-form-item prop="YZB" :rules="{ type: 'number' }">
            <span slot="label">
              Y坐标: <br />
              <p class="label-detail">(YZB)</p>
            </span>
            <el-input :disabled="$store.state.business.Edit" v-model.number="ruleForm.YZB" type="number"
53
              v-only-number="{ max: 999999999999999, min: 0, precision: 8 }"></el-input>
任超 committed
54 55 56 57 58 59 60 61 62
          </el-form-item>
        </el-col>
      </el-row>
    </el-form>
    <message-tips ref="msg" />
  </div>
</template>
<script>
// 宗海空间属性
63 64
import zhK105 from "@/api/zhK105";
import ruleMixin from "@/mixins/ruleMixin.js";
任超 committed
65 66 67 68 69
export default {
  mixins: [ruleMixin],
  props: {
    bsmSjsb: {
      type: String,
70
      default: "",
任超 committed
71
    },
蔡俊立 committed
72
    bsmYwsjb: {
任超 committed
73
      type: String,
74 75
      default: "",
    },
任超 committed
76
  },
77
  data() {
任超 committed
78 79
    return {
      ruleForm: {
80 81 82 83 84 85 86 87
        BDCDYH: "",
        zhdm: "",
        ZDX: "",
        XH: "",
        XZB: "",
        YZB: "",
      },
    };
任超 committed
88 89
  },
  methods: {
90
    async featchData() {
任超 committed
91
      try {
92 93
        let { result: res } = await zhK105.getZhK105ById(this.bsmSjsb);
        this.ruleForm = res;
94
        //this.featchRule()
任超 committed
95
      } catch (error) {
96
        this.$refs.msg.messageShow();
任超 committed
97 98
      }
    },
99
    handleUpdateForm() {
任超 committed
100 101
      return new Promise(async (resolve) => {
        try {
102
          let res = await zhK105.updateZhK105(this.ruleForm);
任超 committed
103
          // this.$refs['formList'].resetFields();
104
          resolve(res.code);
任超 committed
105
        } catch (error) {
106
          this.$refs.msg.messageShow();
任超 committed
107
        }
108 109 110 111
      });
    },
  },
};
任超 committed
112 113 114 115 116 117
</script>
<style scoped lang="scss">
@import "./css/itemForm.scss";
</style>