Conp.vue 10.5 KB
Newer Older
wangna committed
1
<template>
闫泽浩 committed
2
  <div class="eibs">
wangna committed
3
    <!-- ====================左边======================= -->
4
    <c-col :span="12" style="padding-right: 20px">
wangna committed
5
      <c-col :span="24">
6
        <el-form-item label="保函编号" prop="gidgrp.rec.ownref" style="width: 100%">
wangna committed
7 8 9 10 11
          <c-fullbox>
            <c-input
              v-model="model.gidgrp.rec.ownref"
              maxlength="16"
              disabled
wangna committed
12
              placeholder="请输入保函编号"
wangna committed
13 14 15
            ></c-input>
            <template slot="footer">
              <c-button
16
                style="margin-left: 10px; padding: 0 12px"
wangna committed
17 18 19
                size="small"
                type="primary"
                @click="onSeainf"
wangna committed
20
                disabled
wangna committed
21
              >
nanrui committed
22
                <i class="el-icon-info"></i>
wangna committed
23 24 25 26 27 28 29
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>

      <c-col :span="13">
wangna committed
30
        <el-form-item label="保函币种和金额" prop="gidgrp.cbs.max.cur">
wangna committed
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
          <c-select
            disabled
            v-model="model.gidgrp.cbs.max.cur"
            style="width: 100%"
          >
            <el-option
              v-for="item in codes.cur"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="11">
        <el-form-item
          style="text-align: left"
          label-width="5px"
          prop="gidgrp.cbs.max.amt"
        >
          <c-input-currency
            v-model="model.gidgrp.cbs.max.amt"
            style="text-align: left; width: 100%"
            placeholder=""
            disabled
          ></c-input-currency>
        </el-form-item>
      </c-col>

      <c-col :span="13">
wangna committed
63
        <el-form-item label="保函余额" prop="gidgrp.cbs.opn1.cur">
wangna committed
64 65 66 67 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
          <c-select
            disabled
            v-model="model.gidgrp.cbs.opn1.cur"
            style="width: 100%"
          >
            <el-option
              v-for="item in codes.cur"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="11">
        <el-form-item
          style="text-align: left"
          label-width="5px"
          prop="gidgrp.cbs.opn1.amt"
        >
          <c-input-currency
            v-model="model.gidgrp.cbs.opn1.amt"
            style="text-align: left; width: 100%"
            placeholder=""
            disabled
          ></c-input-currency>
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
96
        <el-form-item label="接收目的" prop="gidgrp.rec.purposin">
wangna committed
97
          <c-select
wangna committed
98
            v-model="model.gidgrp.rec.purposin"
wangna committed
99
            style="width: 100%"
wangna committed
100
            placeholder="请选择接收目的 "
wangna committed
101
            :code="codes.purposin"
wangna committed
102
            disabled
wangna committed
103 104
          >
          </c-select>
wangna committed
105 106 107 108
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
109
        <el-form-item label="支出目的" prop="gidgrp.rec.purpos">
wangna committed
110 111 112
          <c-select
            v-model="model.gidgrp.rec.purpos"
            style="width: 100%"
wangna committed
113
            placeholder="请选择支出目的"
wangna committed
114
            :code="codes.purpos"
wangna committed
115
            disabled
wangna committed
116 117 118 119 120 121
          >
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
122
        <el-form-item label="保函类型" prop="gidgrp.rec.gartyp">
wangna committed
123 124 125
          <c-select
            v-model="model.gidgrp.rec.gartyp"
            style="width: 100%"
wangna committed
126
            placeholder="请选择保函种类"
wangna committed
127
            :code="codes.typgar1"
wangna committed
128 129 130 131 132 133 134
            disabled
          >
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="13">
wangna committed
135
        <el-form-item label="有效期限" prop="gidgrp.rec.expdat">
wangna committed
136 137 138 139
          <c-date-picker
            type="date"
            v-model="model.gidgrp.rec.expdat"
            style="width: 100%"
wangna committed
140
            placeholder="请选择有效期限"
wangna committed
141 142 143 144 145 146 147 148 149 150 151
            disabled
          ></c-date-picker>
        </el-form-item>
      </c-col>

      <c-col :span="11">
        <el-form-item
          style="text-align: left"
          label-width="5px"
          prop="gidgrp.rec.exptyp"
        >
wangna committed
152
          <c-select
wangna committed
153
            v-model="model.gidgrp.rec.exptyp"
wangna committed
154
            style="width: 100%"
wangna committed
155
            placeholder="请选择"
wangna committed
156
            :code="codes.exptyp"
wangna committed
157
            disabled
wangna committed
158 159
          >
          </c-select>
wangna committed
160 161 162 163
        </el-form-item>
      </c-col>

      <c-col :span="13">
wangna committed
164
        <el-form-item label="责任期" prop="gidgrp.rec.liadat">
wangna committed
165 166 167 168
          <c-date-picker
            type="date"
            v-model="model.gidgrp.rec.liadat"
            style="width: 100%"
wangna committed
169
            placeholder="请选择责任期"
wangna committed
170 171 172 173 174 175 176 177 178 179 180 181 182 183
            disabled
          ></c-date-picker>
        </el-form-item>
      </c-col>

      <c-col :span="11">
        <el-form-item
          style="text-align: left"
          label-width="5px"
          prop="gidgrp.rec.liatypc"
        >
          <c-select
            v-model="model.gidgrp.rec.liatypc"
            style="width: 100%"
wangna committed
184
            placeholder="请选择"
wangna committed
185
            :code="codes.liatypc"
wangna committed
186 187 188 189 190 191 192
            disabled
          >
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
193
        <el-form-item label="保函开立类型" prop="gidgrp.rec.hndtyp">
wangna committed
194 195 196
          <c-select
            v-model="model.gidgrp.rec.hndtyp"
            style="width: 100%"
wangna committed
197
            placeholder="请选择保函开立类型"
wangna committed
198
            :code="codes.hndtyp"
wangna committed
199 200 201 202 203 204 205
            disabled
          >
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
206
        <el-form-item label="保兑状态" prop="gidgrp.rec.cnfsta">
wangna committed
207 208 209
          <c-select
            v-model="model.gidgrp.rec.cnfsta"
            style="width: 100%"
wangna committed
210
            placeholder="请选择保兑状态"
wangna committed
211
            :code="codes.cnfsta"
wangna committed
212 213 214 215 216 217 218 219
            disabled
          >
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item
wangna committed
220
          label="保兑金额"
wangna committed
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
          prop="gidgrp.cbs.cnf.cur"
          style="width: 100%"
        >
          <c-col :span="7">
            <c-select
              disabled
              v-model="model.gidgrp.cbs.cnf.cur"
              style="width: 100%"
            >
              <el-option
                v-for="item in codes.cur"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </c-col>
          <c-col :span="7">
            <el-form-item
              style="text-align: left"
              label-width="5px"
              prop="gidgrp.cbs.cnf.amt"
            >
              <c-input-currency
                v-model="model.gidgrp.cbs.cnf.amt"
                style="text-align: left; width: 100%"
              ></c-input-currency>
            </el-form-item>
          </c-col>
          <c-col :span="2" style="text-align: center">
            <label style="display: inline-block; width: 100%">or</label>
          </c-col>
          <c-col :span="6">
            <c-input v-model="model.gidgrp.rec.partcon"></c-input>
          </c-col>
          <c-col :span="2" style="text-align: center">
            <label style="display: inline-block; width: 100%">%</label>
          </c-col>
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
264
        <el-form-item label="保兑请求日期" prop="reqdat">
wangna committed
265 266 267 268
          <c-date-picker
            type="date"
            v-model="model.reqdat"
            style="width: 100%"
wangna committed
269
            placeholder="请选择保兑请求日期"
wangna committed
270 271 272 273 274
          ></c-date-picker>
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
275
        <el-form-item label="保兑日期" prop="gidgrp.rec.cnfdat">
wangna committed
276 277 278 279
          <c-date-picker
            type="date"
            v-model="model.gidgrp.rec.cnfdat"
            style="width: 100%"
wangna committed
280
            placeholder="请选择保兑日期"
wangna committed
281 282 283 284 285 286
          ></c-date-picker>
        </el-form-item>
      </c-col>
    </c-col>

    <!-- ========================右边======================= -->
287
    <c-col :span="12" style="padding-left: 20px">
wangna committed
288
      <c-col :span="24">
wangna committed
289
        <el-form-item label="简略信息" prop="gidgrp.rec.nam">
wangna committed
290 291 292
          <c-input
            v-model="model.gidgrp.rec.nam"
            maxlength="40"
wangna committed
293
            placeholder="请输入简略信息"
wangna committed
294 295 296 297 298 299
            disabled
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
300
        <el-form-item label="申请人" prop="gidgrp.apl.pts.nam">
wangna committed
301 302 303
          <c-input
            v-model="model.gidgrp.apl.pts.nam"
            maxlength="40"
wangna committed
304
            placeholder="请输入"
wangna committed
305 306 307 308 309 310
            disabled
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
311
        <el-form-item label="受益人" prop="gidgrp.ben.pts.nam">
wangna committed
312 313 314
          <c-input
            v-model="model.gidgrp.ben.pts.nam"
            maxlength="40"
wangna committed
315
            placeholder="请输入"
wangna committed
316 317 318 319 320 321
            disabled
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
322
        <el-form-item label="帐户行" prop="gidgrp.ctr.pts.nam">
wangna committed
323 324 325
          <c-input
            v-model="model.gidgrp.ctr.pts.nam"
            maxlength="40"
wangna committed
326
            placeholder="请输入"
wangna committed
327 328 329 330 331 332
            disabled
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
333
        <el-form-item label="开证行" prop="gidgrp.iss.pts.nam">
wangna committed
334 335 336
          <c-input
            v-model="model.gidgrp.iss.pts.nam"
            maxlength="40"
wangna committed
337
            placeholder="请输入开证行"
wangna committed
338 339 340 341 342 343
            disabled
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
wangna committed
344
        <el-form-item label="标签79的内容" prop="gidgrp.blk.contag79">
wangna committed
345 346 347 348 349
          <c-input
            type="textarea"
            v-model="model.gidgrp.blk.contag79"
            maxlength="50"
            show-word-limit
wangna committed
350
            placeholder="请输入标签79的内容"
wangna committed
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
          ></c-input>
        </el-form-item>
      </c-col>
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getamc/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
wangna committed
370
  methods: {
wangna committed
371
    ...Event,
wangna committed
372
    onSeainf(data) {
wangna committed
373 374 375
      this.$emit("onSeainf", data);
    },
  },
wangna committed
376 377 378 379 380
  created: function () {},
};
</script>
<style>
</style>