Cnyp.vue 2.96 KB
Newer Older
wangna committed
1 2
<template>
  <div class="eibs-tab">
wangna committed
3 4
    <c-col :span="12">
      <c-col :span="24">
wangna committed
5 6 7 8 9 10 11 12 13 14 15 16
        <el-form-item
          label="是否报送跨境人民币2101表"
          label-width="30%"
          prop="cnybop.cnyflg"
        >
          <c-select
            v-model="model.cnybop.cnyflg"
            style="width: 100%"
            placeholder="请选择是否报送跨境人民币2101表"
            :code="codes.cnyflg"
            :disabled="model.ccdgrp.cbs.max.cur != 'CNY'"
          >
wangna committed
17
          </c-select>
wangna committed
18
        </el-form-item>
wangna committed
19 20 21
      </c-col>

      <c-col :span="24">
wangna committed
22 23 24 25 26 27 28 29 30 31 32 33
        <el-form-item
          label="是否报送跨境人民币2107表"
          label-width="30%"
          prop="cnybop.traflg"
        >
          <c-select
            v-model="model.cnybop.traflg"
            style="width: 100%"
            placeholder="请选择是否报送跨境人民币2107表"
            :code="codes.traflg"
            :disabled="true"
          >
wangna committed
34
          </c-select>
wangna committed
35
        </el-form-item>
wangna committed
36 37 38
      </c-col>

      <c-col :span="24">
wangna committed
39 40 41 42 43 44 45 46 47 48 49 50
        <el-form-item
          label="是否报送跨境人民币2111表"
          label-width="30%"
          prop="cnybop.outflg"
        >
          <c-select
            v-model="model.cnybop.outflg"
            style="width: 100%"
            placeholder="请选择是否报送跨境人民币2111表"
            :code="codes.outflg"
            :disabled="true"
          >
wangna committed
51
          </c-select>
wangna committed
52
        </el-form-item>
wangna committed
53 54 55
      </c-col>

      <c-col :span="24">
wangna committed
56 57 58 59 60 61 62 63 64 65 66 67
        <el-form-item
          label="是否报送跨境人民币2106表"
          label-width="30%"
          prop="cnybop.libflg"
        >
          <c-select
            v-model="model.cnybop.libflg"
            style="width: 100%"
            placeholder="请选择是否报送跨境人民币2106表"
            :code="codes.libflg"
            :disabled="true"
          >
wangna committed
68
          </c-select>
wangna committed
69
        </el-form-item>
wangna committed
70 71 72
      </c-col>

      <c-col :span="24">
wangna committed
73 74 75 76 77 78 79 80 81 82 83 84
        <el-form-item
          label="是否报送跨境人民币2122表"
          label-width="30%"
          prop="cnybop.vouflg"
        >
          <c-select
            v-model="model.cnybop.vouflg"
            style="width: 100%"
            placeholder="请选择是否报送跨境人民币2122表"
            :code="codes.vouflg"
            :disabled="true"
          >
wangna committed
85
          </c-select>
wangna committed
86
        </el-form-item>
wangna committed
87 88
      </c-col>
    </c-col>
wangna committed
89 90 91
  </div>
</template>
<script>
wangna committed
92
import Api from "~/service/Api";
wangna committed
93
import commonProcess from "~/mixin/commonProcess";
wangna committed
94 95
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cctset/Event";
wangna committed
96 97

export default {
wangna committed
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {
    this.model.cnybop.cnyflg = "2";
    this.model.cnybop.traflg = "2";
    this.model.cnybop.outflg = "2";
    this.model.cnybop.libflg = "2";
    this.model.cnybop.vouflg = "2";
  },
};
wangna committed
113 114 115
</script>
<style>
</style>