Goodoc.vue 974 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
<template>
  <div class="eibs-tab">
    <c-col :span="24">
      <c-col :span="22">
        <el-form-item label="Description. of Goods" prop="ltdgrp.blk.lcrgod">
          <c-fullbox>
            <c-input
              type="textarea"
              v-model="model.ltdgrp.blk.lcrgod"
              maxlength="52000"
              :rows="30"
              disabled
              show-word-limit
              placeholder="请输入货物或服务描述"></c-input>
            <template slot="footer">
              <c-button size="small" style="margin-left: 10px; padding: 0 12px" type="primary" icon="el-icon-more">
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>
    </c-col>
  </div>
</template>

<script>
import event from "../event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [event],
  data() {
    return {};
  },
  methods: {},
  created: function () {},
};
</script>