Basp3.vue 12.6 KB
Newer Older
wangna committed
1 2
<template>
  <div class="eibs-tab">
wangna committed
3 4
    <el-col :span="11">
      <c-col :span="24">
wangna committed
5
        <el-form-item label="申报号码" prop="bopmod.dbagrp.bas.rptno">
wangna committed
6 7 8 9 10 11
          <c-input
            disabled
            v-model="model.bopmod.dbagrp.bas.rptno"
            maxlength="22"
            placeholder="请输入申报号码"
          ></c-input>
wangna committed
12
        </el-form-item>
wangna committed
13 14 15
      </c-col>

      <c-col :span="24">
wangna committed
16
        <el-form-item label="操作类型" prop="bopmod.dbagrp.bas.actiontype">
wangna committed
17 18 19 20 21 22
          <c-select
            disabled
            v-model="model.bopmod.dbagrp.bas.actiontype"
            style="width: 100%"
            placeholder="请选择操作类型"
          >
wangna committed
23 24 25 26 27 28 29
            <el-option
              v-for="item in actiontype"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
wangna committed
30
          </c-select>
wangna committed
31
        </el-form-item>
wangna committed
32
      </c-col>
wangna committed
33

wangna committed
34
      <c-col :span="24">
wangna committed
35
        <el-form-item label="地区机构号" prop="bopmod.dbagrp.bas.ownextkey">
wangna committed
36 37 38 39 40 41
          <c-select
            disabled
            v-model="model.bopmod.dbagrp.bas.ownextkey"
            style="width: 100%"
            placeholder="请选择地区机构号"
          >
wangna committed
42 43 44 45 46 47 48
            <el-option
              v-for="item in ownextkey"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
wangna committed
49
          </c-select>
wangna committed
50
        </el-form-item>
wangna committed
51
      </c-col>
wangna committed
52

wangna committed
53
      <c-col :span="24">
wangna committed
54
        <el-form-item label="银行业务编号" prop="bopmod.dbagrp.bas.buscode">
wangna committed
55 56 57 58 59 60
          <c-input
            disabled
            v-model="model.bopmod.dbagrp.bas.buscode"
            maxlength="22"
            placeholder="请输入银行业务编号"
          ></c-input>
wangna committed
61
        </el-form-item>
wangna committed
62
      </c-col>
wangna committed
63

wangna committed
64
      <c-col :span="24">
wangna committed
65
        <el-form-item label="收款人类型" prop="bopmod.dbagrp.bas.custype">
wangna committed
66 67 68 69 70 71 72
          <c-select
            disabled
            v-model="model.bopmod.dbagrp.bas.custype"
            style="width: 100%"
            placeholder="请选择类型"
            @change="selectOrCheckboxRule('bopmod.dbagrp.bas.custype')"
          >
wangna committed
73 74 75 76 77 78 79
            <el-option
              v-for="item in codes.custype"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
wangna committed
80
          </c-select>
wangna committed
81
        </el-form-item>
wangna committed
82
      </c-col>
wangna committed
83

wangna committed
84
      <c-col :span="24">
wangna committed
85
        <el-form-item label="收款人名称" prop="bopmod.dbagrp.bas.custnm">
wangna committed
86 87 88 89 90 91 92
          <c-input
            type="textarea"
            v-model="model.bopmod.dbagrp.bas.custnm"
            maxlength="63"
            show-word-limit
            placeholder="请输入收款人名称"
          ></c-input>
wangna committed
93
        </el-form-item>
wangna committed
94
      </c-col>
wangna committed
95

wangna committed
96
      <c-col :span="24">
wangna committed
97
        <el-form-item label="付款人名称" prop="bopmod.dbagrp.bas.oppuser">
wangna committed
98 99 100 101 102 103 104
          <c-input
            type="textarea"
            v-model="model.bopmod.dbagrp.bas.oppuser"
            maxlength="63"
            show-word-limit
            placeholder="请输入付款人名称"
          ></c-input>
wangna committed
105
        </el-form-item>
wangna committed
106
      </c-col>
wangna committed
107

wangna committed
108
      <c-col :span="24">
wangna committed
109
        <el-form-item label="身份证件号码" prop="bopmod.dbagrp.bas.idcode">
wangna committed
110 111 112 113 114 115
          <c-input
            disabled
            v-model="model.bopmod.dbagrp.bas.idcode"
            maxlength="32"
            placeholder="请输入身份证件号码"
          ></c-input>
wangna committed
116
        </el-form-item>
wangna committed
117
      </c-col>
wangna committed
118

wangna committed
119
      <c-col :span="24">
wangna committed
120
        <el-form-item label="结汇金额" prop="bopmod.dbagrp.bas.lcyamt">
wangna committed
121 122 123 124 125 126 127 128 129 130
          <c-input-currency
            v-model="model.bopmod.dbagrp.bas.lcyamt"
            placeholder="请输入结汇金额"
            @keyup.enter.native="
              defaultFunction(
                'bopmod.dbagrp.bas.lcyamt',
                model.bopmod.dbagrp.bas.lcyamt
              )
            "
          ></c-input-currency>
wangna committed
131
        </el-form-item>
wangna committed
132
      </c-col>
wangna committed
133

wangna committed
134
      <c-col :span="24">
wangna committed
135
        <el-form-item label="现汇金额" prop="bopmod.dbagrp.bas.fcyamt">
wangna committed
136 137 138 139 140 141 142 143 144 145
          <c-input-currency
            v-model="model.bopmod.dbagrp.bas.fcyamt"
            placeholder="请输入现汇金额"
            @keyup.enter.native="
              defaultFunction(
                'bopmod.dbagrp.bas.fcyamt',
                model.bopmod.dbagrp.bas.fcyamt
              )
            "
          ></c-input-currency>
wangna committed
146
        </el-form-item>
wangna committed
147
      </c-col>
wangna committed
148

wangna committed
149
      <c-col :span="24">
wangna committed
150
        <el-form-item label="其它金额" prop="bopmod.dbagrp.bas.othamt">
wangna committed
151 152 153 154 155 156 157 158 159 160
          <c-input-currency
            v-model="model.bopmod.dbagrp.bas.othamt"
            placeholder="请输入其它金额"
            @keyup.enter.native="
              defaultFunction(
                'bopmod.dbagrp.bas.othamt',
                model.bopmod.dbagrp.bas.othamt
              )
            "
          ></c-input-currency>
wangna committed
161
        </el-form-item>
wangna committed
162
      </c-col>
wangna committed
163

wangna committed
164 165 166 167 168 169 170 171
      <c-col>
        <c-col :span="12">
          <el-form-item label="收入款币种及金额" prop="bopmod.dbagrp.bas.txccy">
            <c-select
              disabled
              v-model="model.bopmod.dbagrp.bas.txccy"
              style="width: 100%"
              placeholder="请选择收入款币种及金额"
wangna committed
172
            >
wangna committed
173 174 175 176 177 178 179 180 181 182
              <el-option
                v-for="item in codes.curtxt1"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>
wangna committed
183

wangna committed
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
        <c-col :span="12">
          <el-form-item
            label=""
            prop="bopmod.dbagrp.bas.txamt"
            label-width="5px"
          >
            <c-input-currency
              disabled
              v-model="model.bopmod.dbagrp.bas.txamt"
              placeholder="请输入收入款币种及金额"
              @keyup.enter.native="
                defaultFunction(
                  'bopmod.dbagrp.bas.txamt',
                  model.bopmod.dbagrp.bas.txamt
                )
              "
            ></c-input-currency>
          </el-form-item>
        </c-col>
      </c-col>

      <c-col>
        <c-col :span="12">
          <el-form-item
            label="国内银行扣费"
            prop="bopmod.dbagrp.bas.inchargeccy"
          >
            <c-select
              disabled
              v-model="model.bopmod.dbagrp.bas.inchargeccy"
              style="width: 100%"
              placeholder="请选择国内银行扣费"
wangna committed
216
            >
wangna committed
217 218 219 220 221 222 223 224 225 226
              <el-option
                v-for="item in codes.curtxt1"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>
wangna committed
227

wangna committed
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
        <c-col :span="12">
          <el-form-item
            label=""
            prop="bopmod.dbagrp.bas.inchargeamt"
            label-width="5px"
          >
            <c-input-currency
              disabled
              v-model="model.bopmod.dbagrp.bas.inchargeamt"
              placeholder="请输入国内银行扣费"
              @keyup.enter.native="
                defaultFunction(
                  'bopmod.dbagrp.bas.inchargeamt',
                  model.bopmod.dbagrp.bas.inchargeamt
                )
              "
            ></c-input-currency>
          </el-form-item>
        </c-col>
      </c-col>
wangna committed
248

wangna committed
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
      <c-col>
        <c-col :span="12">
          <el-form-item
            label="国外银行扣费"
            prop="bopmod.dbagrp.bas.outchargeccy"
          >
            <c-select
              disabled
              v-model="model.bopmod.dbagrp.bas.outchargeccy"
              style="width: 100%"
              placeholder="请选择国内银行扣费"
            >
              <el-option
                v-for="item in codes.curtxt1"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
          </el-form-item>
        </c-col>
wangna committed
271

wangna committed
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
        <c-col :span="12">
          <el-form-item
            label=""
            prop="bopmod.dbagrp.bas.outchargeamt"
            label-width="5px"
          >
            <c-input-currency
              disabled
              v-model="model.bopmod.dbagrp.bas.outchargeamt"
              placeholder="请输入国外银行扣费"
              @keyup.enter.native="
                defaultFunction(
                  'bopmod.dbagrp.bas.outchargeamt',
                  model.bopmod.dbagrp.bas.outchargeamt
                )
              "
            ></c-input-currency>
          </el-form-item>
        </c-col>
      </c-col>
    </el-col>
wangna committed
293

wangna committed
294
    <!--=====================right =============================  -->
wangna committed
295

wangna committed
296 297 298 299
    <el-col :span="11" :offset="1">
      <c-col :span="24"><el-form-item label=""></el-form-item></c-col>
      <c-col :span="24"><el-form-item label=""></el-form-item></c-col>
      <c-col :span="24"><el-form-item label=""></el-form-item></c-col>
wangna committed
300

wangna committed
301
      <c-col :span="24">
wangna committed
302
        <el-form-item label="修改/删除原因" prop="bopmod.dbagrp.bas.actiondesc">
wangna committed
303 304 305 306 307 308 309 310 311
          <c-input
            disabled
            :rows="7"
            type="textarea"
            v-model="model.bopmod.dbagrp.bas.actiondesc"
            maxlength="32"
            show-word-limit
            placeholder=""
          ></c-input>
wangna committed
312
        </el-form-item>
wangna committed
313 314 315
      </c-col>

      <c-col :span="24">
wangna committed
316
        <el-form-item label="结算方式" prop="bopmod.dbagrp.bas.methods">
wangna committed
317 318 319 320 321 322
          <c-select
            disabled
            v-model="model.bopmod.dbagrp.bas.methods"
            style="width: 100%"
            placeholder="请选择结算方式"
          >
wangna committed
323 324 325 326 327 328 329
            <el-option
              v-for="item in codes.bopmethods"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
wangna committed
330
          </c-select>
wangna committed
331
        </el-form-item>
wangna committed
332
      </c-col>
wangna committed
333

wangna committed
334
      <c-col :span="24">
wangna committed
335
        <el-form-item label="组织机构代码" prop="bopmod.dbagrp.bas.custcod">
wangna committed
336 337 338 339 340 341
          <c-input
            disabled
            v-model="model.bopmod.dbagrp.bas.custcod"
            maxlength="18"
            placeholder="请输入组织机构"
          ></c-input>
wangna committed
342
        </el-form-item>
wangna committed
343
      </c-col>
wangna committed
344

wangna committed
345 346 347 348 349 350 351 352 353 354
      <c-col :span="24">
        <el-form-item label="" prop="bopmod.dbap.baspp.acp">
          <c-checkbox
            style="margin: 0px 0 10px 150px"
            disabled
            v-model="model.bopmod.dbap.baspp.acp"
            >确认</c-checkbox
          >
        </el-form-item>
      </c-col>
wangna committed
355

wangna committed
356
      <c-col :span="24">
wangna committed
357
        <el-form-item label="结汇汇率" prop="bopmod.dbagrp.bas.exrate">
wangna committed
358 359 360 361 362
          <c-input
            disabled
            v-model="model.bopmod.dbagrp.bas.exrate"
            placeholder="请输入结汇汇率"
          ></c-input>
wangna committed
363
        </el-form-item>
wangna committed
364 365 366 367 368 369 370 371 372 373 374 375 376
      </c-col>

      <c-col :span="24">
        <el-form-item
          label="人民币帐号/银行卡号"
          prop="bopmod.dbagrp.bas.lcyacc"
        >
          <c-input
            disabled
            v-model="model.bopmod.dbagrp.bas.lcyacc"
            maxlength="32"
            placeholder="请输入人民币帐号/银行卡号"
          ></c-input>
wangna committed
377
        </el-form-item>
wangna committed
378 379 380
      </c-col>

      <c-col :span="24">
wangna committed
381
        <el-form-item label="外汇帐号/银行卡号" prop="bopmod.dbagrp.bas.fcyacc">
wangna committed
382 383 384 385 386 387
          <c-input
            disabled
            v-model="model.bopmod.dbagrp.bas.fcyacc"
            maxlength="32"
            placeholder="请输入外汇帐号/银行卡号"
          ></c-input>
wangna committed
388
        </el-form-item>
wangna committed
389 390 391
      </c-col>

      <c-col :span="24">
wangna committed
392
        <el-form-item label="其它帐号/银行卡号" prop="bopmod.dbagrp.bas.othacc">
wangna committed
393 394 395 396 397 398
          <c-input
            disabled
            v-model="model.bopmod.dbagrp.bas.othacc"
            maxlength="32"
            placeholder="请输入其它帐号/银行卡号"
          ></c-input>
wangna committed
399
        </el-form-item>
wangna committed
400 401
      </c-col>
    </el-col>
wangna committed
402 403 404
  </div>
</template>
<script>
wangna committed
405
import Api from "~/service/Api";
wangna committed
406
import commonProcess from "~/mixin/commonProcess";
wangna committed
407 408
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Botset/Event";
wangna committed
409 410

export default {
wangna committed
411 412 413 414 415 416
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
      actiontype: [
wangna committed
417 418 419 420
        { label: "新建", value: "A" },
        { label: "修改", value: "C" },
        { label: "删除", value: "D" },
        { label: "申报无误(银行反馈)", value: "R" },
wangna committed
421 422 423 424 425 426 427 428 429
      ],
      ownextkey: [{ label: "08350012", value: "08350012" }],
    };
  },
  
  methods: {
  },
  created: function () {},
};
wangna committed
430 431 432
</script>
<style>
</style>