Canp.vue 4.92 KB
Newer Older
1
<template>
jianglong committed
2
  <div class="eibs">
3
    <c-col>
潘际乾 committed
4 5 6
    <el-row>
      <c-col :span="8">
        <c-fullbox>
7
          <el-form-item label="信用证编号" prop="lidgrp.rec.ownref">
潘际乾 committed
8
            <c-input
9
            disabled
潘际乾 committed
10 11 12 13 14 15 16 17 18 19 20
              v-model="model.lidgrp.rec.ownref"
              maxlength="16"
              placeholder="请输入参考号"
            ></c-input>
          </el-form-item>
          <template slot="footer">
            <c-button
              style="margin: 0 10px 0 10px; padding: 0 12px"
              size="small"
              type="primary"
            >
nanrui committed
21
              <i class="el-icon-info"></i>
潘际乾 committed
22 23 24 25
            </c-button>
          </template>
        </c-fullbox>
      </c-col>
26

潘际乾 committed
27 28
      <c-col :span="4">
        <el-form-item
29
          label="有效日期"
潘际乾 committed
30 31 32 33 34 35 36
          prop="lidgrp.rec.expdat"
          label-width="80px"
        >
          <c-date-picker
            type="date"
            v-model="model.lidgrp.rec.expdat"
            style="width: 100%"
37
            placeholder="请选择日期"
38
            disabled
潘际乾 committed
39 40 41 42
          ></c-date-picker>
        </el-form-item>
      </c-col>
      <c-col :span="6">
43
        <el-form-item label="信用证余额" prop="lidgrp.cbs.opn1.cur">
潘际乾 committed
44
          <c-select
45
          disabled
潘际乾 committed
46 47 48 49 50 51 52 53 54 55
            v-model="model.lidgrp.cbs.opn1.cur"
            style="width: 100%"
            placeholder="请选择币种"
          >
          </c-select>
        </el-form-item>
      </c-col>
      <c-col :span="6">
        <el-form-item prop="lidgrp.cbs.opn1.amt" label-width="20px">
          <c-input
56
          disabled
潘际乾 committed
57
            v-model="model.lidgrp.cbs.opn1.amt"
58
            placeholder="请输入金额"
潘际乾 committed
59 60 61 62 63 64 65
          ></c-input>
        </el-form-item>
      </c-col>
    </el-row>
    <el-row>
      <c-col :span="12">
        <c-fullbox>
66
          <el-form-item label="单据编号" prop="brdgrp.rec.ownref">
潘际乾 committed
67 68 69 70
            <c-input
              v-model="model.brdgrp.rec.ownref"
              maxlength="16"
              placeholder="请输入单据参考号"
71
              disabled
潘际乾 committed
72 73 74 75 76 77 78 79
            ></c-input>
          </el-form-item>
          <template slot="footer">
            <c-button
              style="margin: 0 0 0 10px; padding: 0 12px"
              size="small"
              type="primary"
            >
nanrui committed
80
              <i class="el-icon-info"></i>
潘际乾 committed
81 82 83 84 85
            </c-button>
          </template>
        </c-fullbox>
      </c-col>
      <c-col :span="12">
闫泽浩 committed
86
        <el-form-item label="单据简略信息" prop="brdgrp.rec.nam">
潘际乾 committed
87
          <c-input
88
          disabled
潘际乾 committed
89 90
            v-model="model.brdgrp.rec.nam"
            maxlength="40"
wangna committed
91
            placeholder="请输入"
潘际乾 committed
92 93 94 95
          ></c-input>
        </el-form-item>
      </c-col>
    </el-row>
96 97 98 99 100 101 102 103 104 105 106 107 108 109
    </c-col>


    <!-- ----------------------------------------------------------------- -->
            <c-col :span="24">
            <c-litTemp
                :model="model"
                :argadr="{
                    title: '',
                    trans: 'brdgrp',
                    trans1:'brtp0',
                }"
                :rol="[
                    {
110
                        title: '申请人',
111 112 113
                        trans: 'apl',
                    },
                    {
114
                        title: '受益人',
115 116 117
                        trans: 'ben',
                    },
                    {
118
                        title: '交单行',
119 120 121 122 123 124 125 126 127 128 129 130
                        trans: 'prb',
                    },
                ]"
                :isAdvdat="true"
                :isMattxtlab="false"
                :isTenmaxday="false"
            >
            </c-litTemp>
        </c-col>



131
   
潘际乾 committed
132 133
    <el-row>
      <c-col :span="12">
134
        <el-form-item label="叙述内容" prop="strinf">
潘际乾 committed
135 136 137
          <c-input
            type="textarea"
            v-model="model.strinf"
138 139
            maxlength="1750"
            :rows="10"
潘际乾 committed
140
            show-word-limit
141
            placeholder="请输入叙述内容"
潘际乾 committed
142 143 144
          ></c-input>
        </el-form-item>
      </c-col>
145

闫泽浩 committed
146
      <c-col :span="3">
潘际乾 committed
147
				<el-form-item label="" prop="sndmsg">
148
					<c-checkbox v-model="model.sndmsg">发送报文</c-checkbox>
潘际乾 committed
149 150 151
				</el-form-item>
      </c-col>
    </el-row>
152

潘际乾 committed
153
    <c-col :span="12">
154
      <el-form-item label="预订程序" prop="rebkpflg">
潘际乾 committed
155 156 157
        <c-select
          v-model="model.rebkpflg"
          style="width: 100%"
158
          placeholder="请选择预订程序"
jianglong committed
159
          :code="codes.rebkpflg"
潘际乾 committed
160 161 162 163 164
        >
        </c-select>
      </el-form-item>
    </c-col>
  </div>
165 166
</template>
<script>
潘际乾 committed
167 168 169 170 171
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Brtcan/Event";
import Brtcan from "~/model/Brtcan";
172
import LitTemp from "~/views/Public/LitTemp";
173

潘际乾 committed
174 175 176 177
export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
178 179 180
  components: {
        "c-litTemp": LitTemp,
    },
潘际乾 committed
181
  data() {
jianglong committed
182
    
潘际乾 committed
183 184 185 186
  },
  methods: { ...Event },
  created: function () {},
};
187 188 189
</script>
<style>
</style>