Doctre.vue 3 KB
Newer Older
lianyang committed
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
<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>