Cnyp1.vue 3.79 KB
Newer Older
Wuyuqiu committed
1 2 3
<template>
  <div class="eibs">
    <c-row>
Wuyuqiu committed
4
      <c-col :span="12">
Wuyuqiu committed
5
          <c-col :span="24">
Wuyuqiu committed
6
            <el-form-item label="是否报送跨境人民币2101表" prop="cnybop.cnyflg" label-width="167px;">
Wuyuqiu committed
7 8 9
              <c-select
                disabled
                v-model="model.cnybop.cnyflg"
Wuyuqiu committed
10
                style="width: 70%"
Wuyuqiu committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24
                placeholder="请选择是否报送跨境人民币2101表"
              >
                <el-option
                  v-for="item in codes.cnyflg"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>

          <c-col :span="24">
Wuyuqiu committed
25
            <el-form-item label="是否报送跨境人民币2107表" prop="cnybop.traflg" label-width="167px;">
Wuyuqiu committed
26 27 28
              <c-select
                disabled
                v-model="model.cnybop.traflg"
Wuyuqiu committed
29
                style="width: 70%"
Wuyuqiu committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43
                placeholder="请选择是否报送跨境人民币2107表"
              >
                <el-option
                  v-for="item in codes.traflg"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>

          <c-col :span="24">
Wuyuqiu committed
44
            <el-form-item label="是否报送跨境人民币2111表" prop="cnybop.outflg" label-width="167px;">
Wuyuqiu committed
45 46 47
              <c-select
                disabled
                v-model="model.cnybop.outflg"
Wuyuqiu committed
48
                style="width: 70%"
Wuyuqiu committed
49 50 51 52 53 54 55 56 57 58 59 60
                placeholder="请选择是否报送跨境人民币2111表"
              >
                <el-option
                  v-for="item in codes.outflg"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
Wuyuqiu committed
61

Wuyuqiu committed
62
          <c-col :span="24">
Wuyuqiu committed
63
            <el-form-item label="是否报送跨境人民币2106表" prop="cnybop.libflg" label-width="167px;">
Wuyuqiu committed
64 65 66
              <c-select
                disabled
                v-model="model.cnybop.libflg"
Wuyuqiu committed
67
                style="width: 70%"
Wuyuqiu committed
68 69 70 71 72 73 74 75 76 77 78 79 80 81
                placeholder="请选择是否报送跨境人民币2106表"
              >
                <el-option
                  v-for="item in codes.libflg"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>

          <c-col :span="24">
Wuyuqiu committed
82
            <el-form-item label="是否报送跨境人民币2122表" prop="cnybop.vouflg" label-width="167px;">
Wuyuqiu committed
83 84 85
              <c-select
                :disabled="model.gidgrp.rec.fingua != 'Y'"
                v-model="model.cnybop.vouflg"
Wuyuqiu committed
86
                style="width: 70%"
Wuyuqiu committed
87 88 89 90 91 92 93 94 95 96 97 98
                placeholder="请选择是否报送跨境人民币2122表"
              >
                <el-option
                  v-for="item in codes.vouflg"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
Wuyuqiu committed
99
        
Wuyuqiu committed
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
      </c-col>
    </c-row>
  </div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitopn/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>