Basp2.vue 10.4 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.dbdgrp.bas.rptno">
wangna committed
6 7 8 9 10 11
          <c-input
            disabled
            v-model="model.bopmod.dbdgrp.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.dbdgrp.bas.actiontype">
wangna committed
17 18 19 20 21 22
          <c-select
            disabled
            v-model="model.bopmod.dbdgrp.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.dbdgrp.bas.ownextkey">
wangna committed
36 37 38 39 40 41
          <c-select
            disabled
            v-model="model.bopmod.dbdgrp.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.dbdgrp.bas.buscode">
wangna committed
55 56 57 58 59 60
          <c-input
            disabled
            v-model="model.bopmod.dbdgrp.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.dbdgrp.bas.custype">
wangna committed
66 67 68 69 70 71
          <c-select
            disabled
            v-model="model.bopmod.dbdgrp.bas.custype"
            style="width: 100%"
            placeholder="请选择类型"
          >
wangna committed
72 73 74 75 76 77 78
            <el-option
              v-for="item in codes.custype"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
wangna committed
79
          </c-select>
wangna committed
80
        </el-form-item>
wangna committed
81
      </c-col>
wangna committed
82

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

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

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

wangna committed
122
      <c-col :span="24">
wangna committed
123
        <el-form-item label="结汇金额" prop="bopmod.dbdgrp.bas.lcyamt">
wangna committed
124 125 126 127
          <c-input-currency
            v-model="model.bopmod.dbdgrp.bas.lcyamt"
            placeholder="请输入结汇金额"
          ></c-input-currency>
wangna committed
128
        </el-form-item>
wangna committed
129
      </c-col>
wangna committed
130

wangna committed
131
      <c-col :span="24">
wangna committed
132
        <el-form-item label="现汇金额" prop="bopmod.dbdgrp.bas.fcyamt">
wangna committed
133 134 135 136
          <c-input-currency
            v-model="model.bopmod.dbdgrp.bas.fcyamt"
            placeholder="请输入现汇金额"
          ></c-input-currency>
wangna committed
137
        </el-form-item>
wangna committed
138
      </c-col>
wangna committed
139

wangna committed
140
      <c-col :span="24">
wangna committed
141
        <el-form-item label="其它金额" prop="bopmod.dbdgrp.bas.othamt">
wangna committed
142 143 144 145
          <c-input-currency
            v-model="model.bopmod.dbdgrp.bas.othamt"
            placeholder="请输入其它金额"
          ></c-input-currency>
wangna committed
146
        </el-form-item>
wangna committed
147
      </c-col>
wangna committed
148

wangna committed
149 150 151 152 153 154 155 156 157 158 159 160
      <c-col :span="10">
        <el-form-item
          disabled
          label="收入款币种及金额"
          prop="bopmod.dbdgrp.bas.txccy"
        >
          <c-select
            disabled
            v-model="model.bopmod.dbdgrp.bas.txccy"
            style="width: 100%"
            placeholder="请选择收入款币种及金额"
          >
wangna committed
161 162 163 164 165 166 167
            <el-option
              v-for="item in codes.curtxt1"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
wangna committed
168
          </c-select>
wangna committed
169
        </el-form-item>
wangna committed
170 171 172
      </c-col>

      <c-col :span="14">
wangna committed
173
        <el-form-item label="" prop="bopmod.dbdgrp.bas.txamt" label-width="5px">
wangna committed
174 175 176 177 178
          <c-input-currency
            disabled
            v-model="model.bopmod.dbdgrp.bas.txamt"
            placeholder="请输入收入款币种及金额"
          ></c-input-currency>
wangna committed
179
        </el-form-item>
wangna committed
180 181
      </c-col>
    </el-col>
wangna committed
182

wangna committed
183
    <!--=====================right =============================  -->
wangna committed
184

wangna committed
185 186 187 188
    <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
189

wangna committed
190
      <c-col :span="24">
wangna committed
191
        <el-form-item label="修改/删除原因" prop="bopmod.dbdgrp.bas.actiondesc">
wangna committed
192 193 194 195 196 197 198 199 200
          <c-input
            disabled
            :rows="7"
            type="textarea"
            v-model="model.bopmod.dbdgrp.bas.actiondesc"
            maxlength="32"
            show-word-limit
            placeholder=""
          ></c-input>
wangna committed
201
        </el-form-item>
wangna committed
202 203 204
      </c-col>

      <c-col :span="24">
wangna committed
205
        <el-form-item label="结算方式" prop="bopmod.dbdgrp.bas.methods">
wangna committed
206 207 208 209 210 211
          <c-select
            disabled
            v-model="model.bopmod.dbdgrp.bas.methods"
            style="width: 100%"
            placeholder="请选择结算方式"
          >
wangna committed
212 213 214 215 216 217 218
            <el-option
              v-for="item in codes.bopmethods"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
wangna committed
219
          </c-select>
wangna committed
220
        </el-form-item>
wangna committed
221
      </c-col>
wangna committed
222

wangna committed
223
      <c-col :span="24">
wangna committed
224
        <el-form-item label="组织机构代码" prop="bopmod.dbdgrp.bas.custcod">
wangna committed
225 226 227 228 229 230
          <c-input
            disabled
            v-model="model.bopmod.dbdgrp.bas.custcod"
            maxlength="18"
            placeholder="请输入组织机构"
          ></c-input>
wangna committed
231
        </el-form-item>
wangna committed
232
      </c-col>
wangna committed
233

wangna committed
234 235 236 237 238 239 240 241 242 243
      <c-col :span="24">
        <el-form-item label="" prop="bopmod.dbdp.baspp.acp">
          <c-checkbox
            style="margin: 0px 0 10px 150px"
            disabled
            v-model="model.bopmod.dbdp.baspp.acp"
            >确认</c-checkbox
          >
        </el-form-item>
      </c-col>
wangna committed
244

wangna committed
245
      <c-col :span="24">
wangna committed
246
        <el-form-item label="结汇汇率" prop="bopmod.dbdgrp.bas.exrate">
wangna committed
247 248 249 250 251
          <c-input
            disabled
            v-model="model.bopmod.dbdgrp.bas.exrate"
            placeholder="请输入结汇汇率"
          ></c-input>
wangna committed
252
        </el-form-item>
wangna committed
253 254 255 256 257 258 259 260 261 262 263 264 265
      </c-col>

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

      <c-col :span="24">
wangna committed
270
        <el-form-item label="外汇帐号/银行卡号" prop="bopmod.dbdgrp.bas.fcyacc">
wangna committed
271 272 273 274 275 276
          <c-input
            disabled
            v-model="model.bopmod.dbdgrp.bas.fcyacc"
            maxlength="32"
            placeholder="请输入外汇帐号/银行卡号"
          ></c-input>
wangna committed
277
        </el-form-item>
wangna committed
278 279 280
      </c-col>

      <c-col :span="24">
wangna committed
281
        <el-form-item label="其它帐号/银行卡号" prop="bopmod.dbdgrp.bas.othacc">
wangna committed
282 283 284 285 286 287
          <c-input
            disabled
            v-model="model.bopmod.dbdgrp.bas.othacc"
            maxlength="32"
            placeholder="请输入其它帐号/银行卡号"
          ></c-input>
wangna committed
288
        </el-form-item>
wangna committed
289 290 291
      </c-col>

      <c-col :span="10">
wangna committed
292
        <el-form-item label="国内银行扣费" prop="bopmod.dbdgrp.bas.inchargeccy">
wangna committed
293 294 295 296 297 298
          <c-select
            disabled
            v-model="model.bopmod.dbdgrp.bas.inchargeccy"
            style="width: 100%"
            placeholder="请选择国内银行扣费"
          >
wangna committed
299 300 301 302 303 304 305
            <el-option
              v-for="item in codes.curtxt1"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
wangna committed
306
          </c-select>
wangna committed
307
        </el-form-item>
wangna committed
308
      </c-col>
wangna committed
309

wangna committed
310 311 312 313 314 315 316 317 318 319 320 321 322 323
      <c-col :span="14">
        <el-form-item
          label=""
          prop="bopmod.dbdgrp.bas.inchargeamt"
          label-width="5px"
        >
          <c-input-currency
            disabled
            v-model="model.bopmod.dbdgrp.bas.inchargeamt"
            placeholder="请输入国内银行扣费"
          ></c-input-currency>
        </el-form-item>
      </c-col>
    </el-col>
wangna committed
324 325 326
  </div>
</template>
<script>
wangna committed
327
import Api from "~/service/Api";
wangna committed
328
import commonProcess from "~/mixin/commonProcess";
wangna committed
329 330
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Botset/Event";
wangna committed
331 332

export default {
wangna committed
333 334 335 336 337 338
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
      actiontype: [
wangna committed
339 340 341 342
        { label: "新建", value: "A" },
        { label: "修改", value: "C" },
        { label: "删除", value: "D" },
        { label: "申报无误(银行反馈)", value: "R" },
wangna committed
343 344 345 346 347 348
      ],
      ownextkey: [{ label: "08350012", value: "08350012" }],
    };
  },
  computed: {
    acp: {
wangna committed
349 350 351 352 353 354 355
      get() {
        return this.model.bopmod.dbdp.baspp.acp === "X";
      },
      set(val) {
        this.model.bopmod.dbdp.baspp.acp = val ? "X" : "";
      },
    },
wangna committed
356 357 358 359 360
  },
 
  methods: {},
  created: function () {},
};
wangna committed
361 362 363
</script>
<style>
</style>