Docpan.vue 1.75 KB
Newer Older
wanggang_yf committed
1 2
<template>
  <div class="eibs-tab">
wangna 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
    <!-- SF000545 : Correspondence -->

    <c-col :span="12">
      <span
        v-text="model.trnmod.trndoc.advlabel"
        data-path=".trnmod.trndoc.advlabel"
      >
      </span>
    </c-col>

    <c-col :span="12">
      <c-form-item label="国内证落款" prop="trnmod.trndoc.advnam">
        <c-input
          v-model="model.trnmod.trndoc.advnam"
          maxlength="50"
          :placeholder="$t('other.please_enter') + '国内证落款'"
        ></c-input>
      </c-form-item>
    </c-col>

    <c-col :span="12">
      <c-form-item label="修改申请人名称" prop="trnmod.trndoc.amdapl">
        <c-input
          type="textarea"
          v-model="model.trnmod.trndoc.amdapl"
          maxlength="50"
          show-word-limit
          :placeholder="$t('other.please_enter') + '修改申请人名称'"
        ></c-input>
      </c-form-item>
    </c-col>

    <c-col :span="12">
      <span
        v-text="model.trnmod.trndoc.amdnam"
        data-path=".trnmod.trndoc.amdnam"
      >
      </span>
    </c-col>

    <c-col :span="12">
      <c-form-item label="国内证通知书" prop="trnmod.trndoc.advdoc">
        <c-input
          v-model="model.trnmod.trndoc.advdoc"
          maxlength="1"
          :placeholder="$t('other.please_enter') + '国内证通知书'"
        ></c-input>
      </c-form-item>
    </c-col>
wanggang_yf committed
52 53 54
  </div>
</template>
<script>
wangna committed
55
import Api from "~/service/Api";
wanggang_yf committed
56
import commonProcess from "~/mixin/commonProcess";
wangna committed
57 58
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bptset/Event";
wanggang_yf committed
59 60

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