Canp.vue 7.36 KB
Newer Older
ccx committed
1 2
<template>
  <div class="eibs-tab">
3 4
    <el-col :span="11">
      <c-col :span="24">
nanrui committed
5
        <el-form-item label="代收闭卷编号" prop="bcdgrp.rec.ownref">
6 7 8 9 10
          <c-fullbox>
            <c-input
            disabled
              v-model="model.bcdgrp.rec.ownref"
              maxlength="16"
nanrui committed
11
              placeholder="请输入代收闭卷编号"
12 13 14 15 16 17 18
            ></c-input>
            <template slot="footer">
              <c-button
                size="small"
                style="margin-left: 10px; padding: 0 10px"
                type="primary"
              >
nanrui committed
19
                <i class="el-icon-info"></i>
20 21 22
              </c-button>
            </template>
          </c-fullbox>
ccx committed
23
        </el-form-item>
24 25
      </c-col>
      <c-col :span="14">
nanrui committed
26
        <el-form-item label="代收币种及金额" prop="bcdgrp.cbs.max.cur">
27 28 29 30
          <c-select
          disabled
            v-model="model.bcdgrp.cbs.max.cur"
            style="width: 100%"
nanrui committed
31
            placeholder="请选择代收币种及金额"
32 33
          >
          </c-select>
ccx committed
34
        </el-form-item>
35 36 37 38 39 40
      </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"
nanrui committed
41
            placeholder="请输入代收币种及金额"
42
          ></c-input>
ccx committed
43
        </el-form-item>
44 45
      </c-col>
      <c-col :span="14">
nanrui committed
46
        <el-form-item label="代收币种及余额" prop="bcdgrp.cbs.opn1.cur">
47 48 49 50
          <c-select
          disabled
            v-model="model.bcdgrp.cbs.opn1.cur"
            style="width: 100%"
nanrui committed
51
            placeholder="请选择代收币种及余额"
52 53
          >
          </c-select>
ccx committed
54
        </el-form-item>
55 56 57 58 59 60 61
      </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"
nanrui committed
62
            placeholder="请输入代收币种及余额"
63
          ></c-input>
ccx committed
64
        </el-form-item>
65 66
      </c-col>
      <c-col :span="12">
nanrui committed
67
        <el-form-item label="收单日期" prop="bcdgrp.rec.rcvdat">
68 69 70 71 72
          <c-date-picker
          disabled
            type="date"
            v-model="model.bcdgrp.rec.rcvdat"
            style="width: 100%"
nanrui committed
73
            placeholder="请选择收单日期"
74
          ></c-date-picker>
ccx committed
75
        </el-form-item>
76 77 78
      </c-col>

      <c-col :span="12">
nanrui committed
79
        <el-form-item label="通知日期" prop="bcdgrp.rec.advdat">
80 81 82 83 84
          <c-date-picker
          disabled
            type="date"
            v-model="model.bcdgrp.rec.advdat"
            style="width: 100%"
wangna committed
85
            placeholder="请选择"
86
          ></c-date-picker>
ccx committed
87
        </el-form-item>
88 89
      </c-col>
      <c-col :span="12">
nanrui committed
90
        <el-form-item label="单据到期日" prop="bcdgrp.rec.matdat">
91 92 93 94 95
          <c-date-picker
          disabled
            type="date"
            v-model="model.bcdgrp.rec.matdat"
            style="width: 100%"
nanrui committed
96
            placeholder="请选择单据到期日"
97
          ></c-date-picker>
ccx committed
98
        </el-form-item>
99 100 101
      </c-col>

      <c-col :span="12">
nanrui committed
102
        <el-form-item label="托收日期" prop="bcdgrp.rec.predat">
103 104 105 106 107
          <c-date-picker
          disabled
            type="date"
            v-model="model.bcdgrp.rec.predat"
            style="width: 100%"
wangna committed
108
            placeholder="请选择"
109
          ></c-date-picker>
ccx committed
110
        </el-form-item>
111 112 113
      </c-col>

      <c-col :span="24">
nanrui committed
114
        <el-form-item label="支付条件" prop="bcdgrp.rec.doctypcod">
115 116 117 118 119
          <c-select
          disabled
          :code="codes.doctypcod"
            v-model="model.bcdgrp.rec.doctypcod"
            style="width: 100%"
nanrui committed
120
            placeholder="请选择支付条件"
121 122 123 124 125
          >
          </c-select>
        </el-form-item>
      </c-col>
      <c-col :span="24">
nanrui committed
126
        <el-form-item label="单据状态" prop="bcdgrp.rec.docsta">
127 128
          <c-select
          disabled
panziyi committed
129
          :code="codes.docstabot"
130 131
            v-model="model.bcdgrp.rec.docsta"
            style="width:100%"
nanrui committed
132
            placeholder="请输入单据状态"
133 134 135 136
          ></c-select>
        </el-form-item>
      </c-col>
      <c-col :span="24">
nanrui committed
137
        <el-form-item label="描述" prop="strinf">
138 139 140 141 142 143 144 145
          <c-fullbox>
            <c-input
            disabled
              :rows="6"
              type="textarea"
              v-model="model.strinf"
              maxlength="50"
              show-word-limit
nanrui committed
146
              placeholder="请输入描述"
147 148 149 150 151 152 153 154
            ></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
      </c-col>
    </el-col>

    <el-col :span="11" :offset="1">
      <c-col :span="24">
nanrui committed
161
        <el-form-item label="简略信息" prop="bcdgrp.rec.nam">
162 163 164 165
          <c-input
          disabled
            v-model="model.bcdgrp.rec.nam"
            maxlength="40"
nanrui committed
166
            placeholder="请输入简略信息"
167 168 169 170
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
nanrui committed
171
        <el-form-item label="付款人参考号" prop="bcdgrp.dre.pts.ref">
172 173 174 175
          <c-input
          disabled
            v-model="model.bcdgrp.dre.pts.ref"
            maxlength="16"
nanrui committed
176
            placeholder="请输入付款人参考号"
177 178 179 180
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
nanrui committed
181
        <el-form-item label="付款人名称" prop="bcdgrp.dre.pts.nam">
182 183 184 185
          <c-input
          disabled
            v-model="model.bcdgrp.dre.pts.nam"
            maxlength="40"
nanrui committed
186
            placeholder="请输入付款人名称"
187 188 189 190
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
wangna committed
191
        <el-form-item label="托收行参考号" prop="bcdgrp.rmi.pts.ref">
192 193 194 195
          <c-input
          disabled
            v-model="model.bcdgrp.rmi.pts.ref"
            maxlength="16"
nanrui committed
196
            placeholder="请输入托收行参考号"
197 198 199 200 201
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
nanrui committed
202
        <el-form-item label="托收行名称" prop="bcdgrp.rmi.pts.nam">
203 204 205 206
          <c-input
          disabled
            v-model="model.bcdgrp.rmi.pts.nam"
            maxlength="40"
nanrui committed
207
            placeholder="请输入托收行名称"
208 209 210 211
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
nanrui committed
212
        <el-form-item label="收款人参考号" prop="bcdgrp.drr.pts.ref">
213 214 215 216
          <c-input
          disabled
            v-model="model.bcdgrp.drr.pts.ref"
            maxlength="16"
nanrui committed
217
            placeholder="请输入收款人参考号"
218 219 220 221 222
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
nanrui committed
223
        <el-form-item label="收款人名称" prop="bcdgrp.drr.pts.nam">
224 225 226 227
          <c-input
          disabled
            v-model="model.bcdgrp.drr.pts.nam"
            maxlength="40"
nanrui committed
228
            placeholder="请输入收款人名称"
229
          ></c-input>
ccx committed
230
        </el-form-item>
231 232
      </c-col>
    </el-col>
ccx committed
233 234 235
  </div>
</template>
<script>
236
import Api from "~/service/Api";
wangren committed
237
import commonProcess from "~/mixin/commonProcess";
238 239
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bctcan/Event";
ccx committed
240 241

export default {
242 243 244 245 246 247 248 249 250
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
ccx committed
251
</script>
252
<style></style>