Dogp.vue 1.34 KB
Newer Older
孟冬雪 committed
1 2
<template>
  <div class="eibs-tab">
Wuyuqiu committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
    <!-- SF000249 : Description of Goods -->

    <c-col :span="20">
      <c-form-item label="Description of Goods" prop="ltdgrp.blk.lcrgod">
        <c-input
          type="textarea"
          style="width: 100%;"
          v-model="model.ltdgrp.blk.lcrgod"
          show-word-limit
          placeholder="Please input Description of Goods"
        ></c-input>
      </c-form-item>
    </c-col>

    <c-col :span="4">
      <!-- <c-button size="small" type="primary" icon="el-icon-search" @click="onLcrgodButtxmsel">
19
             {{$t('lttp.CF000248')}}
Wuyuqiu committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
        </c-button> -->
      <c-button
        size="small"
        type="primary"
        @click="
          showGridPromptDialog(
            'lttp.lcrgod.buttxmsel',
            null,
            null,
            { TXT: 'ltdgrp.blk.lcrgod' },
            { TXT: false },
            'doxpDialog'
          )
        "
      >
        ...
      </c-button>
    </c-col>
孟冬雪 committed
38 39 40
  </div>
</template>
<script>
Wuyuqiu committed
41
import Api from "~/service/Api";
wangren committed
42
import commonProcess from "~/mixin/commonProcess";
Wuyuqiu committed
43 44
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Lttopn/Event";
45

孟冬雪 committed
46
export default {
Wuyuqiu committed
47 48 49 50 51 52 53 54 55
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
孟冬雪 committed
56 57 58
</script>
<style>
</style>