Ptap1.vue 1.77 KB
Newer Older
1 2 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 53 54 55 56 57
<template>
  <div class="eibs-tab">
    <c-col :span="24">
      <el-form-item label="DTA Import L/C ID" prop="recgrp.adr.dtacid">
        <c-input
          v-model="model.recgrp.adr.dtacid"
          maxlength="23"
          placeholder="请输入DTA Import L/C ID"
          style="width:40%"
          disabled
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="24">
      <el-form-item label="DTA Export L/C ID" prop="recgrp.adr.dtecid">
        <c-input
          v-model="model.recgrp.adr.dtecid"
          maxlength="23"
          placeholder="请输入DTA Export L/C ID"
          style="width:40%"
          disabled
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="24">
      <el-form-item label="电证名称">
        <c-input
          type="textarea"
          v-model="model.recgrp.adr.namelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入电证名称"
          style="width:50%"
          disabled
        ></c-input>
      </el-form-item>
    </c-col>

    <c-col :span="24">
      <el-form-item label="电证地址">
        <c-input
          type="textarea"
          v-model="model.recgrp.adr.adrelc"
          maxlength="35"
          show-word-limit
          placeholder="请输入电证地址"
          style="width:50%"
          disabled
        ></c-input>
      </el-form-item>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
wangren committed
58
import commonProcess from "~/mixin/commonProcess";
59 60 61 62 63 64
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infpta/Event";

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