Doctre.vue 3 KB
<template>
  <div class="eibs-tab">
    <!-- S0000552 : Outgoing Correspondence, Attachments and other Documents -->

    <c-col :span="12">
      <c-form-item label="File Receiver" prop="trnmod.trndoc.filrecv">
        <c-input
          v-model="model.trnmod.trndoc.filrecv"
          :placeholder="$t('other.please_enter') + 'File Receiver'"
        ></c-input>
      </c-form-item>
    </c-col>

    <c-col :span="12">
      <c-form-item label="Document tree" prop="trnmod.trndoc.doctrestm">
        <c-input
          v-model="model.trnmod.trndoc.doctrestm"
          :placeholder="$t('other.please_enter') + 'Document tree'"
        ></c-input>
      </c-form-item>
    </c-col>

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onTrndocButshw">
        {{ $t('trndoc.CF000547') }}
      </c-button>
    </c-col>

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onTrndocButadd">
        {{ $t('trndoc.CF000548') }}
      </c-button>
    </c-col>

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onTrndocButnew">
        {{ $t('trndoc.CF000553') }}
      </c-button>
    </c-col>

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onTrndocButattto">
        {{ $t('trndoc.CG001184') }}
      </c-button>
    </c-col>

    <c-col :span="12">
      <c-button size="small" icon="el-icon-delete" @click="onTrndocButdel">
        {{ $t('trndoc.CF000549') }}
      </c-button>
    </c-col>

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

    <c-col :span="12">
      <c-checkbox v-model="model.trnmod.trndoc.shwinc">{{
        $t('trndoc.CF000556')
      }}</c-checkbox>
    </c-col>

    <c-col :span="12">
      <c-checkbox v-model="model.trnmod.trndoc.shwout">{{
        $t('trndoc.CF000557')
      }}</c-checkbox>
    </c-col>

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onTrndocButatt">
        {{ $t('trndoc.CF000551') }}
      </c-button>
    </c-col>

    <c-col :span="12">
      <c-form-item label="Connected Documents" prop="trnmod.trndoc.condocstm">
        <c-input
          v-model="model.trnmod.trndoc.condocstm"
          :placeholder="$t('other.please_enter') + 'Connected Documents'"
        ></c-input>
      </c-form-item>
    </c-col>

    <c-col :span="12">
      <c-form-item label="" prop="trnmod.trndoc.rcvatt.seainf">
        <c-input
          v-model="model.trnmod.trndoc.rcvatt.seainf"
          :placeholder="$t('other.please_enter') + ''"
        ></c-input>
      </c-form-item>
    </c-col>
  </div>
</template>
<script>
import Api from '~/service/Api'
import commonProcess from '~/mixin/commonProcess'
import CodeTable from '~/config/CodeTable'
import Event from '~/model/Betsnd/Event'

export default {
  inject: ['root'],
  props: ['model', 'codes'],
  mixins: [commonProcess],
  data() {
    return {}
  },
  methods: { ...Event },
  created: function () {},
}
</script>
<style></style>