Limitbody.vue 10.2 KB
Newer Older
1
<template>
SunJie committed
2 3
    <div class="eibs-tab">
        <!--
潘际乾 committed
4
            <c-col :span="12">
SunJie committed
5 6 7
         <el-form-item label="ECIFNO">
             <c-input  v-model="model.liaall.limmod.ecifno" maxlength="22"  placeholder="请输入ECIFNO"></c-input>
         </el-form-item>
潘际乾 committed
8
        </c-col>
SunJie committed
9

潘际乾 committed
10
     <c-col :span="12">
SunJie committed
11
         <span  v-text="model.liaall.limmod.limpts.wrklab"   data-path=".liaall.limmod.limpts.wrklab" > </span>
潘际乾 committed
12
     </c-col>
SunJie committed
13

潘际乾 committed
14
     <c-col :span="12">
SunJie committed
15
         <span  v-text="model.liaall.limmod.limpts.othlab"   data-path=".liaall.limmod.limpts.othlab" > </span>
潘际乾 committed
16
     </c-col>
SunJie committed
17

潘际乾 committed
18
     <c-col :span="12">
SunJie committed
19
         <span  v-text="model.liaall.limmod.limpts.othlabss"   data-path=".liaall.limmod.limpts.othlabss" > </span>
潘际乾 committed
20
     </c-col>
SunJie committed
21

潘际乾 committed
22
        <c-col :span="12">
SunJie committed
23 24 25
         <el-form-item label="Drag  Drop Sender">
             <c-input  v-model="model.liaall.limmod.wrkp.ptsget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
         </el-form-item>
潘际乾 committed
26
        </c-col>
SunJie committed
27

潘际乾 committed
28
        <c-col :span="12">
SunJie committed
29 30 31
         <el-form-item label="Drag  Drop Sender">
             <c-input  v-model="model.liaall.limmod.othp.ptsget.sdamod.dadsnd"  placeholder="请输入Drag  Drop Sender"></c-input>
         </el-form-item>
潘际乾 committed
32
        </c-col>
SunJie committed
33 34 35
        -->

        <!-- ====================左边======================= -->
潘际乾 committed
36 37
        <c-col :span="12">
            <c-col :span="16">
SunJie committed
38 39 40 41 42 43 44 45 46 47 48
                <el-form-item
                    label="国内信用证项下开证授信额度:"
                    prop="liaall.limmod.limpts.wrk.pts.extkey"
                >
                    <c-input
                        v-model="model.liaall.limmod.limpts.wrk.pts.extkey"
                        :disabled="true"
                        maxlength="16"
                        placeholder="请输入External Key of Address"
                    ></c-input>
                </el-form-item>
潘际乾 committed
49
            </c-col>
SunJie committed
50

潘际乾 committed
51
            <c-col :span="8">
SunJie committed
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
                <el-form-item label="" label-width="20px">
                    <c-button
                        size="small"
                        type="primary;width:10%"
                        @click="onSeainf"
                        >i</c-button
                    >
                    <c-button
                        size="small"
                        type="primary"
                        icon="el-icon-search"
                        @click="onPreperButtxmsel"
                    >
                        Details
                    </c-button>
                </el-form-item>
潘际乾 committed
68
            </c-col>
SunJie committed
69

潘际乾 committed
70
            <c-col :span="24">
SunJie committed
71 72 73 74 75 76 77 78 79
                <el-form-item label="" prop="liaall.limmod.limpts.wrk.pts.nam">
                    <c-input
                        v-model="model.liaall.limmod.limpts.wrk.pts.nam"
                        maxlength="16"
                        placeholder=""
                        :disabled="true"
                        style="width:90%"
                    ></c-input>
                </el-form-item>
潘际乾 committed
80
            </c-col>
SunJie committed
81

潘际乾 committed
82
            <c-col :span="12">
SunJie committed
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
                <el-form-item
                    label="额度类型"
                    prop="liaall.limmod.limpts.nonrevflg1"
                >
                    <c-select
                        v-model="model.liaall.limmod.limpts.nonrevflg1"
                        style="width: 100%"
                        placeholder="请选择Flag to Mark Non-revolving Limits"
                        @change="nonrevflg1Change"
                    >
                        <el-option
                            v-for="item in codes.nonrevflg1"
                            :key="item.value"
                            :label="item.label"
                            :value="item.value"
                        >
                        </el-option>
                    </c-select>
                </el-form-item>
潘际乾 committed
102
            </c-col>
SunJie committed
103

潘际乾 committed
104
            <c-col :span="12">
SunJie committed
105 106 107 108 109
                <el-form-item label="">
                    <c-button size="small" type="primary" @click="onLimptsGet1">
                        查询
                    </c-button>
                </el-form-item>
潘际乾 committed
110
            </c-col>
SunJie committed
111

潘际乾 committed
112
            <c-col :span="24">
SunJie committed
113 114 115 116 117 118 119 120 121 122 123 124
                <el-form-item
                    label="合同流水号"
                    prop="liaall.limmod.limpts.pfcod1"
                >
                    <c-input
                        v-model="model.liaall.limmod.limpts.pfcod1"
                        maxlength="14"
                        placeholder="请输入合同流水号"
                        :disabled="this.model.liaall.limmod.limpts.nonrevflg1 != '2'"
                        style="width: 55%"
                    ></c-input>
                </el-form-item>
潘际乾 committed
125 126
            </c-col>
        </c-col>
SunJie committed
127 128

        <!-- ========================右边======================= -->
潘际乾 committed
129 130
        <c-col :span="12">
            <c-col :span="24">
SunJie committed
131 132 133 134 135 136 137 138 139
                <el-form-item label="业务编号" prop="liaall.limmod.ownref">
                    <c-input
                        v-model="model.liaall.limmod.ownref"
                        maxlength="16"
                        placeholder="请输入国结业务编号"
                        :disabled="true"
                        style="width: 70%"
                    ></c-input>
                </el-form-item>
潘际乾 committed
140
            </c-col>
SunJie committed
141

潘际乾 committed
142
            <c-col :span="24">
SunJie committed
143 144 145 146 147 148 149 150
                <el-form-item label="业务余额" prop="liaall.limmod.comamt">
                    <c-input
                        v-model="model.liaall.limmod.comamt"
                        placeholder="请输入业务余额"
                        :disabled="true"
                        style="width: 70%"
                    ></c-input>
                </el-form-item>
潘际乾 committed
151
            </c-col>
SunJie committed
152

潘际乾 committed
153
            <c-col :span="24">
SunJie committed
154 155 156 157 158 159 160 161
                <el-form-item label="保证金余额" prop="liaall.limmod.ccvamt">
                    <c-input
                        v-model="model.liaall.limmod.ccvamt"
                        placeholder="请输入保证金余额"
                        :disabled="true"
                        style="width: 70%"
                    ></c-input>
                </el-form-item>
潘际乾 committed
162 163
            </c-col>
        </c-col>
SunJie committed
164

潘际乾 committed
165
        <!--        <c-col :span="12">-->
SunJie committed
166 167 168
        <!--            <el-form-item label="开证授信额度主体名称" prop="liaall.limmod.limpts.wrk.pts.nam">-->
        <!--                <c-input  v-model="model.liaall.limmod.limpts.wrk.pts.nam" maxlength="40"  placeholder="请输入Name of Party"></c-input>-->
        <!--            </el-form-item>-->
潘际乾 committed
169
        <!--        </c-col>-->
SunJie committed
170 171

        <!--
潘际乾 committed
172
           <c-col :span="12">
SunJie committed
173 174 175
            <c-button size="small" type="primary"  @click="onWrkpDet">
                Details
            </c-button>
潘际乾 committed
176
           </c-col>
SunJie committed
177

潘际乾 committed
178
           <c-col :span="12">
SunJie committed
179 180 181
            <el-form-item label="External Key of Address">
                <c-input  v-model="model.liaall.limmod.limpts.oth.pts.extkey" maxlength="16"  placeholder="请输入External Key of Address"></c-input>
            </el-form-item>
潘际乾 committed
182
           </c-col>
SunJie committed
183

潘际乾 committed
184
           <c-col :span="12">
SunJie committed
185 186 187
            <el-form-item label="">
                <c-input  v-model="model.liaall.limmod.othp.ptsget.sdamod.seainf"  placeholder="请输入"></c-input>
            </el-form-item>
潘际乾 committed
188
           </c-col>
SunJie committed
189

潘际乾 committed
190
           <c-col :span="12">
SunJie committed
191 192 193
            <c-button size="small" type="primary"  @click="onOthpDet">
                Details
            </c-button>
潘际乾 committed
194
           </c-col>
SunJie committed
195

潘际乾 committed
196
           <c-col :span="12">
SunJie committed
197 198 199
            <el-form-item label="Name of Party">
                <c-input  v-model="model.liaall.limmod.limpts.oth.pts.nam" maxlength="40"  placeholder="请输入Name of Party"></c-input>
            </el-form-item>
潘际乾 committed
200 201
           </c-col>
           <c-col :span="12">
SunJie committed
202 203 204 205
            <el-form-item label="Flag to Mark Non-revolving Limits">
                <c-select v-model="model.liaall.limmod.limpts.nonrevflg2" style="width:100%" placeholder="请选择Flag to Mark Non-revolving Limits">
                  </c-select>
            </el-form-item>
潘际乾 committed
206 207
           </c-col>
           <c-col :span="12">
SunJie committed
208 209 210
            <el-form-item label="合同流�'号">
                <c-input  v-model="model.liaall.limmod.limpts.pfcod2" maxlength="14"  placeholder="请输入合同流�'号"></c-input>
            </el-form-item>
潘际乾 committed
211
           </c-col>
SunJie committed
212

潘际乾 committed
213
           <c-col :span="12">
SunJie committed
214 215 216
            <c-button size="small" type="primary"  @click="onLimptsGet2">
                查询
            </c-button>
潘际乾 committed
217 218
           </c-col>
                  <c-col :span="12">
SunJie committed
219 220 221
            <c-button size="small" type="primary"  @click="onLimmodTrycal">
                试算
            </c-button>
潘际乾 committed
222
           </c-col>
SunJie committed
223 224
           -->

潘际乾 committed
225
        <c-col :span="22" :offset="1">
SunJie committed
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
            <c-table style="text-align: center" :data="tableData" :border="true">
                <el-table-column label="可否串用" width="auto">
                </el-table-column>
                -->
                <el-table-column label="序号" width="auto"> </el-table-column>
                <el-table-column label="额度类型" width="auto">
                </el-table-column>
                <el-table-column label="入账机构" width="auto">
                </el-table-column>
                <el-table-column label="额度编号" width="auto">
                </el-table-column>
                <el-table-column label="额度明细编号" width="auto">
                </el-table-column>
                <el-table-column label="额度品种代码" width="auto">
                </el-table-column>
                <el-table-column label="品种代码描述" width="auto">
                </el-table-column>
                <el-table-column label="" width="auto"> </el-table-column>
            </c-table>
潘际乾 committed
245
        </c-col>
SunJie committed
246
    </div>
247 248
</template>
<script>
SunJie committed
249
import Api from "~/service/Api";
250
import CommonProcess from "~/mixin/CommonProcess";
SunJie committed
251 252
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Ditopn/Event";
253 254

export default {
255
    inject: ['root'],
SunJie committed
256
    props: ["model", "codes"],
257
    mixins: [CommonProcess],
SunJie committed
258
    data() {
259
        return {
SunJie committed
260 261 262 263 264 265 266 267
            tableData: {},
        };
    },
    methods: { ...Event ,
        nonrevflg1Change(){
            if (this.model.liaall.limmod.limpts.nonrevflg1 == '1'){
                this.model.liaall.limmod.limpts.pfcod1 = "";
            }
268 269
        }
    },
SunJie committed
270 271
    created: function () {},
};
272 273 274
</script>
<style>
</style>