<template> <div class="eibs-tab"> <c-col :span="12"> <c-form-item :label="$t('vrfpp.S0000001')" prop="recgrp.vrf.tmpref"> <c-input v-model="model.recgrp.vrf.tmpref" maxlength="16" :placeholder="$t('other.please_enter')+$t('vrfpp.S0000001')"></c-input> </c-form-item> </c-col> <!-- S0000001 : 临时申报编号 --> <!-- S0000018 : RoptNam --> <c-col :span="12"> <span v-text="model.recp.vrfpp.roptnam" data-path=".recp.vrfpp.roptnam" > </span> </c-col> <c-col :span="12"> <c-form-item :label="$t('vrfpp.S0000018')" prop="recgrp.vrf.rptno"> <c-input v-model="model.recgrp.vrf.rptno" maxlength="22" :placeholder="$t('other.please_enter')+$t('vrfpp.S0000018')"></c-input> </c-form-item> </c-col> <!-- S0000003 : 操作类型 --> <c-col :span="12"> <c-form-item :label="$t('vrfpp.S0000003')" prop="recgrp.vrf.actiontype"> <c-input v-model="model.recgrp.vrf.actiontype" maxlength="1" :placeholder="$t('other.please_enter')+$t('vrfpp.S0000003')"></c-input> </c-form-item> </c-col> <!-- S0000004 : 修改/删除原因 --> <c-col :span="12"> <c-form-item :label="$t('vrfpp.S0000004')" prop="recgrp.vrf.actiondesc"> <c-input type="textarea" v-model="model.recgrp.vrf.actiondesc" maxlength="32" show-word-limit :placeholder="$t('other.please_enter')+$t('vrfpp.S0000004')" ></c-input> </c-form-item> </c-col> <!-- S0000002 : 地区机构号 --> <c-col :span="12"> <c-form-item :label="$t('vrfpp.S0000002')" prop="recgrp.vrf.ownextkey"> <c-input v-model="model.recgrp.vrf.ownextkey" maxlength="8" :placeholder="$t('other.please_enter')+$t('vrfpp.S0000002')"></c-input> </c-form-item> </c-col> <c-col :span="12"> <c-checkbox v-model="model.recp.vrfpp.acp">{{$t('vrfpp.C0000017')}}</c-checkbox> </c-col> <!-- S0000056 : 合同号 --> <c-col :span="12"> <c-form-item :label="$t('dbcp.S0000056')" prop="recgrp.vrf.contrno"> <c-input v-model="model.recgrp.vrf.contrno" maxlength="20" :placeholder="$t('other.please_enter')+$t('dbcp.S0000056')"></c-input> </c-form-item> </c-col> <!-- S0000059 : 合同金额 --> <c-col :span="12"> <c-form-item :label="$t('dbcp.S0000059')" prop="recgrp.vrf.contamt"> <c-input v-model="model.recgrp.vrf.contamt" :placeholder="$t('other.please_enter')+$t('dbcp.S0000059')"></c-input> </c-form-item> </c-col> <!-- S0000058 : 提运单号 --> <c-col :span="12"> <c-form-item :label="$t('dbcp.S0000058')" prop="recgrp.vrf.billno"> <c-input v-model="model.recgrp.vrf.billno" maxlength="20" :placeholder="$t('other.please_enter')+$t('dbcp.S0000058')"></c-input> </c-form-item> </c-col> <!-- S0000060 : 外汇局批件/备案表号 --> <c-col :span="12"> <c-form-item :label="$t('dbcp.S0000060')" prop="recgrp.vrf.regno"> <c-input v-model="model.recgrp.vrf.regno" maxlength="20" :placeholder="$t('other.please_enter')+$t('dbcp.S0000060')"></c-input> </c-form-item> </c-col> <!-- S0000057 : 最迟装运日期 --> <c-col :span="12"> <el-form-item :label="$t('dbcp.S0000057')" prop="recgrp.vrf.impdate"> <c-date-picker type="date" v-model="model.recgrp.vrf.impdate" style="width:100%" :placeholder="$t('other.please_enter')+$t('dbcp.S0000057')"></c-date-picker> </el-form-item> </c-col> <!-- S0000055 : 发票号 --> <c-col :span="12"> <c-form-item :label="$t('dbcp.S0000055')" prop="recgrp.vrf.invoino"> <c-input v-model="model.recgrp.vrf.invoino" maxlength="35" :placeholder="$t('other.please_enter')+$t('dbcp.S0000055')"></c-input> </c-form-item> </c-col> <!-- S0000015 : 申报日期 --> <c-col :span="12"> <el-form-item :label="$t('vrfpp.S0000015')" prop="recgrp.vrf.rptdate"> <c-date-picker type="date" v-model="model.recgrp.vrf.rptdate" style="width:100%" :placeholder="$t('other.please_enter')+$t('vrfpp.S0000015')"></c-date-picker> </el-form-item> </c-col> <!-- S0000013 : 填报人 --> <c-col :span="12"> <c-form-item :label="$t('vrfpp.S0000013')" prop="recgrp.vrf.crtuser"> <c-input v-model="model.recgrp.vrf.crtuser" maxlength="20" :placeholder="$t('other.please_enter')+$t('vrfpp.S0000013')"></c-input> </c-form-item> </c-col> <!-- S0000014 : 填报人电话 --> <c-col :span="12"> <c-form-item :label="$t('vrfpp.S0000014')" prop="recgrp.vrf.inptelc"> <c-input v-model="model.recgrp.vrf.inptelc" maxlength="20" :placeholder="$t('other.please_enter')+$t('vrfpp.S0000014')"></c-input> </c-form-item> </c-col> </div> </template> <script> import Api from "~/service/Api" import commonProcess from "~/mixin/commonProcess"; import CodeTable from "~/config/CodeTable" import Event from "~/model/Dbbdel/Event" export default { inject: ['root'], props:["model","codes"], mixins: [commonProcess], data(){ return { } }, methods:{...Event}, created:function(){ } } </script> <style> </style>