Canp.vue 7.62 KB
Newer Older
ccx committed
1 2
<template>
  <div class="eibs-tab">
3 4
    <el-col :span="11">
      <c-col :span="24">
ccx committed
5
        <el-form-item label="Collection Number" prop="bcdgrp.rec.ownref">
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
          <c-fullbox>
            <c-input
            disabled
              v-model="model.bcdgrp.rec.ownref"
              maxlength="16"
              placeholder="请输入Collection Number"
            ></c-input>
            <template slot="footer">
              <c-button
                size="small"
                style="margin-left: 10px; padding: 0 10px"
                type="primary"
              >
                <span style="font-family: '宋体'; font-weight: bold">i</span>
              </c-button>
            </template>
          </c-fullbox>
ccx committed
23
        </el-form-item>
24 25 26 27 28 29 30 31 32 33
      </c-col>
      <c-col :span="14">
        <el-form-item label="Document Amount" prop="bcdgrp.cbs.max.cur">
          <c-select
          disabled
            v-model="model.bcdgrp.cbs.max.cur"
            style="width: 100%"
            placeholder="请选择Document Amount"
          >
          </c-select>
ccx committed
34
        </el-form-item>
35 36 37 38 39 40 41 42
      </c-col>
      <c-col :span="10">
        <el-form-item label="" label-width="10px" prop="bcdgrp.cbs.max.amt">
          <c-input
          disabled
            v-model="model.bcdgrp.cbs.max.amt"
            placeholder="请输入Document Amount"
          ></c-input>
ccx committed
43
        </el-form-item>
44 45
      </c-col>
      <c-col :span="14">
ccx committed
46
        <el-form-item label="Open Amount" prop="bcdgrp.cbs.opn1.cur">
47 48 49 50 51 52 53
          <c-select
          disabled
            v-model="model.bcdgrp.cbs.opn1.cur"
            style="width: 100%"
            placeholder="请选择Open Amount"
          >
          </c-select>
ccx committed
54
        </el-form-item>
55 56 57 58 59 60 61 62 63
      </c-col>

      <c-col :span="10">
        <el-form-item label="" label-width="10px" prop="bcdgrp.cbs.opn1.amt">
          <c-input
          disabled
            v-model="model.bcdgrp.cbs.opn1.amt"
            placeholder="请输入Open Amount"
          ></c-input>
ccx committed
64
        </el-form-item>
65 66 67 68 69 70 71 72 73 74
      </c-col>
      <c-col :span="12">
        <el-form-item label="Docs Received on" prop="bcdgrp.rec.rcvdat">
          <c-date-picker
          disabled
            type="date"
            v-model="model.bcdgrp.rec.rcvdat"
            style="width: 100%"
            placeholder="请选择Docs Received on"
          ></c-date-picker>
ccx committed
75
        </el-form-item>
76 77 78 79 80 81 82 83 84 85 86
      </c-col>

      <c-col :span="12">
        <el-form-item label="Advised on" prop="bcdgrp.rec.advdat">
          <c-date-picker
          disabled
            type="date"
            v-model="model.bcdgrp.rec.advdat"
            style="width: 100%"
            placeholder="请选择Date of Advice of Documents Received"
          ></c-date-picker>
ccx committed
87
        </el-form-item>
88 89
      </c-col>
      <c-col :span="12">
ccx committed
90
        <el-form-item label="Maturity Date" prop="bcdgrp.rec.matdat">
91 92 93 94 95 96 97
          <c-date-picker
          disabled
            type="date"
            v-model="model.bcdgrp.rec.matdat"
            style="width: 100%"
            placeholder="请选择Maturity Date"
          ></c-date-picker>
ccx committed
98
        </el-form-item>
99 100 101 102 103 104 105 106 107 108 109
      </c-col>

      <c-col :span="12">
        <el-form-item label="Remitted on" prop="bcdgrp.rec.predat">
          <c-date-picker
          disabled
            type="date"
            v-model="model.bcdgrp.rec.predat"
            style="width: 100%"
            placeholder="请选择Maturity Date"
          ></c-date-picker>
ccx committed
110
        </el-form-item>
111 112 113
      </c-col>

      <c-col :span="24">
ccx committed
114
        <el-form-item label="Payment Condition" prop="bcdgrp.rec.doctypcod">
115 116 117 118 119 120 121 122 123 124 125
          <c-select
          disabled
          :code="codes.doctypcod"
            v-model="model.bcdgrp.rec.doctypcod"
            style="width: 100%"
            placeholder="请选择Payment Condition"
          >
          </c-select>
        </el-form-item>
      </c-col>
      <c-col :span="24">
ccx committed
126
        <el-form-item label="Document Status" prop="bcdgrp.rec.docsta">
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
          <c-select
          disabled
          :code="codes.docsta"
            v-model="model.bcdgrp.rec.docsta"
            style="width:100%"
            placeholder="请输入Document Status"
          ></c-select>
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="Narrative" prop="strinf">
          <c-fullbox>
            <c-input
            disabled
              :rows="6"
              type="textarea"
              v-model="model.strinf"
              maxlength="50"
              show-word-limit
              placeholder="请输入Narrative"
            ></c-input>
            <template slot="footer">
              <c-button 
              disabled
              size="small" type="primary" icon="el-icon-search">
              </c-button>
            </template>
          </c-fullbox>
ccx committed
155
        </el-form-item>
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
      </c-col>
    </el-col>

    <el-col :span="11" :offset="1">
      <c-col :span="24">
        <el-form-item label="Name" prop="bcdgrp.rec.nam">
          <c-input
          disabled
            v-model="model.bcdgrp.rec.nam"
            maxlength="40"
            placeholder="请输入Name"
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="Drawee Ref." prop="bcdgrp.dre.pts.ref">
          <c-input
          disabled
            v-model="model.bcdgrp.dre.pts.ref"
            maxlength="16"
            placeholder="请输入Drawee"
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="Name of Party" prop="bcdgrp.dre.pts.nam">
          <c-input
          disabled
            v-model="model.bcdgrp.dre.pts.nam"
            maxlength="40"
            placeholder="请输入Name of Party"
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="Remitting Bank" prop="bcdgrp.rmi.pts.ref">
          <c-input
          disabled
            v-model="model.bcdgrp.rmi.pts.ref"
            maxlength="16"
            placeholder="请输入Remitting Bank"
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="Name of Party" prop="bcdgrp.rmi.pts.nam">
          <c-input
          disabled
            v-model="model.bcdgrp.rmi.pts.nam"
            maxlength="40"
            placeholder="请输入Name of Party"
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="Drawer Ref." prop="bcdgrp.drr.pts.ref">
          <c-input
          disabled
            v-model="model.bcdgrp.drr.pts.ref"
            maxlength="16"
            placeholder="请输入Drawer"
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
ccx committed
223
        <el-form-item label="Name of Party" prop="bcdgrp.drr.pts.nam">
224 225 226 227 228 229
          <c-input
          disabled
            v-model="model.bcdgrp.drr.pts.nam"
            maxlength="40"
            placeholder="请输入Name of Party"
          ></c-input>
ccx committed
230
        </el-form-item>
231 232 233 234 235 236 237 238 239
      </c-col>
    </el-col>

    <!--                                    
	<c-col :span="12">
	    <span  v-text="model.bctp0.matp.mattxtlab"   data-path=".bctp0.matp.mattxtlab" > </span>
	</c-col> -->

    <!-- <c-col :span="12">
ccx committed
240
	    <c-checkbox v-model="model.sndmsg">Send message</c-checkbox>
241
       </c-col> -->
ccx committed
242 243 244
  </div>
</template>
<script>
245
import Api from "~/service/Api";
wangren committed
246
import commonProcess from "~/mixin/commonProcess";
247 248
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bctcan/Event";
ccx committed
249 250

export default {
251 252 253 254 255 256 257 258 259
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
ccx committed
260
</script>
261
<style></style>