Sel.vue 11.1 KB
Newer Older
cl committed
1
<template>
LiRui committed
2 3 4
    <div class="eibs">
      <!-- ====================左边======================= -->
      <c-col :span="12" style="padding-right: 20px">
nanrui committed
5
        <c-col :span="24">
LiRui committed
6 7 8 9
          <el-form-item label="包号" prop="cldgrp.rec.ownref">
            <c-input v-model="model.cldgrp.rec.ownref" placeholder="请输入包号" disabled>
            </c-input>
          </el-form-item>
nanrui committed
10
        </c-col>
LiRui committed
11 12 13 14 15 16 17 18 19 20 21 22 23
        <c-col :span="12">
          <el-form-item label="托收币种金额" prop="cldgrp.cbs.max.cur">
            <c-input v-model="model.cldgrp.cbs.max.cur" style="width:100%" placeholder="请选择托收币种金额" disabled>
            </c-input>
          </el-form-item>
        </c-col>
        <c-col :span="12">
          <el-form-item label="" label-width="0" prop="cldgrp.cbs.max.amt" style="margin-left: 5px">
            <c-input v-model.number="model.cldgrp.cbs.max.amt" placeholder="请输入托收余额"
                     disabled></c-input>
          </el-form-item>
        </c-col>

nanrui committed
24
        <c-col :span="24">
LiRui committed
25 26 27 28 29 30 31 32 33 34 35
          <c-col :span="12">
            <el-form-item label="托收余额" prop="cldgrp.cbs.opn1.cur">
              <c-input v-model="model.cldgrp.cbs.opn1.cur"  placeholder="请选择托收余额" disabled>
              </c-input>
            </el-form-item>
          </c-col>
          <c-col :span="12">
            <el-form-item label-width="0" prop="cldgrp.cbs.opn1.amt" style="margin-left: 5px">
              <c-input v-model="model.cldgrp.cbs.opn1.amt" placeholder="请输入托收余额" disabled></c-input>
            </el-form-item>
          </c-col>
nanrui committed
36 37 38
        </c-col>

        <c-col :span="24">
LiRui committed
39 40 41 42 43
          <el-form-item label="代收行参考号" prop="cldgrp.rec.colref">
            <c-input v-model="model.cldgrp.rec.colref" maxlength="16" placeholder="请输入代收行参考号" disabled>
            </c-input>
          </el-form-item>
        </c-col>
nanrui committed
44

LiRui committed
45 46 47 48 49
        <c-col :span="24">
          <el-form-item label="代收行名称" prop="cldgrp.rec.colptynam">
            <c-input v-model="model.cldgrp.rec.colptynam" maxlength="40" placeholder="请输入代收行名称" disabled>
            </c-input>
          </el-form-item>
nanrui committed
50 51 52
        </c-col>

        <c-col :span="24">
LiRui committed
53 54 55 56
          <el-form-item label="创建日期" prop="cldgrp.rec.credat">
            <c-date-picker type="date" v-model="model.cldgrp.rec.credat" style="width:100%"
                           placeholder="请选择创建日期" disabled></c-date-picker>
          </el-form-item>
nanrui committed
57 58 59
        </c-col>

        <c-col :span="24">
LiRui committed
60 61 62
          <el-form-item label="选中票据份数" prop="cldgrp.rec.count">
            <c-input v-model="model.cldgrp.rec.count" placeholder="请输入选中票据份数" disabled></c-input>
          </el-form-item>
nanrui committed
63 64 65
        </c-col>


LiRui committed
66 67 68 69
      </c-col>

      <!-- ====================右边======================= -->
      <c-col :span="12" style="padding-left: 20px">
nanrui committed
70
        <c-col :span="24">
LiRui committed
71 72 73 74 75 76 77
          <el-form-item label="汇票类型" prop="cldgrp.rec.chktyp">
            <c-select v-model="model.cldgrp.rec.chktyp" style="width: 100%" placeholder="请输入汇票类型" disabled>
              <el-option v-for="item in codes.chktyp" :key="item.value" :label="item.label"
                         :value="item.value">
              </el-option>
            </c-select>
          </el-form-item>
nanrui committed
78
        </c-col>
LiRui committed
79

nanrui committed
80
        <c-col :span="24">
LiRui committed
81 82 83 84 85 86 87
          <el-form-item label="票据类型" prop="cldgrp.rec.colflg">
            <c-select v-model="model.cldgrp.rec.colflg" style="width: 100%" placeholder="请输入票据类型" disabled>
              <el-option v-for="item in codes.colflg" :key="item.value" :label="item.label"
                         :value="item.value">
              </el-option>
            </c-select>
          </el-form-item>
nanrui committed
88
        </c-col>
LiRui committed
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 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
      </c-col>






<!--        <c-col :span="24">-->
<!--            <c-col :span="12" style="padding-right: 20px">-->
<!--                <el-form-item label="包号" prop="cldgrp.rec.ownref">-->
<!--                    <c-input v-model="model.cldgrp.rec.ownref" maxlength="16" placeholder="请输入包号" disabled>-->
<!--                    </c-input>-->
<!--                </el-form-item>-->
<!--            </c-col>-->
<!--            <c-col :span="12" style="padding-left: 20px">-->
<!--                <el-form-item label="汇票类型" prop="cldgrp.rec.chktyp">-->
<!--                    <c-select v-model="model.cldgrp.rec.chktyp" style="width: 100%" placeholder="请输入汇票类型" disabled>-->
<!--                        <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">-->
<!--                    <el-form-item label="托收币种金额" prop="cldgrp.cbs.max.cur">-->
<!--                        <c-input v-model="model.cldgrp.cbs.max.cur" style="width:100%" placeholder="请选择托收币种金额" 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%">-->
<!--                        <c-input v-model.number="model.cldgrp.cbs.max.amt" style="width:100%" placeholder="请输入托收余额"-->
<!--                            disabled></c-input>-->
<!--                    </el-form-item>-->
<!--                </c-col>-->
<!--            </c-col>-->
<!--            <c-col :span="11" :offset="1">-->
<!--                <el-form-item label="票据类型" prop="cldgrp.rec.colflg">-->
<!--                    <c-select v-model="model.cldgrp.rec.colflg" style="width: 100%" placeholder="请输入票据类型" disabled>-->
<!--                        <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">-->
<!--                    <el-form-item label="托收余额" prop="cldgrp.cbs.opn1.cur">-->
<!--                        <c-input v-model="model.cldgrp.cbs.opn1.cur" style="width:100%" placeholder="请选择托收余额" 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">-->
<!--                        <c-input v-model="model.cldgrp.cbs.opn1.amt" placeholder="请输入托收余额" disabled></c-input>-->
<!--                    </el-form-item>-->
<!--                </c-col>-->

<!--            </c-col>-->

<!--        </c-col>-->

<!--        <c-col :span="24">-->
<!--            <c-col :span="11">-->
<!--                <el-form-item label="代收行参考号" prop="cldgrp.rec.colref">-->
<!--                    <c-input v-model="model.cldgrp.rec.colref" maxlength="16" placeholder="请输入代收行参考号" disabled>-->
<!--                    </c-input>-->
<!--                </el-form-item>-->
<!--            </c-col>-->
<!--        </c-col>-->

<!--        <c-col :span="24">-->
<!--            <c-col :span="11">-->
<!--                <el-form-item label="代收行名称" prop="cldgrp.rec.colptynam">-->
<!--                    <c-input v-model="model.cldgrp.rec.colptynam" maxlength="40" placeholder="请输入代收行名称" disabled>-->
<!--                    </c-input>-->
<!--                </el-form-item>-->
<!--            </c-col>-->
<!--        </c-col>-->


<!--        <c-col :span="24">-->
<!--            <c-col :span="11">-->
<!--                <el-form-item label="创建日期" prop="cldgrp.rec.credat">-->
<!--                    <c-date-picker type="date" v-model="model.cldgrp.rec.credat" style="width:100%"-->
<!--                        placeholder="请选择创建日期" disabled></c-date-picker>-->
<!--                </el-form-item>-->
<!--            </c-col>-->
<!--        </c-col>-->
<!--        <c-col :span="24">-->
<!--            <c-col :span="11">-->
<!--                <el-form-item label="选中票据份数" prop="cldgrp.rec.count">-->
<!--                    <c-input v-model="model.cldgrp.rec.count" placeholder="请输入选中票据份数" disabled></c-input>-->
<!--                </el-form-item>-->
<!--            </c-col>-->
<!--        </c-col>-->
nanrui committed
191 192

        <c-col :span="24">
hewei committed
193
            <c-edit-table :model="model" v-bind="ccdbatg">
nanrui committed
194 195 196
            </c-edit-table>
        </c-col>
    </div>
cl committed
197 198
</template>
<script>
cl committed
199
import Api from "~/service/Api"
wangren committed
200
import commonProcess from "~/mixin/commonProcess";
cl committed
201 202
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Cltset/Event"
cl committed
203

cl committed
204 205
export default {
    inject: ['root'],
nanrui committed
206
    props: ["model", "codes"],
wangren committed
207
    mixins: [commonProcess],
nanrui committed
208
    data() {
cl committed
209
        return {
hewei committed
210
          ccdbatg: {
nanrui committed
211
                columns: [
212
                    {
nanrui committed
213
                        title: "核对号",
214 215 216 217
                        width: "120px",
                        dataIndex: "chcknum",
                        show: "text",
                    },
nanrui committed
218
                    {
nanrui committed
219
                        title: "托收编号",
220
                        width: "120px",
nanrui committed
221 222 223 224
                        dataIndex: "ownref",
                        show: "text",
                    },
                    {
nanrui committed
225
                        title: "描述",
226
                        width: "240px",
nanrui committed
227 228 229 230
                        dataIndex: "nam",
                        show: "text",
                    },
                    {
nanrui committed
231
                        title: "委托人名称",
232
                        width: "230px",
nanrui committed
233 234 235 236
                        dataIndex: "prenam",
                        show: "text",
                    },
                    {
nanrui committed
237
                        title: "币种",
238
                        width: "50px",
nanrui committed
239 240 241 242
                        dataIndex: "cur",
                        show: "text",
                    },
                    {
nanrui committed
243
                        title: "金额",
244
                        width: "100px",
nanrui committed
245 246 247 248 249
                        dataIndex: "amt",
                        show: "text",
                    },
                    {
                        title: "Pay To",
250
                        width: "120px",
nanrui committed
251 252 253 254
                        dataIndex: "paytoamt",
                        show: "input",
                    },
                    {
nanrui committed
255
                        title: "勾选",
nanrui committed
256 257 258 259
                        width: "100px",
                        dataIndex: "selflg",
                        show: "checkbox",
                    },
cl committed
260

nanrui committed
261
                ],
hewei committed
262
                urls: "ccdbatg",
nanrui committed
263
            },
cl committed
264
        }
cl committed
265
    },
nanrui committed
266 267
    methods: { ...Event },
    created: function () {
cl committed
268

cl committed
269
    }
cl committed
270
}
cl committed
271 272
</script>
<style>
cl committed
273
</style>