Basp.vue 11.2 KB
Newer Older
Wuyuqiu committed
1 2
<template>
  <div class="eibs-tab">
3
    <!----------左边------------>
Wuyuqiu committed
4 5 6
    <c-col :span="12" style="padding-right: 20px">
      <c-col :span="24">
        <el-form-item label="申报号码" prop="recgrp.bas.rptno">
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
          <c-fullbox>
            <c-input
              v-model="model.recgrp.bas.rptno"
              placeholder="请输入申报号码"
              disabled
            ></c-input>
            <template slot="footer">
              <c-button
                style="margin-left: 10px; padding: 0 12px"
                size="small"
                type="primary"
                :disabled="model.recgrp.bas.rptno!=''"
              >
                获取
              </c-button>
            </template>
          </c-fullbox>
Wuyuqiu committed
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="操作类型" prop="recgrp.bas.actiontype">
          <c-select
            v-model="model.recgrp.bas.actiontype"
            style="width: 100%"
            placeholder="请选择操作类型"
            :code="codes.actiontype"
            disabled
          >
          </c-select>
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="地区机构号" prop="recgrp.bas.ownextkey">
          <c-select
            v-model="model.recgrp.bas.ownextkey"
            style="width: 100%"
            placeholder="请选择地区机构号"
44
            disabled
Wuyuqiu committed
45 46 47 48 49 50 51 52 53 54
          >
          </c-select>
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="银行业务编号" prop="recgrp.bas.buscode">
          <c-input
            v-model="model.recgrp.bas.buscode"
            maxlength="22"
            placeholder="请输入银行业务编号"
55
            disabled
Wuyuqiu committed
56 57 58 59
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
60
        <el-form-item label="收款人类型" prop="recgrp.bas.custype">
Wuyuqiu committed
61 62 63 64 65
          <c-select
            v-model="model.recgrp.bas.custype"
            style="width: 100%"
            placeholder="请选择类型"
            :code="codes.custype"
66
            disabled
Wuyuqiu committed
67 68 69 70 71
          >
          </c-select>
        </el-form-item>
      </c-col>
      <c-col :span="24">
72
        <el-form-item label="收款人名称" prop="recgrp.bas.custnm">
Wuyuqiu committed
73 74 75 76 77
          <c-input
            type="textarea"
            v-model="model.recgrp.bas.custnm"
            maxlength="63"
            show-word-limit
78 79
            placeholder="请输入收款人名称"
            disabled
Wuyuqiu committed
80 81 82 83 84
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
85
        <el-form-item label="付款人名称" prop="recgrp.bas.oppuser">
Wuyuqiu committed
86 87 88 89 90
          <c-input
            type="textarea"
            v-model="model.recgrp.bas.oppuser"
            maxlength="63"
            show-word-limit
91 92
            placeholder="请输入付款人名称"
            disabled
Wuyuqiu committed
93 94 95 96 97 98 99 100 101 102
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="身份证件号码" prop="recgrp.bas.idcode">
          <c-input
            v-model="model.recgrp.bas.idcode"
            maxlength="32"
            placeholder="请输入身份证件号码"
103
            disabled
Wuyuqiu committed
104 105 106 107 108
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="购汇金额" prop="recgrp.bas.lcyamt">
109
          <c-input-currency-min
Wuyuqiu committed
110 111
            v-model="model.recgrp.bas.lcyamt"
            placeholder="请输入购汇金额"
112
            disabled
113 114
            class="input-currency-left"
          ></c-input-currency-min>
Wuyuqiu committed
115 116 117 118
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="现汇金额" prop="recgrp.bas.fcyamt">
119
          <c-input-currency-min
Wuyuqiu committed
120 121
            v-model="model.recgrp.bas.fcyamt"
            placeholder="请输入现汇金额"
122
            disabled
123 124
            class="input-currency-left"
          ></c-input-currency-min>
Wuyuqiu committed
125 126 127 128
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="其它金额" prop="recgrp.bas.othamt">
129
          <c-input-currency-min
Wuyuqiu committed
130 131
            v-model="model.recgrp.bas.othamt"
            placeholder="请输入其它金额"
132
            disabled
133 134
            class="input-currency-left"
          ></c-input-currency-min>
Wuyuqiu committed
135 136 137 138
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <c-col :span="13">
139
          <el-form-item label="收入款币种及金额" prop="recgrp.bas.txccy">
Wuyuqiu committed
140 141 142
            <c-select
              v-model="model.recgrp.bas.txccy"
              style="width: 100%"
143
              placeholder="请选择收入款币种及金额"
Wuyuqiu committed
144
              :code="codes.curtxt1"
145
              disabled
Wuyuqiu committed
146 147 148 149 150
            >
            </c-select>
          </el-form-item>
        </c-col>
        <c-col :span="11">
151 152 153 154 155
          <el-form-item
            label=""
            prop="recgrp.bas.txamt"
            label-width="5px"
          >
156
            <c-input-currency-min
Wuyuqiu committed
157
              v-model="model.recgrp.bas.txamt"
158 159
              placeholder="请输入收入款币种及金额"
              disabled
160 161
              class="input-currency-left"
            ></c-input-currency-min>
Wuyuqiu committed
162 163 164
          </el-form-item>
        </c-col>
      </c-col>
165
      <!-- <c-col :span="24">
Wuyuqiu committed
166
        <c-col :span="13">
167 168 169 170
          <el-form-item
            label="实付款币种及金额"
            prop="recgrp.bas.actuccy"
          >
Wuyuqiu committed
171 172 173 174 175
            <c-select
              v-model="model.recgrp.bas.actuccy"
              style="width: 100%"
              placeholder="请选择实际付款币种及金额"
              :code="codes.curtxt1"
176
              disabled
Wuyuqiu committed
177 178 179 180 181 182
            >
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="11">
183 184 185 186 187
          <el-form-item
            label=""
            prop="recgrp.bas.actuamt"
            label-width="5px"
          >
Wuyuqiu committed
188 189 190
            <c-input
              v-model="model.recgrp.bas.actuamt"
              placeholder="请输入实际付款币种及金额"
191
              disabled
Wuyuqiu committed
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
            ></c-input>
          </el-form-item>
        </c-col>
      </c-col>
      <c-col :span="24">
        <c-col :span="12">
          <el-form-item label="开证日期" prop="recgrp.bas.issdate">
            <c-date-picker
              type="date"
              v-model="model.recgrp.bas.issdate"
              style="width: 100%"
              placeholder="请选择开证日期"
              disabled
            ></c-date-picker>
          </el-form-item>
        </c-col>

        <c-col :span="12">
          <el-form-item label="信用证/保函编号" prop="recgrp.bas.lcbgno">
            <c-input
              v-model="model.recgrp.bas.lcbgno"
              maxlength="20"
              placeholder="请输入信用证/保函编号"
              disabled
            ></c-input>
          </el-form-item>
        </c-col>
219
      </c-col> -->
Wuyuqiu committed
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
    </c-col>

    <!----------右边------------>
    <c-col :span="12" style="padding-left: 20px">
      <c-col :span="24">
        <el-form-item label="修改/删除原因" prop="recgrp.bas.actiondesc">
          <c-input
            type="textarea"
            v-model="model.recgrp.bas.actiondesc"
            maxlength="32"
            show-word-limit
            placeholder="请输入操作类型"
            :rows="7"
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="结算方式" prop="recgrp.bas.methods">
          <c-select
            v-model="model.recgrp.bas.methods"
            style="width: 100%"
            placeholder="请选择结算方式"
            :code="codes.methods"
243
            disabled
Wuyuqiu committed
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
          >
          </c-select>
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="组织机构代码" prop="recgrp.bas.custcod">
          <c-fullbox>
            <c-input  
              v-model="model.recgrp.bas.custcod" 
              maxlength="18"
              placeholder="请输入组织机构代码"
              disabled
          ></c-input>
          <template slot="footer">
            <c-checkbox
              v-model="model.recp.baspp.acp"
              disabled
              style="margin-left: 10px;"
              >确认</c-checkbox
            >
          </template>
          </c-fullbox>
          
        </el-form-item>
      </c-col>

      <c-col :span="24">
271
        <el-form-item label="结汇汇率" prop="recgrp.bas.exrate">
Wuyuqiu committed
272 273
          <c-input
            v-model="model.recgrp.bas.exrate"
274 275
            placeholder="请输入结汇汇率"
            disabled
Wuyuqiu committed
276 277 278 279
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
280 281 282 283
        <el-form-item
          label="人民币帐号/银行卡号"
          prop="recgrp.bas.lcyacc"
        >
Wuyuqiu committed
284 285 286 287
          <c-input
            v-model="model.recgrp.bas.lcyacc"
            maxlength="32"
            placeholder="请输入人民币帐号/银行卡号"
288
            disabled
Wuyuqiu committed
289 290 291 292 293 294 295 296 297
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="外汇帐号/银行卡号" prop="recgrp.bas.fcyacc">
          <c-input
            v-model="model.recgrp.bas.fcyacc"
            maxlength="32"
            placeholder="请输入外汇帐号/银行卡号"
298
            disabled
Wuyuqiu committed
299 300 301 302 303 304 305 306 307
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="24">
        <el-form-item label="其它帐号/银行卡号" prop="recgrp.bas.othacc">
          <c-input
            v-model="model.recgrp.bas.othacc"
            maxlength="32"
            placeholder="请输入其它帐号/银行卡号"
308
            disabled
Wuyuqiu committed
309 310 311 312 313 314
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <c-col :span="13">
315 316 317 318
          <el-form-item
            label="国内银行扣费"
            prop="recgrp.bas.inchargeccy"
          >
Wuyuqiu committed
319
            <c-select
320
              v-model="model.recgrp.bas.inchargeccy"
Wuyuqiu committed
321
              style="width: 100%"
322
              placeholder="请选择国内银行扣费"
Wuyuqiu committed
323
              :code="codes.curtxt1"
324
              disabled
Wuyuqiu committed
325 326 327 328 329 330 331 332
            >
            </c-select>
          </el-form-item>
        </c-col>

        <c-col :span="11">
          <el-form-item
            label=""
333
            prop="recgrp.bas.inchargeamt"
Wuyuqiu committed
334 335
            label-width="5px"
          >
336
            <c-input-currency-min
337
              v-model="model.recgrp.bas.inchargeamt"
Wuyuqiu committed
338
              placeholder="请输入扣费币种及金额"
339
              disabled
340 341
              class="input-currency-left"
            ></c-input-currency-min>
Wuyuqiu committed
342 343 344 345
          </el-form-item>
        </c-col>
      </c-col>

346
      <!-- <c-col :span="24">
Wuyuqiu committed
347 348 349 350 351 352 353
        <el-form-item label="期限" prop="recgrp.bas.tenor">
          <c-input
            v-model="model.recgrp.bas.tenor"
            placeholder="请输入期限"
            disabled
          ></c-input>
        </el-form-item>
354
      </c-col> -->
Wuyuqiu committed
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
    </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Dbddel/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>