Othadvtypp.vue 3.25 KB
Newer Older
zhujiazhan committed
1
<template>
jianglong committed
2
  <div class="eibs">
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
<!-- 此页面内容为加入Mt750p和Mt754p页面的内容 -->

    <!-- ====================================左边 ================================= -->
  <c-col :span="12">
    <!-- 单据金额 -->
      <c-col :span="12">
        <el-form-item label="单据金额" prop="brdgrp.cbs.max.cur">
          <c-select v-model="model.brdgrp.cbs.max.cur" style="width:100%" placeholder="请选择单据金额" disabled>
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="12">
        <el-form-item label="" label-width="10px" prop="brdgrp.cbs.max.amt">
          <c-input v-model="model.brdgrp.cbs.max.amt" placeholder="请输入单据金额" disabled></c-input>
        </el-form-item>
      </c-col>

      <!-- 附加金额 -->
      <c-col :span="12">
        <el-form-item label="提取附加金额" prop="brdgrp.cbs.opn2.cur">
          <c-select v-model="model.brdgrp.cbs.opn2.cur" style="width:100%" placeholder="请选择附加金额" disabled>
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="12">
        <el-form-item label="" label-width="10px" prop="brdgrp.cbs.max2.amt">
          <c-input v-model="model.brdgrp.cbs.max2.amt" placeholder="请输入附加金额" disabled></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="已添加费用" prop="brdgrp.blk.chaadd">
          <c-input type="textarea" v-model="model.brdgrp.blk.chaadd" maxlength="35" show-word-limit
jianglong committed
38
            placeholder="请输入费用" disabled rows="4"></c-input>
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
        </el-form-item>
      </c-col>


            <!-- 索赔总额 -->
      <c-col :span="12">
        <el-form-item label="索赔总额" prop="brdgrp.rec.totcur">
          <c-input v-model="model.brdgrp.rec.totcur" maxlength="3" placeholder="请输入索赔总额" disabled>
          </c-input>
        </el-form-item>
      </c-col>

      <!-- Total Amount to be Paid -->
      <c-col :span="12">
        <el-form-item label="" label-width="10px" prop="brdgrp.rec.totamt">
jianglong committed
54
          <c-input v-model="model.brdgrp.rec.totamt" placeholder="请输入待支付金额总和" disabled></c-input>
55 56 57 58 59
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <c-ptap1 :model="model" :argadr="{
jianglong committed
60
          title: '账户银行',
61 62 63 64 65 66 67 68
          grp: 'brdgrp',
          rol: 'acb',
        }" :disabled="true" :isAdrblk="false" disabled1>
        </c-ptap1>
      </c-col>
<!-- 加Mt754p页面的Beneficiary`s Bank -->
      <c-col :span="24">
        <c-ptap1 :model="model" :argadr="{
jianglong committed
69
          title: `受益人银行`,
70 71 72 73 74 75 76 77
          grp: 'brdgrp',
          rol: 'beb',
        }" :disabled="true" disabled1>
        </c-ptap1>
      </c-col>

    </c-col>
  </div>
zhujiazhan committed
78 79 80 81 82
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
jianglong committed
83
import Event from "~/model/Brtsnd/Event"
84
import Ptap1 from "~/views/Public/Ptap1";
zhujiazhan committed
85 86

export default {
87 88 89 90 91
    components: {
    "c-ptap1": Ptap1,
    // "c-ptap": Ptap,
    // "c-ptsmsg": Ptsmsg,
  },
zhujiazhan committed
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>