Dogp.vue 1.12 KB
Newer Older
孟冬雪 committed
1
<template>
2
  <div class="eibs">
Wuyuqiu committed
3
    <c-col :span="20">
wangna committed
4
      <c-form-item label="货物描述" prop="ltdgrp.blk.lcrgod">
Wuyuqiu committed
5 6 7 8 9
        <c-input
          type="textarea"
          style="width: 100%;"
          v-model="model.ltdgrp.blk.lcrgod"
          show-word-limit
wangna committed
10
          placeholder="请输入货物描述"
Wuyuqiu committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
        ></c-input>
      </c-form-item>
    </c-col>

    <c-col :span="4">
      <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
33 34 35
  </div>
</template>
<script>
Wuyuqiu committed
36
import Api from "~/service/Api";
wangren committed
37
import commonProcess from "~/mixin/commonProcess";
Wuyuqiu committed
38 39
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Lttopn/Event";
40

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