Detp.vue 4.79 KB
Newer Older
chenwen committed
1
<template>
chenwen committed
2
  <c-row>
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
    <!-- ====================左边======================= -->
    <c-col :span="11">
      <c-col :span="24">
        <el-form-item label="Delivery of Documents Instructions">
          <c-input
            disabled
            type="textarea"
            disabled
            v-model="model.bcdgrp.blk.colins"
            maxlength="65"
            show-word-limit
            placeholder="请输入Collection Instructions"
          >
          </c-input>
        </el-form-item>
      </c-col>
chenwen committed
19 20

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

33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
      <c-col :span="24">
        <el-form-item label="Protest Instructions" prop="bcdgrp.rec.proins">
          <c-select
            disabled
            v-model="model.bcdgrp.rec.proins"
            style="width: 100%"
            placeholder="请选择Protest Instructions"
          >
          </c-select>
          <el-option
            v-for="item in codes.proins"
            :key="item.value"
            :label="item.label"
            :value="item.value"
          >
          </el-option>
chenwen committed
49
        </el-form-item>
50
      </c-col>
chenwen committed
51 52

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

chenwen committed
65
      <c-col :span="24">
66 67 68 69 70 71 72
        <el-form-item label="Good's Code (for Statistics)">
          <c-select
            disabled
            v-model="model.bcdgrp.rec.stagod"
            style="width: 100%"
            placeholder="请选择Good's Code (for Statistics"
          >
chenwen committed
73
          </c-select>
74 75 76 77 78 79 80 81 82 83 84 85 86
          <el-option
            v-for="item in codes.godcod"
            :key="item.value"
            :label="item.label"
            :value="item.value"
          >
          </el-option>
        </el-form-item>
      </c-col>
    </c-col>
    <!-- ====================右边======================= -->
    <c-col :span="11" :offset="1">
      <c-col :span="24">
chenwen committed
87
        <el-form-item label="Charges Condition">
88 89 90 91 92 93 94 95 96 97 98 99 100 101
          <c-select
            disabled
            v-model="model.bcdgrp.rec.chato"
            style="width: 100%"
            placeholder="请选择Our Charges to"
          >
          </c-select
          ><el-option
            v-for="item in codes.chadet"
            :key="item.value"
            :label="item.label"
            :value="item.value"
          >
          </el-option>
chenwen committed
102
        </el-form-item>
103
      </c-col>
chenwen committed
104

105
      <c-col :span="24">
chenwen committed
106
        <el-form-item label="Charges Text">
107 108 109 110 111 112 113 114
          <c-input
            disabled
            type="textarea"
            v-model="model.bcdgrp.blk.chgtxt"
            maxlength="35"
            show-word-limit
            placeholder="请输入Charges Text"
          ></c-input>
chenwen committed
115
        </el-form-item>
116
      </c-col>
chenwen committed
117

118 119 120 121 122 123
      <c-col :span="24">
        <c-checkbox disabled v-model="model.bcdgrp.rec.focflg"
        style="margin-left:150px"
          >Free of Payment</c-checkbox
        >
      </c-col>
chenwen committed
124

125 126 127 128 129 130 131 132 133
      <c-col :span="24">
        <el-form-item label="Waive Collecting Bank Charges">
          <c-select
            disabled
            v-model="model.bcdgrp.rec.waicolcod"
            style="width: 100%"
            placeholder="请选择Waive Collecting Bank Charges"
          >
          </c-select>
chenwen committed
134
        </el-form-item>
135
      </c-col>
chenwen committed
136

137 138 139 140 141 142 143 144 145 146 147
      <c-col :span="24">
        <el-form-item label="Waive Remitting Bank Charges">
          <c-select
            disabled
            v-model="model.bcdgrp.rec.wairmtcod"
            style="width: 100%"
            placeholder="请选择Waive Remitting Bank Charges"
          >
          </c-select>
        </el-form-item>
      </c-col>
chenwen committed
148

149
      <c-col :span="24">
chenwen committed
150
        <el-form-item label="Defer Payment until">
151 152 153 154 155 156 157
          <c-select
            disabled
            v-model="model.bcdgrp.rec.othins"
            style="width: 100%"
            placeholder="请选择Defer Payment until"
          >
          </c-select>
chenwen committed
158
        </el-form-item>
159
      </c-col>
chenwen committed
160
    </c-col>
161
  </c-row>
chenwen committed
162 163
</template>
<script>
164
import Api from "~/service/Api";
wangren committed
165
import commonProcess from "~/mixin/commonProcess";
166 167
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bctdor/Event";
chenwen committed
168 169

export default {
170 171 172 173 174 175 176 177 178
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
chenwen committed
179
</script>
180
<style></style>