Wg.vue 2.85 KB
Newer Older
chenzhaole committed
1 2
<template>
  <div class="eibs-tab">
3 4
    <c-col :span="11">
      <c-col :span="24">
taojinrui committed
5
        <c-col :span="24">
taojinrui committed
6
          <el-form-item label="申报类型" prop="bopmod.szflg">
7 8 9
            <c-select v-model="model.bopmod.szflg" style="width: 100%" placeholder="请选择申报类型">
              <el-option v-for="item in codes.szflg" :key="item.value" :label="item.label" :value="item.value">
              </el-option>
taojinrui committed
10 11 12
            </c-select>
          </el-form-item>
        </c-col>
13
      </c-col>
taojinrui committed
14

15
      <c-col :span="24">
taojinrui committed
16
        <el-form-item label="款项来源" prop="bopmod.acttyp">
17 18 19 20
          <c-select v-model="model.bopmod.acttyp" style="width: 100%" placeholder="请选择款项来源"
            :disabled="model.bopmod.szflg==='3' || model.bopmod.szflg==='2' ||model.bopmod.szflg===''">
            <el-option v-for="item in codes.acttyp" :key="item.value" :label="item.label" :value="item.value">
            </el-option>
21
          </c-select>
taojinrui committed
22
        </el-form-item>
23
      </c-col>
taojinrui committed
24

25
      <c-col :span="24">
taojinrui committed
26
        <el-form-item label="地区机构号" prop="bopmod.ownextkey">
27 28 29
          <c-select v-model="model.bopmod.ownextkey" style="width: 100%" placeholder="请选择地区机构号"
            :disabled="model.bopmod.szflg==='3' ||model.bopmod.szflg===''">
            <el-option v-for="item in ownextkey" :key="item.value" :label="item.label" :value="item.value"></el-option>
30
          </c-select>
taojinrui committed
31
        </el-form-item>
32
      </c-col>
taojinrui committed
33
    </c-col>
34

taojinrui committed
35
    <c-col :span="11" :offset="1">
36
      <c-col :span="24">
37 38
        <c-checkbox v-model="model.bopmod.basflg" :disabled="model.bopmod.szflg==='3'||model.bopmod.szflg===''">基础数据
        </c-checkbox>
39
      </c-col>
taojinrui committed
40 41 42 43
    </c-col>

    <c-col :span="15">
      <c-col :span="12">
44 45
        <el-form-item label="国外银行扣费(涉外收入申报专用)" label-width="60%">
          <c-input v-model="model.bopmod.outchargeccy" :disabled="true"></c-input>
taojinrui committed
46 47 48 49
        </el-form-item>
      </c-col>

      <c-col :span="12">
50 51
        <c-input-currency v-model="model.bopmod.outchargeamt" style="text-align: right"
          placeholder="请输入国外银行扣费(涉外收入申报专用)" :disabled="
taojinrui committed
52 53 54
            !model.bopmod.basflg ||
            model.bopmod.szflg === '2' ||
            model.bopmod.szflg === '3'
55
          " @keyup.enter.native="
taojinrui committed
56
            defaultFunction('bopmod.outchargeamt', model.bopmod.outchargeamt)
57
          "></c-input-currency>
taojinrui committed
58 59
      </c-col>
    </c-col>
chenzhaole committed
60 61 62
  </div>
</template>
<script>
taojinrui committed
63
import Api from "~/service/Api";
wangren committed
64
import commonProcess from "~/mixin/commonProcess";
taojinrui committed
65 66
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptati/Event";
chenzhaole committed
67 68

export default {
taojinrui committed
69 70 71 72
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
73
    return {
74
      ownextkey: []
75
    };
taojinrui committed
76 77
  },
  methods: { ...Event },
78
  created: function () { },
taojinrui committed
79
};
chenzhaole committed
80 81
</script>
<style>
82

chenzhaole committed
83
</style>