CtyInfo.vue 2.55 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="inr">
huangxin committed
6 7
            <c-input
                v-model="model.inr"
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="cod">
huangxin committed
15 16
            <c-input
                v-model="model.cod"
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="币种" prop="cur">
huangxin committed
24 25
            <c-input
                v-model="model.cur"
huangxin committed
26
                placeholder="请输入币种"
huangxin committed
27 28 29 30 31
            >
            </c-input>
        </el-form-item>
    </c-col>
	<c-col :span="24">
huangxin committed
32
        <el-form-item label="区域" prop="reg">
huangxin committed
33 34
            <c-input
                v-model="model.reg"
huangxin committed
35
                placeholder="请输入区域"
huangxin committed
36 37 38 39
            >
            </c-input>
        </el-form-item>
    </c-col>
huangxin committed
40 41
	<!-- <c-col :span="24">
        <el-form-item label="版本号" prop="ver">
huangxin committed
42 43
            <c-input
                v-model="model.ver"
huangxin committed
44
                placeholder="请输入版本号"
huangxin committed
45 46 47
            >
            </c-input>
        </el-form-item>
huangxin committed
48
    </c-col> -->
huangxin committed
49 50 51
</c-col>
<c-col :span="12" class="col-right">
	<c-col :span="24">
huangxin committed
52
        <el-form-item label="本国地址" prop="fmtdomadrtyp">
huangxin committed
53 54
            <c-input
                v-model="model.fmtdomadrtyp"
huangxin committed
55
                placeholder="请输入本国地址"
huangxin committed
56 57 58 59 60
            >
            </c-input>
        </el-form-item>
    </c-col>
	<c-col :span="24">
huangxin committed
61
        <el-form-item label="国际地址" prop="fmtintadrtyp">
huangxin committed
62 63
            <c-input
                v-model="model.fmtintadrtyp"
huangxin committed
64
                placeholder="请输入国际地址"
huangxin committed
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
            >
            </c-input>
        </el-form-item>
    </c-col>
	<c-col :span="24">
        <el-form-item label="dhlreg" prop="dhlreg">
            <c-input
                v-model="model.dhlreg"
                placeholder="请输入dhlreg"
            >
            </c-input>
        </el-form-item>
    </c-col>
	<c-col :span="24">
        <el-form-item label="bopcod" prop="bopcod">
            <c-input
                v-model="model.bopcod"
                placeholder="请输入bopcod"
            >
            </c-input>
        </el-form-item>
    </c-col>
</c-col>
</div>
</template>

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

<style>
</style>