Detp.vue 5.06 KB
Newer Older
chenwen committed
1
<template>
2 3
<!--  <c-row>-->
  <div class="eibs">
4
    <!-- ====================左边======================= -->
5
    <c-col :span="12" style="padding-right: 20px">
6
      <c-col :span="24">
nanrui committed
7
        <el-form-item label="放单指示条款">
8 9 10 11 12 13
          <c-input
            disabled
            type="textarea"
            v-model="model.bcdgrp.blk.colins"
            maxlength="65"
            show-word-limit
wangna committed
14
            placeholder="请输入放单指示条款"
15 16 17 18
          >
          </c-input>
        </el-form-item>
      </c-col>
chenwen committed
19 20

      <c-col :span="24">
nanrui committed
21
        <el-form-item label="汇票指示条款">
22 23 24 25 26 27
          <c-input
            disabled
            type="textarea"
            v-model="model.bcdgrp.blk.dftins"
            maxlength="65"
            show-word-limit
nanrui committed
28
            placeholder="请输入汇票指示条款"
29 30
          ></c-input>
        </el-form-item>
chenwen committed
31 32
      </c-col>

33
      <c-col :span="24">
nanrui committed
34
        <el-form-item label="拒绝证书指示条款" prop="bcdgrp.rec.proins">
35 36 37 38
          <c-select
            disabled
            v-model="model.bcdgrp.rec.proins"
            style="width: 100%"
nanrui committed
39
            placeholder="请选择拒绝证书指示条款"
40
          >
41 42 43 44 45 46 47
            <el-option
                v-for="item in codes.proins"
                :key="item.value"
                :label="item.label"
                :value="item.value"
            >
            </el-option>
48
          </c-select>
49

chenwen committed
50
        </el-form-item>
51
      </c-col>
chenwen committed
52 53

      <c-col :span="24">
nanrui committed
54
        <el-form-item label="其他指示条款">
55 56 57 58 59 60
          <c-input
            disabled
            type="textarea"
            v-model="model.bcdgrp.blk.othins"
            maxlength="65"
            show-word-limit
nanrui committed
61
            placeholder="请输入其他指示条款"
62 63
          ></c-input>
        </el-form-item>
chenwen committed
64
      </c-col>
65

chenwen committed
66
      <c-col :span="24">
nanrui committed
67
        <el-form-item label="货物代码(风险国家)">
68 69 70 71
          <c-select
            disabled
            v-model="model.bcdgrp.rec.stagod"
            style="width: 100%"
nanrui committed
72
            placeholder="请选择货物代码(风险国家)"
73
          >
74 75 76 77 78 79 80
            <el-option
                v-for="item in codes.godcod"
                :key="item.value"
                :label="item.label"
                :value="item.value"
            >
            </el-option>
chenwen committed
81
          </c-select>
82 83


84 85 86 87
        </el-form-item>
      </c-col>
    </c-col>
    <!-- ====================右边======================= -->
88
    <c-col :span="12" style="padding-left: 20px">
89
      <c-col :span="24">
nanrui committed
90
        <el-form-item label="费用承担条款">
91 92 93 94
          <c-select
            disabled
            v-model="model.bcdgrp.rec.chato"
            style="width: 100%"
wangna committed
95
            placeholder="请选择费用承担条款"
96
          >
97 98 99 100 101 102 103
            <el-option
                v-for="item in codes.chadet"
                :key="item.value"
                :label="item.label"
                :value="item.value"
            >
            </el-option>
104 105
          </c-select
          >
chenwen committed
106
        </el-form-item>
107
      </c-col>
chenwen committed
108

109
      <c-col :span="24">
nanrui committed
110
        <el-form-item label="手续费支付的附加详述">
111 112 113 114 115 116
          <c-input
            disabled
            type="textarea"
            v-model="model.bcdgrp.blk.chgtxt"
            maxlength="35"
            show-word-limit
nanrui committed
117
            placeholder="请输入手续费支付的附加详述"
118
          ></c-input>
chenwen committed
119
        </el-form-item>
120
      </c-col>
chenwen committed
121

122 123 124
      <c-col :span="24">
        <c-checkbox disabled v-model="model.bcdgrp.rec.focflg"
        style="margin-left:150px"
nanrui committed
125
          >无偿放单选项</c-checkbox
126 127
        >
      </c-col>
chenwen committed
128

129
      <c-col :span="24">
nanrui committed
130
        <el-form-item label="交单时是否放弃向代收行收取费用的权力">
131 132 133 134
          <c-select
            disabled
            v-model="model.bcdgrp.rec.waicolcod"
            style="width: 100%"
nanrui committed
135
            placeholder="请选择交单时是否放弃向代收行收取费用的权力"
136 137
          >
          </c-select>
chenwen committed
138
        </el-form-item>
139
      </c-col>
chenwen committed
140

141
      <c-col :span="24">
nanrui committed
142
        <el-form-item label="放单时是否放弃向托收行收取费用的权力">
143 144 145 146
          <c-select
            disabled
            v-model="model.bcdgrp.rec.wairmtcod"
            style="width: 100%"
nanrui committed
147
            placeholder="请选择放单时是否放弃向托收行收取费用的权力"
148 149 150 151
          >
          </c-select>
        </el-form-item>
      </c-col>
chenwen committed
152

153
      <c-col :span="24">
nanrui committed
154
        <el-form-item label="延期付款期限">
155 156 157 158
          <c-select
            disabled
            v-model="model.bcdgrp.rec.othins"
            style="width: 100%"
nanrui committed
159
            placeholder="请选择延期付款期限"
160 161
          >
          </c-select>
chenwen committed
162
        </el-form-item>
163
      </c-col>
chenwen committed
164
    </c-col>
165 166
  </div>
<!--  </c-row>-->
chenwen committed
167 168
</template>
<script>
169
import Api from "~/service/Api";
wangren committed
170
import commonProcess from "~/mixin/commonProcess";
171 172
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bctdor/Event";
chenwen committed
173 174

export default {
175 176 177 178 179 180 181 182 183
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
chenwen committed
184
</script>
185
<style></style>