Tk.vue 2.21 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
wangna committed
3
    
4
    <c-col :span="24">
5
      <el-form-item label="货物描述" prop="didgrp.blk.lcrgod">
6
        <c-input
7
        disabled
8 9 10 11 12 13
          type="textarea"
          :autosize="{ minRows: 6, maxRows: 8 }"
          v-model="model.didgrp.blk.lcrgod"
          style="width: 70%; margin-right: 20px"
          maxlength="1430"
          show-word-limit
wangna committed
14
          placeholder="请输入货物描述"
15 16 17 18 19 20 21
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="24">
      <el-form-item label="单据要求" prop="didgrp.blk.lcrdoc">
        <c-input
22
        disabled
23 24 25 26 27 28 29 30 31 32 33 34 35 36
          type="textarea"
          :autosize="{ minRows: 6, maxRows: 8 }"
          v-model="model.didgrp.blk.lcrdoc"
          maxlength="1950"
          style="width: 70%; margin-right: 20px"
          show-word-limit
          placeholder="请输入单据要求"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="24">
      <el-form-item label="附加条款" prop="didgrp.blk.adlcnd">
        <c-input
37
        disabled
38 39 40 41 42 43 44 45 46 47 48 49 50 51
          type="textarea"
          :autosize="{ minRows: 6, maxRows: 8 }"
          v-model="model.didgrp.blk.adlcnd"
          style="width: 70%; margin-right: 20px"
          maxlength="1430"
          show-word-limit
          placeholder="请输入附加条款"
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="24">
      <el-form-item label="给付款、承兑、议付行的指示" prop="didgrp.blk.insbnk">
        <c-input
52
        disabled
53 54 55 56 57 58 59 60 61 62 63 64 65 66
          type="textarea"
          :autosize="{ minRows: 6, maxRows: 8 }"
          v-model="model.didgrp.blk.insbnk"
          style="width: 70%; margin-right: 20px"
          maxlength="325"
          show-word-limit
          placeholder="请输入付行的指示"
        ></c-input>
      </el-form-item>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
wangren committed
67
import commonProcess from "~/mixin/commonProcess";
68 69 70 71 72 73
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Ditdla/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
74
  mixins: [commonProcess],
75 76 77 78 79 80 81 82 83
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>