Canp.vue 5.47 KB
Newer Older
fukai committed
1 2
<template>
  <div class="eibs-tab">
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
    <c-col :span="24">
        <!-- ======================左边====================== -->
        <c-col :span="12" style="padding-right: 20px">
            <c-col :span="24">
                <c-form-item :label="$t('fttfcn.资金调拨业务参考号')" prop="ftdgrp.rec.ownref">
                    <c-input  v-model="model.ftdgrp.rec.ownref" maxlength="16"  :placeholder="$t('other.please_enter')+$t('fttfcn.S0000002')"></c-input>
                </c-form-item>
            </c-col>

            <c-col :span="24">
                <c-form-item :label="$t('fttfcn.资金部负责人')" prop="fttp.usr.extkey">
                    <c-input  v-model="model.fttp.usr.extkey" maxlength="8"  :placeholder="$t('other.please_enter')+$t('fttfcn.资金部负责人')"></c-input>
                </c-form-item>
            </c-col>
            
            <c-col :span="24">
                <el-form-item :label="$t('fttfcn.定存拆借类型')" prop="ftdgrp.rec.fttyp">
                    <c-select v-model="model.ftdgrp.rec.fttyp" style="width:100%" :placeholder="$t('other.please_enter')+$t('fttfcn.定存拆借类型')">
                    </c-select>
                </el-form-item>
            </c-col>
            
             <c-col :span="24">
                <c-col :span="12">
                    <el-form-item :label="$t('fttfcn.定存拆借金额币种')" prop="ftdgrp.cbs.max.cur">
                        <c-select v-model="model.ftdgrp.cbs.max.cur" style="width:100%" :placeholder="$t('other.please_enter')+$t('fttfcn.定存拆借金额币种')">
                        </c-select>
                    </el-form-item>
                </c-col>
                <c-col :span="12" class="pl8">
                    <c-form-item label-width="0" prop="ftdgrp.cbs.max.amt">
                        <c-input  v-model="model.ftdgrp.cbs.max.amt"  :placeholder="$t('other.please_enter')+$t('fttfcn.定存拆借金额')"></c-input>
                    </c-form-item>
                </c-col>
             </c-col>

             <c-col :span="24">
                <c-col :span="12">
                    <el-form-item :label="$t('fttfcn.待销账金额币种')" prop="ftdgrp.cbs.opn2.cur">
                        <c-select v-model="model.ftdgrp.cbs.opn2.cur" style="width:100%" :placeholder="$t('other.please_enter')+$t('fttfcn.待销账金额币种')">
                        </c-select>
                    </el-form-item>
                </c-col>
                <c-col :span="12" class="pl8">
                    <c-form-item label-width="0" prop="ftdgrp.cbs.opn2.amt">
                        <c-input v-model="model.ftdgrp.cbs.opn2.amt"  :placeholder="$t('other.please_enter')+'待销账金额币种'"></c-input>
                    </c-form-item>
                </c-col>
            </c-col>
            <c-col  :span="24">
                <c-col :span="12">
                    <el-form-item :label="$t('fttfcn.实际消费金币种')" prop="setmod.doccur">
                        <c-select v-model="model.setmod.doccur" style="width:100%" :placeholder="$t('other.please_enter')+$t('fttfcn.实际消费金币种')">
                        </c-select>
                    </el-form-item>
                </c-col>
                            
                <c-col :span="12" class="pl8">
                    <c-form-item label-width="0" prop="canamt">
                        <c-input  v-model="model.canamt"  :placeholder="$t('other.please_enter')+'实际消费金额'"></c-input>
                    </c-form-item>
                </c-col>
            </c-col>

fukai committed
67
        </c-col>
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 116 117 118 119
        <!-- ======================右边====================== -->
        <c-col :span="12" style="padding-left: 20px">
            <c-col :span="24">
                <c-form-item :label="$t('fttfcn.名称')" prop="ftdgrp.rec.nam">
                    <c-input  v-model="model.ftdgrp.rec.nam" maxlength="40"  :placeholder="$t('other.please_enter')+$t('fttfcn.S0000003')"></c-input>
                </c-form-item>
            </c-col>
            <c-col :span="24">
				<el-card class="box-card">
					<c-ptap
					  :model="model"
					  :requiredExtkey="true"
					  :disabled="false"
					  :isAdrblk="true"
					  :haveAdrLabel="true"
					  :isShowCard="false"
					  :argadr="{ title: '资金拆出行', grp: 'ftdgrp', rol: 'tro' }"
					  ptytyp="B"
					>
					</c-ptap> 
				</el-card>	
            </c-col>
            <c-col :span="24">
				<el-card class="box-card">
					<c-ptap
					  :model="model"
					  :requiredExtkey="true"
					  :disabled="false"
					  :isAdrblk="true"
					  :haveAdrLabel="true"
					  :isShowCard="false"
					  :argadr="{ title: '资金拆入行', grp: 'ftdgrp', rol: 'tri' }"
					  ptytyp="B"
					>
					</c-ptap> 
				</el-card>	
            </c-col>
            <c-col :span="24">
				<el-card class="box-card">
					<c-ptap
					  :model="model"
					  :requiredExtkey="true"
					  :disabled="false"
					  :isAdrblk="true"
					  :haveAdrLabel="true"
					  :isShowCard="false"
					  :argadr="{ title: '账户行', grp: 'ftdgrp', rol: 'act' }"
					  ptytyp="B"
					>
					</c-ptap> 
				</el-card>	
            </c-col>                                                            
fukai committed
120
        </c-col>
121
    </c-col>
fukai committed
122 123 124 125
  </div>
</template>
<script>
import Api from "~/service/Api"
126
import Event from "../event"
fukai committed
127 128 129 130

export default {
    inject: ['root'],
    props:["model","codes"],
131
    mixins: [],
fukai committed
132 133 134 135 136 137 138 139 140 141 142 143 144 145
    data(){
        return {

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

    }
}
</script>
<style>

</style>