Cnyp.vue 2.72 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
Wuyuqiu committed
3 4 5 6
    <c-col :span="12">
      <!-- S0000042 : 是否报送跨境人民币2101表 -->

      <c-col :span="24">
7
        <el-form-item label="是否报送跨境人民币2101表" prop="cnybop.cnyflg">
Wuyuqiu committed
8 9 10 11 12 13 14 15
          <c-select
            v-model="model.cnybop.cnyflg"
            style="width: 100%"
            placeholder="请输入是否报送跨境人民币2101表 "
            :code="codes.cnyflg"
            disabled  
          >
          </c-select>
16
        </el-form-item>
Wuyuqiu committed
17 18 19 20
      </c-col>
      <!-- S0000045 : 是否报送跨境人民币2107表 -->

      <c-col :span="24">
21
        <el-form-item label="是否报送跨境人民币2107表" prop="cnybop.traflg">
Wuyuqiu committed
22 23 24 25 26 27 28 29
          <c-select
            v-model="model.cnybop.traflg"
            style="width: 100%"
            placeholder="请输入是否报送跨境人民币2107表"
            :code="codes.cnyflg"
            disabled
          >
          </c-select>
30
        </el-form-item>
Wuyuqiu committed
31 32 33 34
      </c-col>
      <!-- S0000077 : 是否报送跨境人民币2111表 -->

      <c-col :span="24">
35
        <el-form-item label="是否报送跨境人民币2111表" prop="cnybop.outflg">
Wuyuqiu committed
36 37 38 39 40 41 42 43
          <c-select
            v-model="model.cnybop.outflg"
            style="width: 100%"
            placeholder="请输入是否报送跨境人民币2111表"
            :code="codes.cnyflg"
            disabled
          >
          </c-select>
44
        </el-form-item>
Wuyuqiu committed
45 46 47 48
      </c-col>
      <!-- S0000113 : 是否报送跨境人民币2106表 -->

      <c-col :span="24">
49
        <el-form-item label="是否报送跨境人民币2106表" prop="cnybop.libflg">
Wuyuqiu committed
50 51 52 53 54 55 56
          <c-select
            v-model="model.cnybop.libflg"
            style="width: 100%"
            placeholder="请输入是否报送跨境人民币2106表"
            :code="codes.cnyflg"
          >
          </c-select>
57
        </el-form-item>
Wuyuqiu committed
58 59 60 61
      </c-col>
      <!-- S0000142 : 是否报送跨境人民币2122表 -->

      <c-col :span="24">
62
        <el-form-item label="是否报送跨境人民币2122表" prop="cnybop.vouflg">
Wuyuqiu committed
63 64 65 66 67 68 69 70
          <c-select
            v-model="model.cnybop.vouflg"
            style="width: 100%"
            placeholder="请输入是否报送跨境人民币2122表"
            :code="codes.cnyflg"
            disabled
          >
          </c-select>
71
        </el-form-item>
Wuyuqiu committed
72 73
      </c-col>
    </c-col>
74 75 76
  </div>
</template>
<script>
Wuyuqiu committed
77
import Api from "~/service/Api";
78
import commonProcess from "~/mixin/commonProcess";
Wuyuqiu committed
79 80
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Lttopn/Event";
81 82

export default {
Wuyuqiu committed
83 84 85 86 87 88 89 90 91
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
92 93 94
</script>
<style>
</style>