Wg.vue 3.05 KB
Newer Older
chenzhaole committed
1
<template>
2
  <div class="eibs">
LiRui committed
3
    <c-col :span="12" style="padding-right: 20px;">
4
      <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>
33

34
      <c-col :span="24">
LiRui committed
35 36 37 38 39
        <c-col :span="12">
          <el-form-item label="国外银行扣费(涉外收入申报专用)" label-width="120px">
            <c-input v-model="model.bopmod.outchargeccy" :disabled="true"></c-input>
          </el-form-item>
        </c-col>
taojinrui committed
40

LiRui committed
41 42 43 44 45 46 47 48 49 50 51 52 53 54
        <c-col :span="12">
          <el-form-item label-width="5px">
            <c-input-currency v-model="model.bopmod.outchargeamt" style="text-align: right"
              placeholder="请输入国外银行扣费(涉外收入申报专用)" :disabled="
                !model.bopmod.basflg ||
                model.bopmod.szflg === '2' ||
                model.bopmod.szflg === '3'
              " @keyup.enter.native="
                defaultFunction('bopmod.outchargeamt', model.bopmod.outchargeamt)
              "></c-input-currency>

          </el-form-item>
            
        </c-col>
taojinrui committed
55
      </c-col>
LiRui committed
56
    </c-col>
taojinrui committed
57

LiRui committed
58 59
    <c-col :span="12" style="padding-left: 20px;">
      <c-col :span="14">
60
        <c-checkbox style="float: left;" v-model="model.bopmod.basflg" :disabled="model.bopmod.szflg==='3'||model.bopmod.szflg===''">基础数据
LiRui committed
61
        </c-checkbox>
taojinrui committed
62 63
      </c-col>
    </c-col>
LiRui committed
64 65

    
chenzhaole committed
66 67 68
  </div>
</template>
<script>
taojinrui committed
69
import Api from "~/service/Api";
wangren committed
70
import commonProcess from "~/mixin/commonProcess";
taojinrui committed
71 72
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptati/Event";
chenzhaole committed
73 74

export default {
taojinrui committed
75 76 77 78
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
79
    return {
80
      ownextkey: []
81
    };
taojinrui committed
82 83
  },
  methods: { ...Event },
84
  created: function () { },
taojinrui committed
85
};
chenzhaole committed
86 87
</script>
<style>
88

chenzhaole committed
89
</style>