BopctyInfo.vue 1.83 KB
Newer Older
huangxin committed
1 2 3
<template>
    <div class="eibs-tab">
<c-col :span="12" class="col-left">
huangxin committed
4 5
	<!-- <c-col :span="24">
        <el-form-item label="ID" prop="inrBopcty">
huangxin committed
6 7
            <c-input
                v-model="model.inrBopcty"
huangxin committed
8
                placeholder="请输入ID"
huangxin committed
9 10 11
            >
            </c-input>
        </el-form-item>
huangxin committed
12
    </c-col> -->
huangxin committed
13
	<c-col :span="24">
huangxin committed
14
        <el-form-item label="国家编号" prop="codBopcty">
huangxin committed
15 16
            <c-input
                v-model="model.codBopcty"
huangxin committed
17
                placeholder="请输入国家编号"
huangxin committed
18 19 20 21 22
            >
            </c-input>
        </el-form-item>
    </c-col>
	<c-col :span="24">
huangxin committed
23
        <el-form-item label="Numcod" prop="numcodBopcty">
huangxin committed
24 25
            <c-input
                v-model="model.numcodBopcty"
huangxin committed
26
                placeholder="请输入Numcod"
huangxin committed
27 28 29 30 31 32 33
            >
            </c-input>
        </el-form-item>
    </c-col>
</c-col>
<c-col :span="12" class="col-right">
	<c-col :span="24">
huangxin committed
34
        <el-form-item label="国家简称" prop="txtBopcty">
huangxin committed
35 36
            <c-input
                v-model="model.txtBopcty"
huangxin committed
37
                placeholder="请输入国家简称"
huangxin committed
38 39 40 41 42
            >
            </c-input>
        </el-form-item>
    </c-col>
	<c-col :span="24">
huangxin committed
43
        <el-form-item label="国家全称" prop="fultxtBopcty">
huangxin committed
44 45
            <c-input
                v-model="model.fultxtBopcty"
huangxin committed
46
                placeholder="请输入国家全称"
huangxin committed
47 48 49 50
            >
            </c-input>
        </el-form-item>
    </c-col>
huangxin committed
51 52
	<!-- <c-col :span="24">
        <el-form-item label="Version" prop="verBopcty">
huangxin committed
53 54
            <c-input
                v-model="model.verBopcty"
huangxin committed
55
                placeholder="请输入Version"
huangxin committed
56 57 58
            >
            </c-input>
        </el-form-item>
huangxin committed
59
    </c-col> -->
huangxin committed
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
</c-col>
 </div>
</template>

<script>
export default {
  name: "",
  props: ["model"],
  data() {
    return {};
  },
};
</script>

<style>
</style>