Engp.vue 2.79 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
<template>
  <div class="eibs-tab">
    <!-- SF000062 : Liability -->
    <!-- SF000085 : Sight Amount -->

    <c-col :span="12">
      <c-form-item :label="$t('liaall.SF000085')" prop="liaall.outamt">
        <c-input
          v-model="model.liaall.outamt"
          :placeholder="$t('other.please_enter') + $t('liaall.SF000085')"
        ></c-input>
      </c-form-item>
    </c-col>

    <c-col :span="12">
      <c-form-item label="Sight Amount Percentage" prop="liaall.outpct">
        <c-input
          v-model="model.liaall.outpct"
          :placeholder="$t('other.please_enter') + 'Sight Amount Percentage'"
        ></c-input>
      </c-form-item>
    </c-col>
    <!-- SF000088 : % -->
    <!-- SF000063 : Amount not yet assigned -->

    <c-col :span="12">
      <c-form-item :label="$t('liaall.S0000099')" prop="liaall.concur">
        <c-input
          v-model="model.liaall.concur"
          maxlength="3"
          :placeholder="$t('other.please_enter') + $t('liaall.S0000099')"
        ></c-input>
      </c-form-item>
    </c-col>

    <c-col :span="12">
      <c-form-item :label="$t('liaall.SF000063')" prop="liaall.misamt">
        <c-input
          v-model="model.liaall.misamt"
          :placeholder="$t('other.please_enter') + $t('liaall.SF000063')"
        ></c-input>
      </c-form-item>
    </c-col>

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

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onLiaallButmissig">
        {{ $t('liaall.CF000083') }}
      </c-button>
    </c-col>
    <!-- S0000098 : Old Amount booked externally -->

    <c-col :span="12">
      <c-form-item :label="$t('liaall.S0000098')" prop="liaall.exttotoldamt">
        <c-input
          v-model="model.liaall.exttotoldamt"
          :placeholder="$t('other.please_enter') + $t('liaall.S0000098')"
        ></c-input>
      </c-form-item>
    </c-col>
    <!-- S0000099 : External Booking Amount -->

    <c-col :span="12">
      <c-form-item
        label="Total booking amount external assinged"
        prop="liaall.exttotamt"
      >
        <c-input
          v-model="model.liaall.exttotamt"
          :placeholder="
            $t('other.please_enter') + 'Total booking amount external assinged'
          "
        ></c-input>
      </c-form-item>
    </c-col>
    <!-- SF000065 : Change Plan -->
  </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>