Blame view

src/components/Business/ktfZhYhzk.vue 3.92 KB
任超 committed
1 2 3 4 5 6 7 8 9 10
<template>
  <div class="seaUse itemForm">
    <el-form :model="ruleForm" :rules="rules" ref="formList" label-width="100px" :key="key">
      <el-row>
        <el-col :span="8">
          <el-form-item prop="ZHDM">
            <span slot="label">
              宗海代码: <br />
              <p class="label-detail">(ZHDM)</p>
            </span>
11
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.ZHDM"></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="YHFS">
            <span slot="label">
              用海方式: <br />
              <p class="label-detail">(YHFS)</p>
            </span>
21
            <el-select :disabled="$store.state.business.Edit" v-model="ruleForm.YHFS">
任超 committed
22 23 24 25 26 27 28 29 30 31 32 33
              <el-option v-for="item in dicData['A51']" :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="YHMJ" :rules="{ type: 'number' }">
            <span slot="label">
              用海面积: <br />
              <p class="label-detail">(YHMJ)</p>
            </span>
任超 committed
34
            <el-input-number controls-position="right" :disabled="$store.state.business.Edit"
35
              v-model.number="ruleForm.YHMJ" title="" type="number" v-only-number="{ max: 999999, min: 1, precision: 2 }">
36
            </el-input-number>
任超 committed
37 38 39 40 41 42 43 44 45 46 47
          </el-form-item>
        </el-col>
      </el-row>

      <el-row>
        <el-col :span="8">
          <el-form-item prop="JTYT">
            <span slot="label">
              具体用途: <br />
              <p class="label-detail">(JTYT)</p>
            </span>
48
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.JTYT"></el-input>
任超 committed
49 50 51 52 53 54 55 56 57
          </el-form-item>
        </el-col>

        <el-col :span="8">
          <el-form-item prop="SYJES" :rules="{ type: 'number' }">
            <span slot="label">
              使用金额数: <br />
              <p class="label-detail">(SYJES)</p>
            </span>
任超 committed
58
            <el-input-number controls-position="right" :disabled="$store.state.business.Edit"
59
              v-model.number="ruleForm.SYJES" title="" type="number" v-only-number="{ max: 999999, min: 0, precision: 2 }">
60
            </el-input-number>
任超 committed
61 62 63 64 65 66 67 68 69
          </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>
70
            <el-input :disabled="$store.state.business.Edit" v-model="ruleForm.QXDM"></el-input>
任超 committed
71 72 73 74 75 76 77 78 79
          </el-form-item>
        </el-col>
      </el-row>
    </el-form>
    <message-tips ref="msg" />
  </div>
</template>
<script>
// 用海状况
80 81
import ktfZhYhzk from "@/api/ktfZhYhzk";
import ruleMixin from "@/mixins/ruleMixin.js";
任超 committed
82 83 84 85 86
export default {
  mixins: [ruleMixin],
  props: {
    bsmSjsb: {
      type: String,
87
      default: "",
任超 committed
88
    },
蔡俊立 committed
89
    bsmYwsjb: {
任超 committed
90
      type: String,
91 92
      default: "",
    },
任超 committed
93
  },
94
  data() {
任超 committed
95 96
    return {
      ruleForm: {
97 98 99 100 101 102 103 104
        ZHDM: "",
        YHFS: "",
        YHMJ: "",
        JTYT: "",
        SYJES: "",
        QXDM: "",
      },
    };
任超 committed
105 106
  },
  methods: {
107
    async featchData() {
任超 committed
108
      try {
109 110
        let { result: res } = await ktfZhYhzk.getKtfZhYhzkById(this.bsmSjsb);
        this.ruleForm = res;
111
        //this.featchRule()
任超 committed
112
      } catch (error) {
113
        this.$refs.msg.messageShow();
任超 committed
114 115
      }
    },
116
    handleUpdateForm() {
任超 committed
117 118
      return new Promise(async (resolve) => {
        try {
119
          let res = await ktfZhYhzk.updateKtfZhYhzk(this.ruleForm);
任超 committed
120
          // this.$refs['formList'].resetFields();
121
          resolve(res.code);
任超 committed
122
        } catch (error) {
123
          this.$refs.msg.messageShow();
任超 committed
124
        }
125 126 127 128
      });
    },
  },
};
任超 committed
129 130 131 132 133 134
</script>
<style scoped lang="scss">
@import "./css/itemForm.scss";
</style>