Detp.vue 4.77 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
    <!-- ====================左边======================= -->
    <c-col :span="11">
      <c-col :span="24">
        <el-form-item label="Delivery of Documents Instructions">
          <c-input
            disabled
            type="textarea"
            v-model="model.bcdgrp.blk.colins"
            maxlength="65"
            show-word-limit
            placeholder="请输入Collection Instructions"
          >
          </c-input>
        </el-form-item>
      </c-col>
chenwen committed
18 19

      <c-col :span="24">
20 21 22 23 24 25 26 27 28 29
        <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
30 31
      </c-col>

32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
      <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
48
        </el-form-item>
49
      </c-col>
chenwen committed
50 51

      <c-col :span="24">
52 53 54 55 56 57 58 59 60 61
        <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
62
      </c-col>
63

chenwen committed
64
      <c-col :span="24">
65 66 67 68 69 70 71
        <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
72
          </c-select>
73 74 75 76 77 78 79 80 81 82 83 84 85
          <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
86
        <el-form-item label="Charges Condition">
87 88 89 90 91 92 93 94 95 96 97 98 99 100
          <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
101
        </el-form-item>
102
      </c-col>
chenwen committed
103

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

117 118 119 120 121 122
      <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
123

124 125 126 127 128 129 130 131 132
      <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
133
        </el-form-item>
134
      </c-col>
chenwen committed
135

136 137 138 139 140 141 142 143 144 145 146
      <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
147

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

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