Canp.vue 7.36 KB
Newer Older
杜大兵 committed
1
<template>
LiRui committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
    <div class="eibs" :height="200">
        <!-- 左 -->
        <c-col :span="12" style="padding-right: 20px;">
                <c-col :span="24">
                    <el-form-item
                    label="票据项下的业务号"
                    prop="bpdgrp.rec.pntref"
                    style="width: 100%"
                    >
                    <c-fullbox>
                        <c-input
                        v-model="model.bpdgrp.rec.pntref"
                        maxlength="16"
                        disabled
                        placeholder="票据项下的业务号"
                        ></c-input>
                        <template slot="footer">
杜大兵 committed
19 20
                        <c-button
                            size="small"
LiRui committed
21
                            style="margin-left: 10px; padding: 0 12px"
杜大兵 committed
22
                            type="primary"
LiRui committed
23 24
                            icon="el-icon-info"
                            @click="onExtkey"
杜大兵 committed
25 26
                        >
                        </c-button>
LiRui committed
27 28 29 30
                        </template>
                    </c-fullbox>
                    </el-form-item>
                </c-col>
31

LiRui committed
32 33 34 35 36 37 38 39
                <c-col :span="24">
                    <el-form-item
                    label="融资参考号"
                    prop="bpdgrp.rec.ownref"
                    style="width: 100%"
                    >
                    <c-fullbox>
                        <c-input
40
                        v-model="model.bpdgrp.rec.ownref"
LiRui committed
41 42 43 44 45
                        maxlength="16"
                        disabled
                        placeholder="请输入融资参考号"
                        ></c-input>
                        <template slot="footer">
杜大兵 committed
46 47
                        <c-button
                            size="small"
LiRui committed
48
                            style="margin-left: 10px; padding: 0 12px"
杜大兵 committed
49
                            type="primary"
LiRui committed
50 51
                            icon="el-icon-info"
                            @click="onExtkey"
杜大兵 committed
52 53
                        >
                        </c-button>
LiRui committed
54 55 56 57
                        </template>
                    </c-fullbox>
                    </el-form-item>
                </c-col>
58

LiRui committed
59 60 61 62 63 64 65 66 67 68 69 70 71 72
                <!-- 融资类型-->
                <c-col :span="24">
                    <el-form-item label="融资类型" prop="bpdgrp.rec.fintyp">
                            <c-select v-model="model.bpdgrp.rec.fintyp" style="width: 100%"
                                        placeholder="请选择融资类型">
                                        <el-option v-for="item in codes.fintyp_bpd" :key="item.value"
                                        :label="item.label" :value="item.value" disabled>
                                    </el-option>
                            </c-select>
                    </el-form-item>
                </c-col>

                <c-col :span="24">
                    <c-col :span="22">
wangna committed
73
                        <el-form-item label="基准利率" prop="bpdgrp.rec.intrat">
74 75
                            <c-input
                                v-model="model.bpdgrp.rec.intrat"
76
                                placeholder="请输入基准利率" disabled
杜大兵 committed
77 78
                            ></c-input>
                        </el-form-item>
79
                    </c-col>
LiRui committed
80 81

                    <c-col :span="2" style="padding:5px; font-size: 10px;text-align: center;">
杜大兵 committed
82 83
                        <span>%</span>
                    </c-col>
LiRui committed
84
                </c-col>
85

LiRui committed
86 87 88 89 90 91 92 93 94 95
            <!-- Advance Amount -->
            <c-col :span="16">
                <el-form-item label="融资金额" prop="bpdgrp.cbs.max.cur">
                    <c-select
                        v-model="model.bpdgrp.cbs.max.cur"
                        style="width:100%"
                        placeholder="请选择融资币种" disabled>
                    </c-select>
                </el-form-item>
            </c-col>
杜大兵 committed
96

LiRui committed
97 98 99 100 101 102 103 104
            <c-col :span="8">
                <el-form-item label="" label-width="5px" prop="bpdgrp.cbs.max.amt">
                    <c-input
                        v-model="model.bpdgrp.cbs.max.amt"
                        placeholder="请输入融资金额" disabled
                    ></c-input>
                </el-form-item>
            </c-col>
105

LiRui committed
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
            <!-- Open Amount -->
            <c-col :span="16">
                <el-form-item label="押汇余额" prop="bpdgrp.cbs.opn1.cur">
                    <c-select
                    v-model="model.bpdgrp.cbs.opn1.cur"
                    style="width:100%"
                    placeholder="请选择押汇币种" disabled>
                    </c-select>
                </el-form-item>
            </c-col>

            <c-col :span="8">
                <el-form-item label="" label-width="5px" prop="bpdgrp.cbs.opn1.amt">
                    <c-input
                        v-model="model.bpdgrp.cbs.opn1.amt"
                        placeholder="请输入押汇余额" disabled
                    ></c-input>
                </el-form-item>
杜大兵 committed
124
            </c-col>
LiRui committed
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
        </c-col>

        <!-- 右 -->
        <c-col :span="12" style="padding-left: 20px;">
            <!-- 摘要 -->
            <c-col :span="24">
                <el-form-item label="票据项下的名称" prop="bpdgrp.rec.pntnam">
                    <c-input
                        v-model="model.bpdgrp.rec.pntnam"
                        maxlength="40"
                        style="width:100%"
                        placeholder="" disabled
                    ></c-input>
                </el-form-item>
            </c-col>

            <c-col :span="24">
                <el-form-item label="融资名称"  prop="bpdgrp.rec.nam">
                    <c-input
                        v-model="model.bpdgrp.rec.nam"
                        style="width:100%"
                        maxlength="40"
                        placeholder="请输入" disabled
                    ></c-input>
                </el-form-item>
            </c-col>

            <c-col :span="24">
杜大兵 committed
153 154 155 156 157 158 159 160 161
                <c-ptap
                    :model="model"
                    :argadr="{
                    title: '融资客户',
                    grp: 'bpdgrp',
                    rol: 'fia',
                    }"
                    :disabled="true"
                    @onSeainf="onSeainf"
LiRui committed
162
                    @onAplpDet="onBenpDet"
杜大兵 committed
163 164 165
                >
                </c-ptap>
            </c-col>
LiRui committed
166
        </c-col>
167

LiRui committed
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
        <c-col :span="20">
            <el-form-item label="描述" prop="strinf">
                <c-input
                    type="textarea"
                    :rows="10"
                    v-model="model.strinf"
                    maxlength="50"
                    show-word-limit
                    placeholder="请输入描述"
                ></c-input>
            </el-form-item>
        </c-col>

        <c-col :span="4">
            <c-checkbox v-model="model.sndmsg">Send Message</c-checkbox>
        </c-col>
    </div>
杜大兵 committed
185 186 187
</template>
<script>
import Api from "~/service/Api"
wangren committed
188
import commonProcess from "~/mixin/commonProcess";
杜大兵 committed
189 190 191 192 193 194 195 196
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Bptcan/Event"
import Ptap from "~/views/Public/Ptap";

export default {
    components: { "c-ptap": Ptap },
    inject: ['root'],
    props:["model","codes"],
wangren committed
197
    mixins: [commonProcess],
杜大兵 committed
198 199 200 201 202 203 204 205 206 207 208 209 210 211
    data(){
        return {

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

    }
}
</script>
<style>

</style>