Docpan.vue 1.87 KB
Newer Older
wanggang_yf committed
1 2
<template>
  <div class="eibs-tab">
wangna committed
3 4
    <!-- SF000545 : Correspondence -->

liaoxing committed
5
    <!-- <c-col :span="12">
wangna committed
6 7 8 9 10
      <span
        v-text="model.trnmod.trndoc.advlabel"
        data-path=".trnmod.trndoc.advlabel"
      >
      </span>
liaoxing committed
11
    </c-col> -->
wangna committed
12

liaoxing committed
13
    <c-col :span="12" style="padding-right: 20px">
wangna committed
14 15 16 17 18 19 20 21 22
      <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>

liaoxing committed
23
    <c-col :span="12" style="padding-left: 20px">
wangna committed
24 25 26 27 28 29 30 31 32 33 34
      <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>

liaoxing committed
35
    <c-col :span="12" style="padding-right: 20px">
wangna committed
36 37 38 39 40 41 42
      <span
        v-text="model.trnmod.trndoc.amdnam"
        data-path=".trnmod.trndoc.amdnam"
      >
      </span>
    </c-col>

liaoxing committed
43
    <c-col :span="12" style="padding-right: 20px">
wangna committed
44 45 46 47 48 49 50 51
      <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>