Ptyp.vue 3.39 KB
Newer Older
孟冬雪 committed
1
<template>
2
  <div class="eibs">
3
    <!-- left -->
Wuyuqiu committed
4
    <c-col :span="12" style="padding-right: 20px;">
孟冬雪 committed
5 6 7 8
      <c-col :span="24">
        <c-ptap
          :model="model"
          :argadr="{
wangna committed
9
            title: '第二通知行',
孟冬雪 committed
10 11 12 13
            grp: 'ltdgrp',
            rol: 'a2t',
          }"
          @onSeainf="onSeainf"
14
          @onAplpDet="onAdvpDet"
孟冬雪 committed
15 16 17
        >
        </c-ptap>
      </c-col>
18

孟冬雪 committed
19 20 21 22
      <c-col :span="24">
        <c-ptap
          :model="model"
          :argadr="{
wangna committed
23
            title: '保兑行',
孟冬雪 committed
24 25 26 27
            grp: 'ltdgrp',
            rol: 'con',
          }"
          @onSeainf="onSeainf"
28 29 30 31
          @onAplpDet="onA2bpDet"
          disabled
          :disabledRef="true"
          :disabledExtkey="true"
孟冬雪 committed
32 33 34
        >
        </c-ptap>
      </c-col>
35

孟冬雪 committed
36
    </c-col>
37 38

    <!-- right -->
Wuyuqiu committed
39
    <c-col :span="12" style="padding-left: 20px;">
孟冬雪 committed
40 41 42 43
      <c-col :span="24">
        <c-ptap
          :model="model"
          :argadr="{
wangna committed
44
            title: '偿付行',
孟冬雪 committed
45 46 47 48
            grp: 'ltdgrp',
            rol: 'rmt',
          }"
          @onSeainf="onSeainf"
49 50 51 52 53
          @onAplpDet="onApbpDet"
          disabled
          :disabledRef="true"
          :disabledExtkey="true"
          
孟冬雪 committed
54 55 56
        >
        </c-ptap>
      </c-col>
57

孟冬雪 committed
58 59 60 61
      <c-col :span="24">
        <c-ptap
          :model="model"
          :argadr="{
wangna committed
62
            title: '指定银行',
孟冬雪 committed
63 64 65 66
            grp: 'ltdgrp',
            rol: 'avt',
          }"
          @onSeainf="onSeainf"
67 68 69 70
          @onAplpDet="onRmbpDet"
          disabled
          :disabledRef="true"
          :disabledExtkey="true"
孟冬雪 committed
71 72 73 74
        >
        </c-ptap>
      </c-col>

75 76 77 78 79
    </c-col>
    <!-- =============================底部表格========================= -->
    <c-col :span="23" style="height: 24px; margin-left: 9px">
      <el-form-item
        class="formItemLabel"
wangna committed
80
        label="其他当事人"
81 82 83
        label-width="300px"
      >
      </el-form-item>
孟冬雪 committed
84 85 86 87 88 89 90 91 92 93 94 95 96
    </c-col>
    <c-edit-table :model="model" v-bind="ptsaddg">
      <el-table-column label="操作" align="center">
        <template slot-scope="scope">
          <el-button
            size="mini"
            @click="handleEdit(scope.$index, scope.row)"
            type="primary"
            >详情</el-button
          >
        </template>
      </el-table-column>
    </c-edit-table>
97
  </div>
孟冬雪 committed
98 99
</template>
<script>
100
import Api from "~/service/Api"
wangren committed
101
import commonProcess from "~/mixin/commonProcess";
102 103
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Lttame/Event"
孟冬雪 committed
104
import Ptap from "~/views/Public/Ptap";
105

孟冬雪 committed
106
export default {
107
  components: { "c-ptap": Ptap },
孟冬雪 committed
108 109
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
110
  mixins: [commonProcess],
孟冬雪 committed
111
  data() {
孟冬雪 committed
112
    return {
113
        ptsaddg: {
孟冬雪 committed
114 115
        columns: [
          {
wangna committed
116
            title: "角色",
孟冬雪 committed
117 118 119 120 121
            width: "120px",
            dataIndex: "rol",
            show: "select",
          },
          {
wangna committed
122
            title: "当事人",
孟冬雪 committed
123 124 125 126 127
            width: "180px",
            dataIndex: "ptyextkey",
            show: "input",
          },
          {
wangna committed
128
            title: "当事人名称",
孟冬雪 committed
129 130 131 132
            width: "300px",
            dataIndex: "nam",
          },
          {
wangna committed
133
           title: "地址编号",
孟冬雪 committed
134 135 136 137 138 139 140
            width: "300px",
            dataIndex: "ref",
          },
        ],
        urls: "lttp.ptsaddp.ptsaddg",
      },
    };
孟冬雪 committed
141
  },
142 143 144 145
  methods: { ...Event,
  handleEdit() {
      console.log("1111测试");
    }, },
孟冬雪 committed
146 147 148 149
  created: function () {},
};
</script>
<style>
150

孟冬雪 committed
151
</style>