Detp.vue 21.4 KB
Newer Older
1
<template>
Wuyuqiu committed
2
  <div class="eibs">
3
    <c-row>
liyixun committed
4
      <c-col :span="24">
liyixun committed
5
        <!-- ---------------------页面左侧 ------------------------------->
Wuyuqiu committed
6
        <c-col :span="12" style="padding-right: 20px;">
liyixun committed
7 8 9
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y'"
wangna committed
10
              label="合同号"
liyixun committed
11 12 13 14 15
              prop="gidgrp.rec.orcref"
            >
              <c-input
                v-model="model.gidgrp.rec.orcref"
                maxlength="35"
wangna committed
16
                placeholder="请输入合同号"
liyixun committed
17 18 19
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
20

liyixun committed
21 22 23
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
wangna committed
24
              label="合同号"
liyixun committed
25 26 27 28 29
              prop="gidgrp.rec.orcref"
            >
              <c-input
                v-model="model.gidgrp.rec.orcref"
                maxlength="35"
wangna committed
30
                placeholder="请输入合同号"
liyixun committed
31 32 33
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
34

liyixun committed
35 36 37
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y'"
wangna committed
38
              label="合同签定日期"
liyixun committed
39 40 41 42 43 44 45
              prop="gidgrp.rec.orcdat"
            >
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.orcdat"
                style="width: 100%"
wangna committed
46
                placeholder="请选择合同签定日期"
liyixun committed
47 48 49
              ></c-date-picker>
            </el-form-item>
          </c-col>
liyixun committed
50

liyixun committed
51 52 53
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
wangna committed
54
              label="合同签定日期"
liyixun committed
55 56 57 58 59 60 61
              prop="gidgrp.rec.orcdat"
            >
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.orcdat"
                style="width: 100%"
wangna committed
62
                placeholder="请选择合同签定日期"
liyixun committed
63 64 65
              ></c-date-picker>
            </el-form-item>
          </c-col>
liyixun committed
66

liyixun committed
67 68 69
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y'"
wangna committed
70
              label="合同失效日期"
liyixun committed
71 72 73 74 75 76 77
              prop="gidgrp.rec.tenclsdat"
            >
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.orcdat"
                style="width: 100%"
wangna committed
78
                placeholder="请选择合同失效日期"
liyixun committed
79 80 81
              ></c-date-picker>
            </el-form-item>
          </c-col>
liyixun committed
82

liyixun committed
83 84 85
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
wangna committed
86
              label="合同失效日期"
liyixun committed
87 88 89 90 91 92 93
              prop="gidgrp.rec.tenclsdat"
            >
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.orcdat"
                style="width: 100%"
wangna committed
94
                placeholder="请选择合同失效日期"
liyixun committed
95 96 97
              ></c-date-picker>
            </el-form-item>
          </c-col>
liyixun committed
98

liyixun committed
99
          <c-col :span="24">
Wuyuqiu committed
100
            <c-col :span="17" v-if="model.gitp.covgodsrvmodflg == ''">
liyixun committed
101
              <el-form-item
wangna committed
102
                label="合同标的"
liyixun committed
103 104 105
                prop="gidgrp.blk.covgodsrv"
              >
                <c-input
106
                  disabled
Wuyuqiu committed
107
                  rows="7"
liyixun committed
108 109 110 111
                  type="textarea"
                  v-model="model.gidgrp.blk.covgodsrv"
                  maxlength="350"
                  show-word-limit
wangna committed
112
                  placeholder="请输入合同标的"
liyixun committed
113 114 115
                ></c-input>
              </el-form-item>
            </c-col>
Wuyuqiu committed
116
            <c-col :span="17"  v-if="model.gitp.covgodsrvmodflg != ''">
117
              <el-form-item
wangna committed
118
                label="合同标的"
119 120 121 122 123 124 125 126
                prop="gidgrp.blk.atxcovgodsrv"
              >
                <c-input
                  rows="6"
                  type="textarea"
                  v-model="model.gidgrp.blk.axtcovgodsrv"
                  maxlength="350"
                  show-word-limit
wangna committed
127
                  placeholder="请输入合同标的"
128 129 130
                ></c-input>
              </el-form-item>
            </c-col>
Wuyuqiu committed
131
            <c-col :span="7">
liyixun committed
132 133 134 135
              <c-checkbox
                v-if="model.gitp.swiftflg == 'Y'"
                v-model="model.gitp.covgodsrvmodflg"
                style="margin: 0 0 0 10px"
Wuyuqiu committed
136
                class="checkbox-left"
wangna committed
137
                >是否手工修改保函文本</c-checkbox
liyixun committed
138 139 140 141
              >
              <c-checkbox
                v-if="model.gitp.swiftflg == 'Y'"
                v-model="model.gitp.covgod.chkast"
liyixun committed
142
                style="margin: 0 0 0 10px;"
Wuyuqiu committed
143
                class="checkbox-left"
wangna committed
144
                >允许</c-checkbox
liyixun committed
145 146 147 148 149 150
              >
              <c-button
                disabled
                v-if="model.gitp.swiftflg == 'Y'"
                size="small"
                type="primary"
Wuyuqiu committed
151
                style="margin: 5px 0 0 10px;width:100px;float:left;"
liyixun committed
152 153
                @click="onGitpButdifcovgodsrv"
              >
wangna committed
154
                查看系统文本
liyixun committed
155 156 157 158 159 160
              </c-button>
              <c-button
                disabled
                v-if="model.gitp.swiftflg == 'Y'"
                size="small"
                type="primary"
Wuyuqiu committed
161
                style="margin: 5px 0 0 10px;width:100px;float:left;"
liyixun committed
162 163
                @click="onGitpButdifhiscovgodsrv"
              >
wangna committed
164
                查看历史文本
liyixun committed
165 166 167
              </c-button>
            </c-col>
          </c-col>
liyixun committed
168

liyixun committed
169 170 171
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y'"
wangna committed
172
              label="原始利率"
liyixun committed
173 174 175 176 177
              prop="gidgrp.rec.orcrat"
            >
              <c-input
                disabled
                v-model="model.gidgrp.rec.orcrat"
wangna committed
178
                placeholder="请输入原始利率"
liyixun committed
179 180 181
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
182

liyixun committed
183 184 185
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
wangna committed
186
              label="原始利率"
liyixun committed
187 188 189 190 191
              prop="gidgrp.rec.orcrat"
            >
              <c-input
                disabled
                v-model="model.gidgrp.rec.orcrat"
wangna committed
192
                placeholder="请输入原始利率"
liyixun committed
193 194 195
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
196

liyixun committed
197 198
          <c-col :span="24">
            <c-col :span="12">
panziyi committed
199
              <el-form-item label="合同币种和金额" prop="gidgrp.rec.orccur">
liyixun committed
200 201 202 203
                <c-select
                  disabled
                  v-model="model.gidgrp.rec.orccur"
                  style="width: 100%"
wangna committed
204
                  placeholder="请选择合同币种 "
liyixun committed
205 206 207 208 209 210 211 212 213 214 215
                >
                  <el-option
                    v-for="item in codes.curtxt"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </c-select>
              </el-form-item>
            </c-col>
Wuyuqiu committed
216
            <c-col :span="12">
liyixun committed
217 218 219 220
              <el-form-item label-width="5px" prop="gidgrp.rec.orcamt">
                <c-input
                  disabled
                  v-model="model.gidgrp.rec.orcamt"
wangna committed
221
                  placeholder="请输入合同金额 "
liyixun committed
222 223 224 225
                ></c-input>
              </el-form-item>
            </c-col>
          </c-col>
liyixun committed
226

liyixun committed
227 228 229
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
wangna committed
230
              label="合同签定地"
liyixun committed
231 232 233 234 235 236 237 238 239
              prop="gidgrp.blk.orcplc"
            >
              <c-input
                disabled
                type="textarea"
                rows="4"
                v-model="model.gidgrp.blk.orcplc"
                maxlength="140"
                show-word-limit
wangna committed
240
                placeholder="请输入合同签定地"
liyixun committed
241 242 243
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
244

liyixun committed
245 246 247
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
wangna committed
248
              label="预付款账号"
liyixun committed
249 250 251 252 253 254
              prop="gidgrp.rec.acc"
            >
              <c-input
                disabled
                v-model="model.gidgrp.rec.acc"
                maxlength="35"
wangna committed
255
                placeholder="请输入预付款账号"
liyixun committed
256 257 258
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
259

liyixun committed
260 261 262 263
          <c-col :span="24">
            <c-col :span="12">
              <el-form-item
                v-if="model.gitp.swiftflg == 'Y'"
wangna committed
264
                label="适用法律"
liyixun committed
265 266 267 268 269 270
                prop="gidgrp.rec.jurlaws20"
              >
                <c-select
                  :disabled="model.gitp.swiftflg != 'Y'"
                  v-model="model.gidgrp.rec.jurlaws20"
                  style="width: 100%"
wangna committed
271
                  placeholder="请选择适用法律"
liyixun committed
272 273 274 275 276 277 278 279 280 281
                >
                  <el-option
                    v-for="item in codes.ctytxt1"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </c-select>
              </el-form-item>
282
            </c-col>
Wuyuqiu committed
283
            <c-col :span="12">
liyixun committed
284 285 286 287 288
              <el-form-item
                v-if="model.gitp.swiftflg == 'Y'"
                label-width="5px"
                prop="gidgrp.rec.jurlaw"
              >
panziyi committed
289
                <c-select
liyixun committed
290 291 292
                  disabled
                  v-model="model.gidgrp.rec.jurlaw"
                  maxlength="35"
panziyi committed
293 294
                  style="width: 100%"
                  :code="codes.ctytxt2"
wangna committed
295
                  placeholder="请输入"
panziyi committed
296
                ></c-select>
liyixun committed
297 298 299 300 301 302
              </el-form-item>
            </c-col>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
wangna committed
303
              label="仲裁法律"
liyixun committed
304 305
              prop="gidgrp.rec.jurlaw"
            >
panziyi committed
306
              <c-select
liyixun committed
307 308 309
                disabled
                v-model="model.gidgrp.rec.jurlaw"
                maxlength="35"
panziyi committed
310 311
                :code="codes.ctytxt2"
                style="width: 100%"
wangna committed
312
                placeholder="请输入仲裁法律"
panziyi committed
313
              ></c-select>
liyixun committed
314 315 316 317 318
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
wangna committed
319
              label="仲裁地"
liyixun committed
320 321 322 323 324 325
              prop="gidgrp.rec.jurplc"
            >
              <c-input
                :disabled="model.gidgrp.rec.jurlaws20 == ''"
                v-model="model.gidgrp.rec.jurplc"
                maxlength="35"
wangna committed
326
                placeholder="请输入仲裁地"
liyixun committed
327 328 329 330 331 332
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
wangna committed
333
              label="投标参考号"
liyixun committed
334 335 336 337 338 339
              prop="gidgrp.rec.tenref"
            >
              <c-input
                disabled
                v-model="model.gidgrp.rec.tenref"
                maxlength="35"
wangna committed
340
                placeholder="请输入投标参考号"
liyixun committed
341 342 343 344 345 346
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
wangna committed
347
              label="投标日期"
liyixun committed
348 349 350 351 352 353 354
              prop="gidgrp.rec.tendat"
            >
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.tendat"
                style="width: 100%"
wangna committed
355
                placeholder="请选择投标日期"
liyixun committed
356 357 358 359 360 361
              ></c-date-picker>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
wangna committed
362
              label="最新传输日期"
liyixun committed
363 364 365 366 367 368 369
              prop="gidgrp.rec.trmdat"
            >
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.trmdat"
                style="width: 100%"
wangna committed
370
                placeholder="请选择最新传输日期"
liyixun committed
371 372 373 374
              ></c-date-picker>
            </el-form-item>
          </c-col>
        </c-col>
375

liyixun committed
376
        <!-- -------------------页面右侧---------------------- -->
Wuyuqiu committed
377
        <c-col :span="12" style="padding-left: 20px;">
liyixun committed
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="手册号码"
              prop="gidgrp.rec.mannum"
            >
              <c-input
                disabled
                v-model="model.gidgrp.rec.mannum"
                maxlength="12"
                placeholder="请输入手册号码"
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="业务类型"
              prop="gidgrp.ghd.bustyp"
            >
              <c-select
                disabled
                v-model="model.gidgrp.ghd.bustyp"
                style="width: 100%"
                placeholder="请选择业务类型"
              >
                <el-option
                  v-for="item in codes.bustyp"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
414

liyixun committed
415 416 417 418 419 420 421 422 423 424 425 426 427 428
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="仓库号"
              prop="gidgrp.ghd.wahnum"
            >
              <c-input
                disabled
                v-model="model.gidgrp.ghd.wahnum"
                maxlength="20"
                placeholder="请输入仓库号"
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
429

liyixun committed
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="受益人名称"
              prop="gidgrp.gidcxm.benefi"
            >
              <c-input
                v-model="model.gidgrp.gidcxm.benefi"
                maxlength="80"
                placeholder="请输入受益人名称"
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="企业海关编码"
              prop="gidgrp.rec.bngcod"
            >
              <c-input
                disabled
                v-model="model.gidgrp.rec.bngcod"
                maxlength="10"
                placeholder="请输入企业海关编码"
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="组织机构代码"
              prop="gidgrp.rec.juscod"
            >
              <c-input
                disabled
                v-model="model.gidgrp.rec.juscod"
                maxlength="10"
                placeholder="请输入组织机构代码"
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="流动资金贷款利率档次"
              prop="gidgrp.rec.cunqii"
            >
              <c-select
                disabled
                v-model="model.gidgrp.rec.cunqii"
                style="width: 100%"
                placeholder="请选择流动资金贷款利率档次"
              >
                <el-option
                  v-for="item in codes.cunqii"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="上浮比率"
              prop="gidgrp.rec.bilvvv"
            >
              <c-input
                disabled
                v-model="model.gidgrp.rec.bilvvv"
                placeholder="请输入上浮比率"
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
wangna committed
509
              label="直接Swift添加"
liyixun committed
510 511
              prop="gitp.indirectswiadd"
            >
liyixun committed
512
            <c-input-xml
liyixun committed
513
                type="textarea"
liyixun committed
514 515
                :maxRows="10"
                :model="model.gitp.indirectswiadd"
liyixun committed
516
                @change="commonExecuteRule('gitp.indirectswiadd')"
liyixun committed
517 518
                maxlength="9750"
                show-word-limit
wangna committed
519
                placeholder="请输入直接Swift添加"
liyixun committed
520
              ></c-input-xml>
liyixun committed
521 522
            </el-form-item>
          </c-col>
liyixun committed
523

liyixun committed
524 525 526
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y'"
wangna committed
527
              label="合同签定地"
liyixun committed
528 529 530 531 532 533 534 535 536
              prop="gidgrp.blk.orcplc"
            >
              <c-input
                disabled
                type="textarea"
                rows="4"
                v-model="model.gidgrp.blk.orcplc"
                maxlength="140"
                show-word-limit
wangna committed
537
                placeholder="请输入合同签定地"
liyixun committed
538 539 540
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
541

liyixun committed
542
          <c-col :span="24">
wangna committed
543
            <el-form-item label="附加说明" prop="gidgrp.blk.addinf">
liyixun committed
544 545 546 547 548 549 550
              <c-input
                disabled
                rows="4"
                type="textarea"
                v-model="model.gidgrp.blk.addinf"
                maxlength="700"
                show-word-limit
wangna committed
551
                placeholder="请输入附加说明"
liyixun committed
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg != 'Y'"
              label="备注"
              prop="gidgrp.ghd.remark"
            >
              <c-input
                disabled
                type="textarea"
                rows="4"
                v-model="model.gidgrp.ghd.remark"
                maxlength="245"
                show-word-limit
                placeholder="请输入备注"
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
572

liyixun committed
573 574 575
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y'"
wangna committed
576
              label="预付款账号"
liyixun committed
577 578 579 580 581 582
              prop="gidgrp.rec.acc"
            >
              <c-input
                disabled
                v-model="model.gidgrp.rec.acc"
                maxlength="35"
wangna committed
583
                placeholder="请输入预付款账号"
liyixun committed
584 585 586 587 588 589 590
              ></c-input>
            </el-form-item>
          </c-col>

          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y'"
wangna committed
591
              label="仲裁地"
liyixun committed
592 593 594 595 596 597
              prop="gidgrp.rec.jurplc"
            >
              <c-input
                :disabled="model.gidgrp.rec.jurlaws20 == ''"
                v-model="model.gidgrp.rec.jurplc"
                maxlength="35"
wangna committed
598
                placeholder="请输入仲裁地"
liyixun committed
599 600 601 602 603 604
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y'"
wangna committed
605
              label="投标参考号"
liyixun committed
606 607 608 609 610 611
              prop="gidgrp.rec.tenref"
            >
              <c-input
                disabled
                v-model="model.gidgrp.rec.tenref"
                maxlength="35"
wangna committed
612
                placeholder="请输入投标参考号"
liyixun committed
613 614 615 616 617 618
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y'"
wangna committed
619
              label="投标日期"
liyixun committed
620 621 622 623 624 625 626
              prop="gidgrp.rec.tendat"
            >
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.tendat"
                style="width: 100%"
wangna committed
627
                placeholder="请选择投标日期"
liyixun committed
628 629 630 631 632 633
              ></c-date-picker>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
              v-if="model.gitp.swiftflg == 'Y'"
wangna committed
634
              label="最新传输日期"
liyixun committed
635 636 637 638 639 640 641
              prop="gidgrp.rec.trmdat"
            >
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.trmdat"
                style="width: 100%"
wangna committed
642
                placeholder="请选择最新传输日期"
liyixun committed
643 644 645
              ></c-date-picker>
            </el-form-item>
          </c-col>
646
        </c-col>
liyixun committed
647
      </c-col>
648
    </c-row>
649 650 651
  </div>
</template>
<script>
liyixun committed
652
import Api from "~/service/Api";
653
import commonProcess from "~/mixin/commonProcess";
liyixun committed
654 655
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitopn/Event";
liyixun committed
656
import InputXml from "~/components/InputXml";
657 658

export default {
liyixun committed
659
  components: { InputXml },
liyixun committed
660 661 662 663 664 665 666
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
panziyi committed
667 668 669 670 671 672 673 674 675 676 677 678 679
   watch:{
    "model.gidgrp.rec.jurlaws20": function(){
      if(this.model.gidgrp.rec.jurlaws20=="GB"){
        this.model.gidgrp.rec.jurlaw="GB"
      }else if(this.model.gidgrp.rec.jurlaws20=="CN"){
        this.model.gidgrp.rec.jurlaw="CN"
      }else if(this.model.gidgrp.rec.jurlaws20=="HK"){
        this.model.gidgrp.rec.jurlaw="HK"
      }else if(this.model.gidgrp.rec.jurlaws20==""){
        this.model.gidgrp.rec.jurlaw=""
      }
    }
  },
liyixun committed
680 681
  created: function () {},
};
682 683 684
</script>
<style>
</style>