Dogp.vue 1.62 KB
Newer Older
Eivi committed
1 2
<template>
  <div class="eibs-tab">
Eivi committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

    <!-- left -->
    <c-col :span="12">
      <c-col :span="24">
        <el-form-item
          label="Description of Goods"
          prop="ledgrp.blk.lcrgod"
          style="width: 100%"
        >
          <c-fullbox>
            <c-input
              type="textarea"
              v-model="model.ledgrp.blk.lcrgod"
              maxlength="50"
              show-word-limit
              placeholder="Please input Description of Goods"
            ></c-input>
            <template slot="footer">
              <c-button
                style="margin-left: 10px; padding: 0 10px"
                size="small"
                type="primary"
              >
                ...
              </c-button>
            </template>
          </c-fullbox>
Eivi committed
30
        </el-form-item>
Eivi committed
31 32 33 34 35 36
      </c-col>
    </c-col>

    <!-- right -->
    <c-col :span="12">
      <c-col :span="24">
Eivi committed
37
        <el-form-item label="Goods Code " prop="ledgrp.rec.stagod">
Eivi committed
38 39 40 41 42 43 44
          <c-select
            v-model="model.ledgrp.rec.stagod"
            style="width: 100%"
            placeholder="Please select Goods Code "
            :code="codes.godcod"
          >
          </c-select>
Eivi committed
45
        </el-form-item>
Eivi committed
46 47
      </c-col>
    </c-col>
Eivi committed
48 49 50
  </div>
</template>
<script>
Eivi committed
51
import Api from "~/service/Api";
Eivi committed
52
import commonProcess from "~/mixin/commonProcess";
Eivi committed
53 54
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letrsv/Event";
Eivi committed
55 56

export default {
Eivi committed
57 58 59 60 61 62 63 64 65
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
Eivi committed
66 67 68
</script>
<style>
</style>