Dogp.vue 1.32 KB
Newer Older
hpj committed
1 2
<template>
  <div class="eibs-tab">
lianyang committed
3 4 5
    <!-- Description of Goods -->
    <c-col :span="20">
      <el-form-item label="货物描述" prop="ledgrp.blk.lcrgod">
hpj committed
6 7 8
        <c-input
          type="textarea"
          v-model="model.ledgrp.blk.lcrgod"
lianyang committed
9 10
          :rows="30"
          maxlength="52000"
hpj committed
11 12 13 14 15 16
          show-word-limit
          placeholder="请输入Description of Goods"
        ></c-input>
      </el-form-item>
    </c-col>

lianyang committed
17
    <c-col :span="2">
hpj committed
18 19 20 21 22 23 24 25 26 27
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
        @click="onLcrgodButtxmsel"
      >
        ...
      </c-button>
    </c-col>
    <br />
lianyang committed
28 29
    <c-col :span="20">
      <el-form-item label="货物种类 " prop="ledgrp.rec.stagod">
hpj committed
30 31 32 33
        <c-select
          v-model="model.ledgrp.rec.stagod"
          style="width: 100%"
          placeholder="请选择Goods Code "
lianyang committed
34
          :code="codes.godcod"
hpj committed
35 36 37 38 39 40 41 42
        >
        </c-select>
      </el-form-item>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
43
import commonProcess from "~/mixin/commonProcess";
hpj committed
44 45 46 47 48 49
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letnot/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
50
  mixins: [commonProcess],
hpj committed
51 52 53 54 55 56 57
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
</script>