Wg.vue 3.85 KB
Newer Older
jianglong committed
1
<template>
LiRui committed
2 3 4 5
  <div class="eibs">
    <c-col :span="24">
      <c-col :span="12" style="padding-right: 20px;">
        <el-form-item label="申报类型" label-width="120px">
wangna committed
6
          <c-select
wangna committed
7 8 9 10 11 12 13
            :disabled="
              !(
                (model.bpdgrp.rec.fintyp == 'F' ||
                  model.bpdgrp.rec.fintyp == 'U') &&
                model.bpdgrp.rec.pnttyp != ''
              )
            "
LiRui committed
14
            @change="selectOrCheckboxRule('bopmod.szflg')"
wangna committed
15 16 17
            v-model="model.bopmod.szflg"
            style="width: 100%"
            placeholder="请选择申报类型"
LiRui committed
18
            :code="getValues('bopmod.szflg','szflg1')"
wangna committed
19 20 21
          >
          </c-select>
        </el-form-item>
LiRui committed
22
       </c-col>
jianglong committed
23

LiRui committed
24 25 26 27
       <c-col :span="12" style="padding-left: 20px;"> 
        <c-col :span="24">                       
          <c-col :span="8">
          <c-checkbox style="float:left"
wangna committed
28 29 30 31 32
          :disabled="
            model.bopmod.szflg == '' ||
            model.bopmod.szflg == '3' ||
            model.bopmod.szflg == '4'
          "
33 34 35 36
          v-model="model.bopmod.basflg"
        >
          基础数据
        </c-checkbox>
LiRui committed
37 38 39 40 41 42 43 44 45 46
          </c-col> 
                      
          <c-col :span="8">
          <c-checkbox v-model="model.bopmod.dclflg" v-show="dclflgShow">申报数据</c-checkbox>
          </c-col> 
                      
          <c-col :span="8">
          <c-checkbox v-model="model.bopmod.vrfflg" v-show="vrfflgShow">核销数据</c-checkbox>
          </c-col> 
        </c-col>
wangna committed
47
      </c-col>
LiRui committed
48 49 50
    </c-col>                                 
                                   
    <c-col :span="12" style="padding-right: 20px;">
LiRui committed
51
      <c-col :span="24">
LiRui committed
52 53
      <el-form-item label="款项来源" prop="bopmod.acttyp" label-width="120px">
        <c-select
wangna committed
54
            :disabled="model.bopmod.szflg != '1'"
LiRui committed
55 56 57 58
            v-model="model.bopmod.acttyp"
            style="width: 100%"
            placeholder="请选择款项来源"
            :code="codes.acttyp"
wangna committed
59
          >
LiRui committed
60
          </c-select>
LiRui committed
61
      </el-form-item>
LiRui committed
62
      </c-col>
wangna committed
63

LiRui committed
64 65 66
      <c-col :span="24">
        <el-form-item label="地区机构号" prop="bopmod.ownextkey">
          <c-select
wangna committed
67
            :disabled="model.bopmod.szflg != '1' && model.bopmod.szflg != '2'"
LiRui committed
68 69 70 71 72 73 74
            v-model="model.bopmod.ownextkey"
            style="width: 100%"
            placeholder="请选择地区机构号"
          >
          </c-select>
        </el-form-item>
      </c-col>
LiRui committed
75 76 77 78

      <c-col :span="24">
        <c-col :span="13">
          <el-form-item
wangna committed
79 80 81 82
          label="国外银行扣费(涉外收入申报专用)"
          prop="bopmod.outchargeccy"
        >
          <c-select
83
            disabled
wangna committed
84 85 86 87 88
            v-model="model.bopmod.outchargeccy"
            style="width: 100%"
            placeholder="请选择国外银行扣费(涉外收入申报专用)"
          >
          </c-select>
jianglong committed
89
        </el-form-item>
LiRui committed
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
        </c-col>
        
        <c-col :span="11">
          <el-form-item label="" prop="bopmod.outchargeamt" label-width="5px">
            <c-input-currency
              :disabled="
                !(model.bopmod.szflg == '1' && model.bopmod.basflg != '')
              "
              v-model="model.bopmod.outchargeamt"
              placeholder="请输入国外银行扣费(涉外收入申报专用)"  
              style="text-align: right;" 
              ></c-input-currency>
          </el-form-item>
          
        </c-col>
wangna committed
105
      </c-col>
LiRui committed
106 107
    </c-col>
   
wangna committed
108
  </div>
jianglong committed
109 110 111
</template>

<script>
wangna committed
112
import Api from "~/service/Api";
jianglong committed
113
import commonProcess from "~/mixin/commonProcess";
wangna committed
114 115
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bptopn/Event";
jianglong committed
116 117 118
import Utils from "~/utils";

export default {
wangna committed
119 120 121 122 123 124 125 126 127 128 129
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: {
    ...Event,
  },
  created: function () {},
};
jianglong committed
130 131 132 133
</script>

<style>
</style>