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

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

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

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

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

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

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

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

wangna committed
120
      <c-col :span="24">
huangxin committed
121
        <el-form-item label="结汇金额" prop="bopmod.dbagrp.bas.lcyamt">
wangna committed
122 123 124 125 126 127 128 129 130 131
          <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>
huangxin committed
132
        </el-form-item>
wangna committed
133
      </c-col>
huangxin committed
134

wangna committed
135
      <c-col :span="24">
huangxin committed
136
        <el-form-item label="现汇金额" prop="bopmod.dbagrp.bas.fcyamt">
wangna committed
137 138 139 140 141 142 143 144 145 146
          <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>
huangxin committed
147
        </el-form-item>
wangna committed
148
      </c-col>
huangxin committed
149

wangna committed
150
      <c-col :span="24">
huangxin committed
151
        <el-form-item label="其它金额" prop="bopmod.dbagrp.bas.othamt">
wangna committed
152 153 154 155 156 157 158 159 160 161
          <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>
huangxin committed
162
        </el-form-item>
wangna committed
163
      </c-col>
huangxin committed
164

wangna committed
165 166 167 168 169 170 171 172
      <c-col>
        <c-col :span="10">
          <el-form-item label="收入款币种及金额" prop="bopmod.dbagrp.bas.txccy">
            <c-select
              disabled
              v-model="model.bopmod.dbagrp.bas.txccy"
              style="width: 100%"
              placeholder="请选择收入款币种"
huangxin committed
173
            >
wangna committed
174 175 176 177 178 179 180 181 182 183
              <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>
huangxin committed
184

wangna committed
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 216
        <c-col :span="14">
          <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="10">
          <el-form-item
            label="国内银行扣费"
            prop="bopmod.dbagrp.bas.inchargeccy"
          >
            <c-select
              disabled
              v-model="model.bopmod.dbagrp.bas.inchargeccy"
              style="width: 100%"
              placeholder="请选择国内银行扣费"
huangxin committed
217
            >
wangna committed
218 219 220 221 222 223 224 225 226 227
              <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>
huangxin committed
228

wangna committed
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
        <c-col :span="14">
          <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>
huangxin committed
249

wangna committed
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
      <c-col>
        <c-col :span="10">
          <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>
huangxin committed
272

wangna committed
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
        <c-col :span="14">
          <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>
293
</c-col>
huangxin committed
294

295 296
            <!-- ============右边================= -->
            <c-col :span="12" style="padding-left: 20px;">
wangna committed
297 298 299
      <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>
huangxin committed
300

wangna committed
301
      <c-col :span="24">
huangxin 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>
huangxin committed
312
        </el-form-item>
wangna committed
313 314 315
      </c-col>

      <c-col :span="24">
huangxin 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="请选择结算方式"
          >
huangxin 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>
huangxin committed
331
        </el-form-item>
wangna committed
332
      </c-col>
huangxin committed
333

wangna committed
334
      <c-col :span="24">
huangxin 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>
huangxin committed
342
        </el-form-item>
wangna committed
343
      </c-col>
huangxin 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>
huangxin committed
355

wangna committed
356
      <c-col :span="24">
huangxin 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>
huangxin 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>
huangxin committed
377
        </el-form-item>
wangna committed
378 379 380
      </c-col>

      <c-col :span="24">
huangxin 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>
huangxin committed
388
        </el-form-item>
wangna committed
389 390 391
      </c-col>

      <c-col :span="24">
huangxin 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>
huangxin committed
399
        </el-form-item>
wangna committed
400
      </c-col>
401
</c-col>
huangxin committed
402 403 404
  </div>
</template>
<script>
wangna committed
405
import Api from "~/service/Api";
huangxin committed
406
import commonProcess from "~/mixin/commonProcess";
wangna committed
407 408
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Botset/Event";
huangxin committed
409 410

export default {
wangna committed
411 412 413 414 415 416
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
      actiontype: [
huangxin 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
      ],
      ownextkey: [{ label: "08350012", value: "08350012" }],
    };
  },
  methods: {
  },
  created: function () {},
};
huangxin committed
429 430 431
</script>
<style>
</style>