Sel.vue 6.61 KB
Newer Older
cl committed
1
<template>
2 3 4
    <div class="eibs-tab">
        <c-col :span="24">
            <c-col :span="11">
nanrui committed
5
                <el-form-item label="包号" prop="cldgrp.rec.ownref">
wangna committed
6
                    <c-input v-model="model.cldgrp.rec.ownref" maxlength="16" placeholder="请输入" disabled>
nanrui committed
7
                    </c-input>
8 9 10
                </el-form-item>
            </c-col>
            <c-col :span="11" :offset="1">
nanrui committed
11 12
                <el-form-item label="汇票类型" prop="cldgrp.rec.chktyp">
                    <c-select v-model="model.cldgrp.rec.chktyp" style="width: 100%" placeholder="请输入汇票类型" disabled>
13 14 15 16 17 18 19 20 21 22
                        <el-option v-for="item in codes.chktyp" :key="item.value" :label="item.label"
                            :value="item.value">
                        </el-option>
                    </c-select>
                </el-form-item>
            </c-col>
        </c-col>
        <c-col :span="24">
            <c-col :span="11">
                <c-col :span="12">
nanrui committed
23 24
                    <el-form-item label="托收币种金额" prop="cldgrp.cbs.max.cur">
                        <c-input v-model="model.cldgrp.cbs.max.cur" style="width:100%" placeholder="请选择托收币种金额"
25 26 27 28 29 30
                            disabled>
                        </c-input>
                    </el-form-item>
                </c-col>
                <c-col :span="11" :offset="1">
                    <el-form-item label="" label-width="0" prop="cldgrp.cbs.max.amt" style="width:100%">
nanrui committed
31
                        <c-input v-model="model.cldgrp.cbs.max.amt" style="width:100%" placeholder="请输入托收余额"
nanrui committed
32
                            disabled></c-input>
33 34 35 36
                    </el-form-item>
                </c-col>
            </c-col>
            <c-col :span="11" :offset="1">
nanrui committed
37
                <el-form-item label="票据类型" prop="cldgrp.rec.colflg">
38
                    <c-select v-model="model.cldgrp.rec.colflg" style="width: 100%"
nanrui committed
39
                        placeholder="请输入票据类型" disabled>
40 41 42 43 44 45 46 47 48 49 50
                        <el-option v-for="item in codes.colflg" :key="item.value" :label="item.label"
                            :value="item.value">
                        </el-option>
                    </c-select>
                </el-form-item>
            </c-col>
        </c-col>

        <c-col :span="24">
            <c-col :span="11">
                <c-col :span="12">
nanrui committed
51 52
                    <el-form-item label="托收余额" prop="cldgrp.cbs.opn1.cur">
                        <c-input v-model="model.cldgrp.cbs.opn1.cur" style="width:100%" placeholder="请选择托收余额"
53 54 55 56 57 58
                            disabled>
                        </c-input>
                    </el-form-item>
                </c-col>
                <c-col :span="11" :offset="1">
                    <el-form-item label-width="0" prop="cldgrp.cbs.opn1.amt">
nanrui committed
59
                        <c-input v-model="model.cldgrp.cbs.opn1.amt" placeholder="请输入托收余额" disabled></c-input>
60 61 62 63 64 65 66 67 68
                    </el-form-item>
                </c-col>

            </c-col>

        </c-col>

        <c-col :span="24">
            <c-col :span="11">
nanrui committed
69 70
                <el-form-item label="代收行参考号" prop="cldgrp.rec.colref">
                    <c-input v-model="model.cldgrp.rec.colref" maxlength="16" placeholder="请输入代收行参考号">
71 72 73 74 75 76 77
                    </c-input>
                </el-form-item>
            </c-col>
        </c-col>

        <c-col :span="24">
            <c-col :span="11">
nanrui committed
78 79
                <el-form-item label="代收行名称" prop="cldgrp.rec.colptynam">
                    <c-input v-model="model.cldgrp.rec.colptynam" maxlength="40" placeholder="请输入代收行名称"
80 81 82 83 84 85 86 87 88
                        disabled>
                    </c-input>
                </el-form-item>
            </c-col>
        </c-col>


        <c-col :span="24">
            <c-col :span="11">
nanrui committed
89
                <el-form-item label="创建日期" prop="cldgrp.rec.credat">
90
                    <c-date-picker type="date" v-model="model.cldgrp.rec.credat" style="width:100%"
nanrui committed
91
                        placeholder="请选择创建日期" disabled></c-date-picker>
92 93 94 95 96 97 98
                </el-form-item>
            </c-col>
        </c-col>


        <c-col :span="24">
            <c-col :span="11">
nanrui committed
99 100
                <el-form-item label="选中票据份数" prop="cldgrp.rec.count">
                    <c-input v-model="model.cldgrp.rec.count" placeholder="请输入选中票据份数" disabled></c-input>
101 102 103 104
                </el-form-item>
            </c-col>
        </c-col>

nanrui committed
105 106 107 108 109
        <c-col :span="24">
            <c-edit-table :model="model" v-bind="docgrd">
            </c-edit-table>
        </c-col>

110
    </div>
cl committed
111 112 113
</template>
<script>
import Api from "~/service/Api"
wangren committed
114
import commonProcess from "~/mixin/commonProcess";
cl committed
115 116 117 118 119
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Clttra/Event"

export default {
    inject: ['root'],
nanrui committed
120
    props: ["model", "codes"],
wangren committed
121
    mixins: [commonProcess],
nanrui committed
122
    data() {
cl committed
123
        return {
nanrui committed
124 125
            docgrd: {
                columns: [
126
                    {
nanrui committed
127
                        title: "核对号",
128 129 130 131
                        width: "120px",
                        dataIndex: "chcknum",
                        show: "text",
                    },
nanrui committed
132
                    {
nanrui committed
133
                        title: "托收编号",
134
                        width: "120px",
nanrui committed
135 136 137 138 139
                        dataIndex: "ownref",
                        show: "text",
                    },
                    {
                        title: "Name of CC contact",
140
                        width: "220px",
nanrui committed
141 142 143 144
                        dataIndex: "nam",
                        show: "text",
                    },
                    {
nanrui committed
145
                        title: "委托人",
nanrui committed
146 147 148 149 150
                        width: "200px",
                        dataIndex: "prenam",
                        show: "text",
                    },
                    {
nanrui committed
151
                        title: "币种",
nanrui committed
152 153 154 155 156 157
                        width: "100px",
                        dataIndex: "cur",
                        show: "text",
                    },
                    {
                        title: "balance",
158
                        width: "100px",
nanrui committed
159 160 161 162
                        dataIndex: "amt",
                        show: "text",
                    },
                    {
163 164
                        title: "PAY TO",
                        width: "100px",
nanrui committed
165 166 167 168
                        dataIndex: "paytoamt",
                        show: "input",
                    },
                ],
169
                urls: "bptbck.bptbckg",
nanrui committed
170
            },
cl committed
171 172
        }
    },
nanrui committed
173 174
    methods: { ...Event },
    created: function () {
cl committed
175 176 177 178 179 180 181

    }
}
</script>
<style>

</style>