Mt754p.vue 4.69 KB
Newer Older
jianglong committed
1 2
<template>
  <div class="eibs-tab">
3 4 5
      <!-- ====================左边======================= -->
      <c-col :span="11">                                          
       <c-col :span="10">
6
        <el-form-item label="单据金额" prop="bddgrp.cbs.max.cur">
7
            <c-select  
8
            disabled
wangna committed
9
            v-model="model.bddgrp.cbs.max.cur" style="width:100%"  placeholder="请选择币种" :code="codes.cur"></c-select>
10 11 12
        </el-form-item>
       </c-col>
                  
13
       <c-col :span="14">
14
        <el-form-item label=""  label-width="10px" prop="bddgrp.cbs.max.amt">
wangna committed
15
            <c-input  v-model="model.bddgrp.cbs.max.amt"  placeholder="请输入单据金额"></c-input>
16 17 18 19
        </el-form-item>
       </c-col>

    <c-col>                        
20
       <c-col :span="10">
21 22 23
        <el-form-item label="附加金额" prop="bddgrp.cbs.opn2.cur">
            <c-select 
            disabled
wangna committed
24
            v-model="model.bddgrp.cbs.opn2.cur" style="width:100%" placeholder="请选择币种">
25
              </c-select>
jianglong committed
26 27 28
        </el-form-item>
       </c-col>
                  
29
       <c-col :span="14">
30 31 32 33 34
        <el-form-item label="" label-width="10px" prop="bddgrp.cbs.max2.amt">
            <c-input  v-model="model.bddgrp.cbs.max2.amt"  placeholder="请输入附加金额"></c-input>
        </el-form-item>
       </c-col>
    </c-col>
35 36
                               
       <c-col :span="24">
wangna committed
37 38
        <el-form-item label="扣除费用" prop="bddgrp.blk.chaded">
            <c-input type="textarea" v-model="model.bddgrp.blk.chaded" :rows="4" maxlength="35" show-word-limit placeholder="请输入扣除费用" ></c-input>
39 40
        </el-form-item>
        </c-col>
41 42
                              
       <c-col :span="24">
wangna committed
43 44
        <el-form-item label="已添加费用" prop="bddgrp.blk.chaadd">
            <c-input type="textarea" v-model="model.bddgrp.blk.chaadd" :rows="4" maxlength="35" show-word-limit placeholder="请输入已添加费用" ></c-input>
45 46
        </el-form-item>
        </c-col>
47 48
                               
       <c-col :span="10">
wangna committed
49
        <el-form-item label="索赔总额" prop="bddgrp.rec.totcur">
50
            <c-select  
51
            disabled
wangna committed
52
            v-model="model.bddgrp.rec.totcur" style="width:100%"  placeholder="请选择索赔总额" :code="codes.cur"></c-select>
jianglong committed
53 54 55
        </el-form-item>
       </c-col>
                  
56 57
       <c-col :span="14">
        <el-form-item label="" label-width="10px" prop="bddgrp.rec.totamt">
wangna committed
58
            <c-input  v-model="model.bddgrp.rec.totamt"  placeholder="请输入"></c-input>
jianglong committed
59 60
        </el-form-item>
       </c-col>
wangna committed
61
                        
62 63 64 65
    <c-col :span="24">
          <c-ptap
            :model="model"
            :argadr="{
wangna committed
66
              title: '偿付行',
67 68 69 70 71 72 73 74 75 76 77 78 79
              grp: 'bddgrp',
              rol: 'rmb',
            }"
            :noRef="true"
            :isAdrblk="false"
          >
          </c-ptap>
        </c-col>

         <c-col :span="24">
          <c-ptap
            :model="model"
            :argadr="{
wangna committed
80
              title: '银行账户',
81 82 83 84 85 86 87 88 89 90
              grp: 'bddgrp',
              rol: 'acb',
            }"
            :noRef="true"
            :isAdrblk="false"
          >
          </c-ptap>
        </c-col>

       <c-col :span="24">
wangna committed
91 92
        <el-form-item label="支付日期" prop="bddgrp.rec.totdat">
            <c-date-picker type="date"  v-model="model.bddgrp.rec.totdat" style="width:100%"  placeholder="请选择支付日期"></c-date-picker>
jianglong committed
93 94
        </el-form-item>
       </c-col>
95 96 97 98 99
       </c-col>

       <!-- ========================右边======================= -->
      <c-col :span="11" :offset="1">
      <c-col :span="24">
wangna committed
100 101
        <el-form-item label="MT754的叙述标签77A" prop="bddgrp.blk.nartxt77a">
            <c-input type="textarea" v-model="model.bddgrp.blk.nartxt77a" :rows="15" maxlength="700" show-word-limit placeholder="请输入" ></c-input>
102 103 104 105 106 107 108
        </el-form-item>
        </c-col>

         <c-col :span="24">
          <c-ptap
            :model="model"
            :argadr="{
wangna committed
109
              title:  `受益人账户行`,
110 111 112 113 114 115 116 117 118 119
              grp: 'bddgrp',
              rol: 'beb',
            }"
            :noRef="true"
            :isAdrblk="false"
          >
          </c-ptap>
        </c-col>
        </c-col>

jianglong committed
120 121 122 123 124 125
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
126
import Event from "~/model/Litdav/Event"
127
import Ptap from "~/views/Public/Ptap";
jianglong committed
128 129

export default {
130
    components: { "c-ptap": Ptap },
jianglong committed
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

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

    }
}
</script>
<style>

</style>