Mt759p.vue 3.04 KB
Newer Older
WF1020 committed
1 2
<template>
  <div class="eibs-tab">
WF1020 committed
3 4 5 6 7 8 9 10
    <!-- SF000256 : Form of Undertaking -->
    <c-col :span="12" style="padding-right: 20px">     
      <c-col :span="24">
      <el-form-item label="承诺形式" prop="fremsg.tag22d">
        <c-select v-model="model.fremsg.tag22d" style="width:100%" :code="codes.legfrm3" placeholder="">
        </c-select>
      </el-form-item>
    </c-col>
WF1020 committed
11
        <!-- SF000257 : Undertaking Number -->
WF1020 committed
12 13 14 15 16
    <c-col :span="24">
      <c-form-item label="企业编号" prop="fremsg.tag23">
      <c-input  v-model="model.fremsg.tag23" maxlength="16"  placeholder=""></c-input>
      </c-form-item>
    </c-col>
WF1020 committed
17
        <!-- SF000258 : Issuer of Undertak. -->
WF1020 committed
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
    <c-col :span="24">
      <el-form-item label="发行人" prop="fremsg.issrol">
        <c-select v-model="model.fremsg.issrol" style="width: 100%" placeholder="请选择发行人" :code="codes.payrol">
        <!-- <el-option v-for="item in codes.docprbrol" :key="item.value" :label="item.label" :value="item.value">
        </el-option> -->
        </c-select>
      </el-form-item>
    </c-col>
    <c-col :span="24">
      <el-form-item label="" prop="fremsg.iss.pts.extkey">
        <c-fullbox>
          <c-input v-model="model.fremsg.iss.pts.extkey" maxlength="16" placeholder="请输入"
            :disabled="model.fremsg.issrol!=''"
            @keyup.enter.native="
              showGridPromptDialog('fremsg.iss.pts.extkey')
            "></c-input>
          <template slot="footer">
            <c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary"
              >
              <i class="el-icon-info"></i>
            </c-button>
            <c-button style="margin: 0 0" size="small" type="primary">
              详情
            </c-button>
          </template>
        </c-fullbox>
      </el-form-item>
    </c-col>
    <c-col :span="24">
      <el-form-item label="" prop="fremsg.iss.pts.adrblk">
        <c-input :rows="4" type="textarea" v-model="model.fremsg.iss.pts.adrblk"
          :disabled="model.fremsg.issrol!=''"
          maxlength="300" show-word-limit placeholder="请输入">
        </c-input>
      </el-form-item>
    </c-col>
WF1020 committed
54
        <!-- SF000259 : Function -->
WF1020 committed
55 56 57 58 59 60 61 62 63 64 65 66 67
    <c-col :span="24">
      <el-form-item label="功能" prop="fremsg.tag23h">
        <c-select v-model="model.fremsg.tag23h" style="width:100%" :code="codes.tag23h" placeholder="">
          </c-select>
      </el-form-item>
    </c-col>
  <!-- SF000260 : Details of Request -->
    <c-col :span="24">
      <c-form-item label="请求的详细信息" prop="fremsg.tag45d">
        <c-input type="textarea" v-model="model.fremsg.tag45d" :code="tag45d" :rows="5" maxlength="65" show-word-limit placeholder="" ></c-input>
      </c-form-item>
    </c-col>
  </c-col>
WF1020 committed
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
  </div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
import event from '../event'
export default {
  inject: ['root'],
  props:["model","codes"],
  mixins: [event],
  data(){
    return {  
    }
  },
  methods:{ },
  created:function(){  }
}
</script>
<style>

</style>