Dogpame.vue 1.83 KB
Newer Older
zhengxiaokui committed
1 2
<template>
  <div class="eibs-tab">
zhengxiaokui 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
    <c-col :span="12">
      <el-form-item
        label="Description of Goods History"
        prop="ledgrp.blk.lcrgodame"
      >
        <c-input
          type="textarea"
          v-model="model.ledgrp.blk.lcrgodame"
          maxlength="50"
          show-word-limit
          placeholder="请输入Description of Goods History"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="Description of Goods" prop="ledgrp.blk.lcrgod">
        <c-input
          type="textarea"
          v-model="model.ledgrp.blk.lcrgod"
          maxlength="65"
          show-word-limit
          placeholder="请输入Description of Goods"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item
        label="Block to enter additional info for Add/Delete"
        prop="letamep.lcrgodamep.usrblk"
      >
        <c-input
          type="textarea"
          v-model="model.letamep.lcrgodamep.usrblk"
          maxlength="65"
          show-word-limit
          placeholder="请输入Block to enter additional info for Add/Delete"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="..." prop="letamep.lcrgodame.buttxmsel">
        <c-input
          v-model="model.letamep.lcrgodame.buttxmsel"
          placeholder="请输入..."
        ></c-input>
      </el-form-item>
    </c-col>
zhengxiaokui committed
53 54 55
  </div>
</template>
<script>
zhengxiaokui committed
56
import Api from "~/service/Api";
wangren committed
57
import commonProcess from "~/mixin/commonProcess";
zhengxiaokui committed
58 59
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Letame/Event";
zhengxiaokui committed
60 61

export default {
zhengxiaokui committed
62 63
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
64
  mixins: [commonProcess],
zhengxiaokui committed
65 66 67 68 69 70
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
zhengxiaokui committed
71 72 73
</script>
<style>
</style>