1
2
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
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
96
97
98
99
100
101
102
103
104
105
106
107
<template>
<div class="eibs-tab">
<c-col :span="24">
<!-- ==================左边================ -->
<c-col :span="12" style="padding-right: 20px">
<c-col :span="24">
<el-form-item label="分批装运货物" prop="dedgrp.rec.shppar">
<c-select disabled v-model="model.dedgrp.rec.shppar" dbCode="ELC011" style="width:100%" placeholder="请输入">
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="分期装运/提供服务" prop="dedgrp.rec.fqzytgfw">
<c-select disabled v-model="model.dedgrp.rec.fqzytgfw" dbCode="ELC011" style="width:100%" placeholder="请输入">
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="分期装运/提供服务约定" prop="dedgrp.rec.fqtime">
<c-input disabled type="textarea" v-model="model.dedgrp.rec.fqtime" maxlength="35" show-word-limit placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="货物运输或交货方式/服务方式" prop="dedgrp.rec.tratyp">
<c-select disabled v-model="model.dedgrp.rec.tratyp" dbCode="TRATYP" style="width:100%" placeholder="请输入">
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="手输运输方式" prop="dedgrp.rec.sdsrfs">
<c-input disabled type="textarea" v-model="model.dedgrp.rec.sdsrfs" maxlength="35" show-word-limit placeholder="请输入"></c-input>
</el-form-item>
</c-col>
</c-col>
<!-- ============右边================= -->
<c-col :span="12" style="padding-left: 20px">
<c-col :span="24">
<el-form-item label="货物装运地(港)" prop="dedgrp.rec.shpfro">
<c-input disabled type="textarea" v-model="model.dedgrp.rec.shpfro" maxlength="35" :rows="3" show-word-limit placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="货物目的地/交货地(港)" prop="dedgrp.rec.shpto">
<c-input disabled type="textarea" v-model="model.dedgrp.rec.shpto" maxlength="35" :rows="3" show-word-limit placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label="服务提供地点" prop="dedgrp.rec.shppro">
<c-input disabled type="textarea" v-model="model.dedgrp.rec.shppro" maxlength="35" :rows="3" show-word-limit placeholder="请输入"></c-input>
</el-form-item>
</c-col>
</c-col>
<c-col :span="20">
<el-form-item label="货物描述" prop="dedgrp.blk.lcrgod">
<c-input disabled type="textarea" v-model="model.dedgrp.blk.lcrgod" maxlength="65" :rows="6" show-word-limit placeholder="请输入货物描述"></c-input>
</el-form-item>
</c-col>
<c-col :span="20">
<el-form-item label="货物类型" prop="dedgrp.rec.stagod">
<c-select disabled v-model="model.dedgrp.rec.stagod" dbCode="GODCOD" style="width:100%" placeholder="请输入">
</c-select>
</el-form-item>
</c-col>
<c-col :span="20">
<el-form-item label="单据条款" prop="dedgrp.blk.lcrdoc">
<c-input disabled type="textarea" v-model="model.dedgrp.blk.lcrdoc" maxlength="65" :rows="6" show-word-limit placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="20">
<el-form-item label="附加条款" prop="dedgrp.blk.adlcnd">
<c-input disabled type="textarea" v-model="model.dedgrp.blk.adlcnd" maxlength="65" :rows="6" show-word-limit placeholder="请输入"></c-input>
</el-form-item>
</c-col>
<c-col :span="20">
<el-form-item label="给付款、承兑、议付行的指示" prop="dedgrp.blk.insbnk">
<c-input disabled type="textarea" v-model="model.dedgrp.blk.insbnk" maxlength="65" :rows="6" show-word-limit placeholder="请输入"></c-input>
</el-form-item>
</c-col>
</c-col>
</div>
</template>
<script>
import event from "../event";
export default {
inject: ["root"],
props: ["model", "codes"],
mixins: [event],
data() {
return {};
},
created() {}
};
</script>
<style>
</style>