Ptyp2.vue 3.77 KB
Newer Older
wangren committed
1 2
<template>
  <div class="eibs-tab">
3 4 5 6
      <!-- 左 -->
    <c-col :span="11">

      <c-col :span="24">
wangren committed
7
        <el-form-item label="客户号" prop="recpan.epty.extkey">
8 9 10 11 12
          <c-input
            v-model="model.recpan.epty.extkey"
            maxlength="24"
            placeholder="请输入客户号"
          ></c-input>
wangren committed
13
        </el-form-item>
14 15 16 17 18 19 20 21 22
      </c-col>

      <c-col :span="24">
        <el-form-item label="组织机构代码" prop="recpan.epty.juscod">
          <c-input
            v-model="model.recpan.epty.juscod"
            maxlength="10"
            placeholder="请输入组织机构'码"
          ></c-input>
wangren committed
23
        </el-form-item>
24 25 26 27 28
      </c-col>
    </c-col>

    <c-col :span="11" :offset="1">
      <c-col :span="24">
wangren committed
29
        <el-form-item label="客户名称" prop="recpan.epty.ptynam">
30 31 32 33 34
          <c-input
            v-model="model.recpan.epty.ptynam"
            maxlength="100"
            placeholder="请输入客户名称"
          ></c-input>
wangren committed
35
        </el-form-item>
36 37 38 39 40 41 42 43
      </c-col>
      <c-col :span="24">
        <el-form-item label="外汇许可证号" prop="recpan.epty.whzno">
          <c-input
            v-model="model.recpan.epty.whzno"
            maxlength="50"
            placeholder="请输入外汇许可证号"
          ></c-input>
wangren committed
44
        </el-form-item>
45 46 47 48 49 50 51 52 53
      </c-col>
      <c-col :span="24">
        <c-button
          size="small"
          type="primary"
          @click="onEptyPtyget"
          style="float: right"
        >
          查询
wangren committed
54
        </c-button>
55 56 57 58 59 60 61 62 63 64
      </c-col>
    </c-col>


    
  <c-col :span="24">
    <c-istream-table :list="trnData.data" :columns="trnData.columns">
    </c-istream-table>
  </c-col>
    
wangren committed
65 66 67
  </div>
</template>
<script>
68
import Api from "~/service/Api";
wangren committed
69
import commonProcess from "~/mixin/commonProcess";
70 71
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Dbipty/Event";
wangren committed
72 73

export default {
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 103 104 105 106 107 108 109 110
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
      trnData: {
        columns: [
          '0 1 "客户号" 80 1 20:2 1',
          '1 2 "客户类别" 80 1 20:2 1 TransKhTyp',
          '2 3 "客户名称" 130 1 20:0 1',
          '3 4 "英文名称" 100 1 20:0 1',
          '4 5 "所属国家地区代码" 100 1 20:2 1',
          '5 6 "组织机构代码" 80 1 20:2 1',
          '6 7 "组织机构代码有效日期" 80 1 20:2 1',
          '7 8 "营业执照号" 80 1 20:2 1',
          '8 9 "外汇许可证号" 80 1 20:2 1 TransIf',
          '9 10 "企业外管代码" 100  1 20:2 1 TransIf',
          '10 11 "进出口经营权许可证书" 100 1 20:2 1',
          '11 12 "是否自贸区客户" 80 1 20:2 1 TransIf',
          '12 13 "是否正式客户" 80 1 20:2 1 TransIf',
          '13 14 "所属地区代码" 80 1 20:2 1',
          '14 15 "角色的ECIF客户号" 80 1 20:2 1',
          '15 16 "是否为光大集团股东客户" 80 1 20:2 1 TransIf',
          '16 17 "是否为光大集团关联单位" 80 1 20:2 1 TransIf',
          '17 18 "客户状态" 80 1 20:2 1 TransKhSta',
          '18 19 "是否为NRA账户" 80 1 20:2 1 TransIf',
          '19 20 "Swift编号" 80 1 20:2 1 TransIf',
          '20 21 "统一社会信用代码" 130 1 20:2 1 TransIf',
          '21 22 "金融机构类型" 180 1 20:2 1 TransFinOrg',
        ],
        data: [],
      },
    };
  },
  methods: { ...Event },
  created: function () {},
};
wangren committed
111 112 113
</script>
<style>
</style>
114 115 116 117 118 119 120 121 122 123 124 125

<!-- <c-col :span="12">
        <el-form-item label="ECIF pty info" prop="recpan.epty.eptystream">
            <c-input  v-model="model.recpan.epty.eptystream"  placeholder="请输入ECIF pty info"></c-input>
        </el-form-item>
       </c-col> -->

    <!-- <c-col :span="12">
        <c-button size="small" type="primary"  @click="onEptyPtyext">
            &Exit
        </c-button>
       </c-col> -->