Docpan.vue 1.94 KB
Newer Older
fanyanyan committed
1 2
<template>
  <div class="eibs-tab">
3 4 5 6 7
    <c-row>
      <c-col :span="24">
        <c-col :span="12">
          <c-col :span="24">
            <c-form-item
wangna committed
8
              label="转让信用证收汇核销单编号"
9 10 11 12 13 14 15
              prop="lendoc.vercerref"
            >
              <c-input
                type="textarea"
                v-model="model.lendoc.vercerref"
                maxlength="20"
                show-word-limit
wangna committed
16
                placeholder="转让信用证收汇核销单编号"
17 18 19 20
              ></c-input>
            </c-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
21
            <c-form-item label="申报业务编号" prop="lendoc.decnum">
22 23 24
              <c-input
                v-model="model.lendoc.decnum"
                maxlength="22"
wangna committed
25
                placeholder="申报业务编号"
26 27 28
              ></c-input>
            </c-form-item>
          </c-col>
liyixun committed
29
        </c-col>
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
        <c-col :span="11" :offset="1">
          <c-col :span="24">
            <c-form-item label="ACT" prop="lendoc.account">
              <c-input
                type="textarea"
                v-model="model.lendoc.account"
                maxlength="25"
                show-word-limit
                placeholder="请输入ACT"
                :disabled="model.lendoc.actflg == ''"
              ></c-input>
            </c-form-item>
          </c-col>
          <c-col :span="24">
            <c-checkbox v-model="model.lendoc.actflg">
wangna committed
45
              输入帐号
46 47
            </c-checkbox>
          </c-col>
fanyanyan committed
48
        </c-col>
49 50
      </c-col>
    </c-row>
fanyanyan committed
51 52 53
  </div>
</template>
<script>
54
import Api from "~/service/Api";
wangren committed
55
import commonProcess from "~/mixin/commonProcess";
56 57
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bttset/Event";
fanyanyan committed
58 59

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