Stament.vue 784 Bytes
Newer Older
1 2
<template>
  <div class="eibs-tab">
wangna committed
3
  
4 5 6 7 8 9 10 11 12 13 14 15 16
    <c-col :span="22">
      <el-form-item label="声明" prop="didgrp.blk.stamet">
        <c-input
          type="textarea"
          v-model="model.didgrp.blk.stamet"
          maxlength="65"
          show-word-limit
          placeholder="请输入声明"
          :rows="15"
        ></c-input>
      </el-form-item>
    </c-col>
  </div>
17 18
</template>
<script>
19
import Api from "~/service/Api";
wangren committed
20
import commonProcess from "~/mixin/commonProcess";
21 22
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Ditame/Event";
23 24

export default {
25 26 27 28 29 30 31 32 33
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
34 35 36
</script>
<style>
</style>