Dclp.vue 8.44 KB
Newer Older
jianglong committed
1 2 3 4 5 6 7 8 9 10 11 12
<template>
<div class="eibs-tab">

    <c-row>
        <c-col :span="24">

            <!-- -----左边----- -->
            <c-col :span="12" style="padding-right:20px">
                <!-- S0000001 : 临时申报编号 -->

                <c-col :span="24">
                    <c-form-item :label="$t('dclpp.S0000001')" prop="recgrp.dcl.tmpref">
jianglong committed
13
                        <c-input disabled v-model="model.recgrp.dcl.tmpref" maxlength="16" :placeholder="$t('other.please_enter')+$t('dclpp.S0000001')"></c-input>
jianglong committed
14 15 16 17 18 19 20
                    </c-form-item>
                </c-col>

                <!-- S0000003 : 操作类型 -->

                <c-col :span="24">
                    <c-form-item :label="$t('dclpp.S0000003')" prop="recgrp.dcl.actiontype">
jianglong committed
21
                        <c-input  disabled v-model="model.recgrp.dcl.actiontype" maxlength="1" :placeholder="$t('other.please_enter')+$t('dclpp.S0000003')"></c-input>
jianglong committed
22 23 24 25 26 27 28
                    </c-form-item>
                </c-col>

                <!-- S0000002 : 地区机构号 -->

                <c-col :span="24">
                    <c-form-item :label="$t('dclpp.S0000002')" prop="recgrp.dcl.ownextkey">
jianglong committed
29
                        <c-input disabled  v-model="model.recgrp.dcl.ownextkey" maxlength="8" :placeholder="$t('other.please_enter')+$t('dclpp.S0000002')"></c-input>
jianglong committed
30 31 32 33 34 35 36
                    </c-form-item>
                </c-col>

                <!-- S0000018 : 申报日期 -->

                <c-col :span="24">
                    <el-form-item :label="$t('dclpp.S0000018')" prop="recgrp.dcl.rptdate">
jianglong committed
37
                        <c-date-picker disabled  type="date" v-model="model.recgrp.dcl.rptdate" style="width:100%" :placeholder="$t('other.please_enter')+$t('dclpp.S0000018')"></c-date-picker>
jianglong committed
38 39 40 41 42
                    </el-form-item>
                </c-col>

                <c-col :span="24">
                    <el-form-item label="收款性质" prop="recgrp.dcl.paytype">
jianglong committed
43
                        <c-select disabled  v-model="model.recgrp.dcl.paytype" style="width:100%" :placeholder="$t('other.please_enter')+'收款性质'">
jianglong committed
44 45 46 47 48 49 50 51
                        </c-select>
                    </el-form-item>
                </c-col>

                <c-col :span="24">

                    <c-col :span="12">
                        <c-form-item label="交易编码1" prop="recgrp.dcl.txcode">
jianglong committed
52
                            <c-input disabled  v-model="model.recgrp.dcl.txcode" maxlength="6" :placeholder="$t('other.please_enter')+'交易编码1'"></c-input>
jianglong committed
53 54 55 56 57 58 59 60 61 62 63 64 65 66

                            <!--
                    <c-button size="small" type="primary" icon="el-icon-search" @click="onCodsel1Selbut1">
                        {{$t('codsel.C0000002')}}
                    </c-button>
                    <c-button size="small" type="primary" icon="el-icon-search" @click="onCodsel1Selbut">
                        {{$t('codsel.C0000002')}}
                    </c-button>-->
                        </c-form-item>

                    </c-col>

                    <c-col :span="12">
                        <c-form-item :label="$t('dclpp.S0000009')" prop="recgrp.dcl.tc1amt">
jianglong committed
67
                            <c-input disabled  v-model="model.recgrp.dcl.tc1amt" :placeholder="$t('other.please_enter')+$t('dclpp.S0000009')"></c-input>
jianglong committed
68 69 70 71 72 73 74
                        </c-form-item>
                    </c-col>

                </c-col>

                <c-col :span="24">
                    <c-form-item :label="$t('dclpp.S0000031')" prop="recgrp.dcl.txrem">
jianglong committed
75
                        <c-input disabled  v-model="model.recgrp.dcl.txrem" maxlength="50" :placeholder="$t('other.please_enter')+$t('dclpp.S0000031')"></c-input>
jianglong committed
76 77 78 79 80 81
                    </c-form-item>
                </c-col>

                <c-col :span="24">
                    <c-col :span="12">
                        <c-form-item label="交易编码2" prop="recgrp.dcl.txcode2">
jianglong committed
82
                            <c-input disabled  v-model="model.recgrp.dcl.txcode2" maxlength="6" :placeholder="$t('other.please_enter')+'交易编码2'"></c-input>
jianglong committed
83 84 85 86 87 88 89 90 91
                            <!--
                    <c-button size="small" type="primary" icon="el-icon-search" @click="onCodsel2Selbut">
                        {{$t('codsel.C0000002')}}
                    </c-button>-->
                        </c-form-item>
                    </c-col>

                    <c-col :span="12">
                        <c-form-item :label="$t('dclpp.S0000013')" prop="recgrp.dcl.tc2amt">
jianglong committed
92
                            <c-input disabled  v-model="model.recgrp.dcl.tc2amt" :placeholder="$t('other.please_enter')+$t('dclpp.S0000013')"></c-input>
jianglong committed
93 94 95 96 97 98
                        </c-form-item>
                    </c-col>
                </c-col>

                <c-col :span="24">
                    <c-form-item :label="$t('dclpp.S0000014')" prop="recgrp.dcl.tx2rem">
jianglong committed
99
                        <c-input  disabled v-model="model.recgrp.dcl.tx2rem" maxlength="50" :placeholder="$t('other.please_enter')+$t('dclpp.S0000014')"></c-input>
jianglong committed
100 101 102 103 104 105
                    </c-form-item>
                </c-col>

            </c-col>

            <!-- -----右边----- -->
jianglong committed
106
            <c-col :span="12" style="padding-left:20px">
jianglong committed
107 108 109 110 111

                <!-- S0000005 : 申报号码 -->

                <c-col :span="24">
                    <c-form-item :label="$t('dclpp.S0000005')" prop="recgrp.dcl.rptno">
jianglong committed
112
                        <c-input disabled  v-model="model.recgrp.dcl.rptno" maxlength="22" :placeholder="$t('other.please_enter')+$t('dclpp.S0000005')"></c-input>
jianglong committed
113 114 115 116 117 118 119
                    </c-form-item>
                </c-col>
                <!-- S0000004 : 修改/删除原因 -->

                <c-col :span="24">
                    <fullbox>
                        <c-form-item :label="$t('dclpp.S0000004')" prop="recgrp.dcl.actiondesc">
jianglong committed
120
                            <c-input disabled  type="textarea" v-model="model.recgrp.dcl.actiondesc" maxlength="32" show-word-limit :placeholder="$t('other.please_enter')+$t('dclpp.S0000004')"></c-input>
jianglong committed
121 122 123 124 125 126
                        </c-form-item>
                    </fullbox>
                </c-col>

                <c-col :span="24">
                    <el-form-item label="是否出口核销项下收汇" prop="recgrp.dcl.isref">
jianglong committed
127
                        <c-select disabled  v-model="model.recgrp.dcl.isref" style="width:100%" :placeholder="$t('other.please_enter')+'是否出口核销项下收汇'">
jianglong committed
128 129 130 131 132
                        </c-select>
                    </el-form-item>
                </c-col>
                <c-col :span="24">
                    <c-form-item label="付款人常驻国家/地区编码" prop="recgrp.dcl.country">
jianglong committed
133
                        <c-input disabled  v-model="model.recgrp.dcl.country" maxlength="3" :placeholder="$t('other.please_enter')+'付款人常驻国家/地区编码'"></c-input>
jianglong committed
134 135 136 137
                    </c-form-item>
                </c-col>

                <c-col :span="24">
jianglong committed
138 139
                    <el-form-item label-width="120px" prop="recp.dclpp.acp">
                        <c-checkbox disabled  style="float:left" v-model="model.recp.dclpp.acp">{{$t('dclpp.C0000029')}}</c-checkbox>
jianglong committed
140 141 142 143 144
                    </el-form-item>
                </c-col>

                <c-col :span="24">
                    <c-form-item label="填报人" prop="recgrp.dcl.crtuser">
jianglong committed
145
                        <c-input disabled  v-model="model.recgrp.dcl.crtuser" maxlength="20" :placeholder="$t('other.please_enter')+'填报人'"></c-input>
jianglong committed
146 147 148
                    </c-form-item>

                    <c-form-item label="填报人电话" prop="recgrp.dcl.inptelc">
jianglong committed
149
                        <c-input disabled  v-model="model.recgrp.dcl.inptelc" maxlength="20" :placeholder="$t('other.please_enter')+'填报人电话'"></c-input>
jianglong committed
150 151 152 153 154 155
                    </c-form-item>

                </c-col>

                <c-col :span="24">
                    <c-form-item :label="$t('dbap.S0000048')" prop="recgrp.dcl.billno">
jianglong committed
156
                        <c-input disabled  v-model="model.recgrp.dcl.billno" maxlength="50" :placeholder="$t('other.please_enter')+$t('dbap.S0000048')"></c-input>
jianglong committed
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
                    </c-form-item>
                </c-col>

            </c-col>
        </c-col>
    </c-row>
</div>
</template>

<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Dbainf/Event"

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

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

    }
}
</script>

<style>

</style>