Dogp.vue 1.46 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">
18
    <!-- @click="onLcrgodButtxmsel" -->
hpj committed
19 20 21 22
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
23
        @click="showGridPromptDialog('letp.lcrgod.buttxmsel', null, null,{TXT: 'ledgrp.blk.lcrgod'}, {TXT: false},'doxpDialog')"
hpj committed
24 25 26 27 28
      >
        ...
      </c-button>
    </c-col>
    <br />
lianyang committed
29 30
    <c-col :span="20">
      <el-form-item label="货物种类 " prop="ledgrp.rec.stagod">
hpj committed
31 32 33
        <c-select
          v-model="model.ledgrp.rec.stagod"
          style="width: 100%"
jianglong committed
34
          placeholder="请选择货物类型 "
lianyang committed
35
          :code="codes.godcod"
hpj committed
36 37 38 39 40 41 42 43
        >
        </c-select>
      </el-form-item>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
44
import commonProcess from "~/mixin/commonProcess";
hpj committed
45 46 47 48 49 50
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letnot/Event";

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