Detp.vue 4.92 KB
Newer Older
chenwen committed
1
<template>
wangren committed
2 3 4 5 6 7 8
<div>
  <!-- ====================左边======================= -->
  <c-col :span="11">
    <c-col :span="24">
      <el-form-item label="Delivery of Documents Instructions ">
        <c-fullbox>
          <c-input
9
            disabled
wangren committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
            type="textarea"
            v-model="model.bcdgrp.blk.colins"
            maxlength="65"
            show-word-limit
            placeholder="请输入Collection Instructions"
          >
          </c-input>
          <template slot="footer">
            <c-button
              disabled
              size="small"
              type="primary"
              icon="el-icon-search"
              @click="onColinsButtxmsel"
            >
            </c-button>
          </template>
        </c-fullbox>
      </el-form-item>
    </c-col>
chenwen committed
30

wangren committed
31 32 33 34
    <c-col :span="24">
      <el-form-item label="Draft Instructions">
        <c-fullbox>
          <c-input
35
            disabled
wangren committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
            type="textarea"
            v-model="model.bcdgrp.blk.dftins"
            maxlength="65"
            show-word-limit
            placeholder="请输入Draft Instructions"
          ></c-input>
          <template slot="footer">
            <c-button
              disabled
              size="small"
              type="primary"
              icon="el-icon-search"
              @click="onDftinsButtxmsel"
            >
            </c-button>
          </template>
        </c-fullbox>
      </el-form-item>
    </c-col>
chenwen committed
55

wangren committed
56 57 58
    <c-col :span="24">
      <el-form-item label="Protest Instructions">
        <c-select
59
          disabled
wangren committed
60 61 62 63 64 65 66
          v-model="model.bcdgrp.rec.proins"
          style="width: 100%"
          placeholder="请选择Protest Instructions"
        >
        </c-select>
      </el-form-item>
    </c-col>
chenwen committed
67

wangren committed
68 69 70 71
    <c-col :span="24">
      <el-form-item label="Other Instructions">
        <c-fullbox>
          <c-input
72
            disabled
wangren committed
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
            type="textarea"
            v-model="model.bcdgrp.blk.othins"
            maxlength="65"
            show-word-limit
            placeholder="请输入Other Instructions"
          ></c-input>
          <template slot="footer">
            <c-button
              disabled
              size="small"
              type="primary"
              icon="el-icon-search"
              @click="onOthins1Buttxmsel"
            >
            </c-button>
          </template>
        </c-fullbox>
      </el-form-item>
    </c-col>
chenwen committed
92

wangren committed
93 94 95
    <c-col :span="24">
      <el-form-item label="Good's Code (for Statistics)">
        <c-select
96
          disabled
wangren committed
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
          v-model="model.bcdgrp.rec.stagod"
          style="width: 100%"
          placeholder="请选择Good's Code (for Statistics"
        >
        </c-select>
      </el-form-item>
    </c-col>
  </c-col>
  <!-- ====================右边======================= -->
  <c-col :span="11" :offset="1">
    <c-col :span="24">
      <el-form-item label="Charges Condition">
        <c-select
          disabled
          v-model="model.bcdgrp.rec.chato"
          style="width: 100%"
          placeholder="请选择Our Charges to"
        >
        </c-select>
      </el-form-item>
    </c-col>
chenwen committed
118

wangren committed
119 120 121
    <c-col :span="24">
      <el-form-item label="Charges Text">
        <c-input
122
          disabled
wangren committed
123 124 125 126 127 128 129 130
          type="textarea"
          v-model="model.bcdgrp.blk.chgtxt"
          maxlength="35"
          show-word-limit
          placeholder="请输入Charges Text"
        ></c-input>
      </el-form-item>
    </c-col>
chenwen committed
131

wangren committed
132 133 134 135 136 137 138 139
    <c-col :span="24">
      <c-checkbox
        style="margin-left: 150px"
        disabled
        v-model="model.bcdgrp.rec.focflg"
        >Free of Payment</c-checkbox
      >
    </c-col>
chenwen committed
140

wangren committed
141 142 143 144 145 146 147 148 149 150
    <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>
      </el-form-item>
chenwen committed
151
    </c-col>
wangren committed
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178

    <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>

    <c-col :span="24">
      <el-form-item label="Defer Payment until">
        <c-select
          disabled
          v-model="model.bcdgrp.rec.othins"
          style="width: 100%"
          placeholder="请选择Defer Payment until"
        >
        </c-select>
      </el-form-item>
    </c-col>

  </c-col>
</div>
chenwen committed
179 180
</template>
<script>
wangren committed
181
import Api from "~/service/Api";
wangren committed
182
import commonProcess from "~/mixin/commonProcess";
wangren committed
183 184
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bctset/Event";
chenwen committed
185 186

export default {
wangren committed
187 188 189 190 191 192 193 194 195
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
chenwen committed
196
</script>
wangren committed
197
<style></style>