Dogp.vue 1.44 KB
Newer Older
hpj committed
1
<template>
LiRui committed
2
  <div class="eibs">
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
      <c-button
        size="small"
        type="primary"
LiRui committed
22
        icon="el-icon-more"
23
        @click="showGridPromptDialog('letp.lcrgod.buttxmsel', null, null,{TXT: 'ledgrp.blk.lcrgod'}, {TXT: false},'doxpDialog')"
hpj committed
24 25 26 27
      >
      </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
        <c-select
          v-model="model.ledgrp.rec.stagod"
          style="width: 100%"
jianglong committed
33
          placeholder="请选择货物类型 "
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>