index.vue 6.38 KB
Newer Older
wuziqiang committed
1 2
<template>
  <div class="eContainer">
liuxin committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
    <!-- <c-bus-button :$pntvm="this"></c-bus-button> -->
    <c-function-btn
      :handleSubmit="handleSubmit"
      :handleCheck="handleCheck"
      :handleStash="handleStash"
    >
      <el-button size="small">流程附言</el-button>
      <el-button size="small">交易历史</el-button>
      <el-button size="small">备忘录</el-button>
      <el-button size="small">影像信息</el-button>
      <!-- <el-button size="small">保存模板</el-button> -->
      <!-- <el-button size="small">使用模板</el-button> -->
      <el-button size="small">制裁信息</el-button>
      <!-- <el-button size="small">拆分报文</el-button> -->
      <el-button size="small">智能提示</el-button>
    </c-function-btn>
19

liuxin committed
20 21 22 23 24 25 26 27 28 29
    <el-form
      :model="model"
      :rules="rules"
      ref="modelForm"
      label-width="150px"
      label-position="right"
      size="small"
      :validate-on-rule-change="false"
    >
      <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="tabClick">
liuxin committed
30 31 32 33 34 35 36

        <el-tab-pane label="修改" name="amep">
          <c-content>
            <m-amep :model="model" :codes="codes" />
          </c-content>
        </el-tab-pane>

liuxin committed
37 38 39 40 41 42
        <!--PD000017 -->
        <el-tab-pane label="基本信息" name="ovwp">
          <c-content>
            <m-ovwp :model="model" :codes="codes" />
          </c-content>
        </el-tab-pane>
43

liuxin committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
        <!--PD000494 -->
        <el-tab-pane label="其他当事人" name="detp1">
          <c-content>
            <m-detp1 :model="model" :codes="codes" />
          </c-content>
        </el-tab-pane>

        <!--PD000525 -->
        <el-tab-pane label="详细信息" name="detp2">
          <m-detp2 :model="model" :codes="codes" />
        </el-tab-pane>

        <!--PD000405 -->
        <el-tab-pane label="单据要求" name="detp">
          <m-detp :model="model" :codes="codes" />
        </el-tab-pane>

liuxin committed
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
        <el-tab-pane label="货物描述" name="dogpame">
          <m-dogpame :model="model" :codes="codes" />
        </el-tab-pane>

        <el-tab-pane label="单据修改" name="dorpame">
          <m-dorpame :model="model" :codes="codes" />
        </el-tab-pane>

        <el-tab-pane label="其他条款修改" name="adcpame">
          <m-adcpame :model="model" :codes="codes" />
        </el-tab-pane>

        <el-tab-pane label="指示" name="inspame">
          <m-inspame :model="model" :codes="codes" />
        </el-tab-pane>

liuxin committed
77 78 79 80 81 82
        <!--PD000000 -->
        <el-tab-pane label="费用及账务" name="setpan">
          <c-content>
            <m-setpan :model="model" :codes="codes" />
          </c-content>
        </el-tab-pane>
83

liuxin committed
84 85 86
        <el-tab-pane label="分录" name="glepan">
          <m-glepan :model="model" :codes="codes" ref="glepan" />
        </el-tab-pane>
87

liuxin committed
88 89 90 91 92 93
        <el-tab-pane label="表外" name="engp">
          <!--PD000027 -->
          <c-content>
            <m-engp :model="model" :codes="codes" />
          </c-content>
        </el-tab-pane>
94

liuxin committed
95 96 97 98
        <!--PD000000 -->
        <el-tab-pane label="附言" name="coninfp">
          <m-coninfp :model="model" :codes="codes" />
        </el-tab-pane>
99

liuxin committed
100 101 102 103
        <!--PD000529 -->
        <el-tab-pane label="报文及面函" name="docpan">
          <m-docpan :model="model" :codes="codes" />
        </el-tab-pane>
104

liuxin committed
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
        <!--PD000001 -->
        <el-tab-pane label="授信额度" name="limitbody">
          <m-limitbody :model="model" :codes="codes" />
        </el-tab-pane>

        <!--PD000548 -->
        <!--
           <el-tab-pane label="PD000548" name="stament">
                <m-stament :model="model" :codes="codes"/>
           </el-tab-pane>
            -->
        <!--PD000001 -->
        <!--
           <el-tab-pane label="PD000001" name="aamp">
                <m-aamp :model="model" :codes="codes"/>
           </el-tab-pane>
           -->
      </c-tabs>
wuziqiang committed
123
    </el-form>
liuxin committed
124 125 126 127 128 129
    <c-grid-ety-prompt-dialog
      ref="etyDialog"
      :promptData="promptData"
      v-on:select-ety="selectEty"
    >
    </c-grid-ety-prompt-dialog>
wuziqiang committed
130 131 132
  </div>
</template>
<script>
liuxin committed
133 134 135
import Api from "~/service/Api";
import Utils from "~/utils/index";
import CodeTable from "~/config/CodeTable";
liuxin committed
136
import Detame from "~/model/Detame"
liuxin committed
137 138
import commonProcess from "~/mixin/commonProcess";
import commonFuncs from "~/mixin/commonFuncs";
liuxin committed
139 140 141
import Check from "~/model/Detame/Check";
import Default from "~/model/Detame/Default";
import Pattern from "~/model/Detame/Pattern";
liuxin committed
142 143 144 145 146 147
import Ovwp from "./Ovwp";
import Detp from "./Detp";
import Detp1 from "./Detp1";
import Detp2 from "./Detp2";
import Stament from "./Stament";
import Aamp from "./Aamp";
wuziqiang committed
148

liuxin committed
149 150 151 152 153 154
import Amep from "./Amep";
import Dogpame from "./Dogpame";
import Dorpame from "./Dorpame";
import Adcpame from "./Adcpame";
import Inspame from "./Inspame";

155 156 157 158 159 160 161
import Setpan from "~/views/Public/Setpan";
import Glepan from "~/views/Public/Glepan";
import Engp from "~/views/Public/Engp";
import Coninfp from "~/views/Public/Coninfp";
import Docpan from "~/views/Public/Docpan";
import Limitbody from "~/views/Public/Limitbody";

wuziqiang committed
162
export default {
liumin committed
163
  name: "Detame",
liuxin committed
164 165 166 167 168 169 170 171 172 173 174 175 176
  components: {
    "m-ovwp": Ovwp,
    "m-detp": Detp,
    "m-detp1": Detp1,
    "m-detp2": Detp2,
    "m-stament": Stament,
    "m-aamp": Aamp,
    "m-setpan": Setpan,
    "m-glepan": Glepan,
    "m-engp": Engp,
    "m-coninfp": Coninfp,
    "m-docpan": Docpan,
    "m-limitbody": Limitbody,
liuxin committed
177 178 179 180 181
    "m-amep": Amep,
    "m-dogpame": Dogpame,
    "m-dorpame": Dorpame,
    "m-adcpame": Adcpame,
    "m-inspame": Inspame,
liuxin committed
182 183 184 185 186 187 188
  },
  provide() {
    return {
      root: this,
    };
  },
  //  mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
wuziqiang committed
189

liuxin committed
190 191 192 193
  mixins: [commonProcess, commonFuncs], // 里面包含了Default、Check等的公共处理
  computed: {},
  data() {
    return {
liuxin committed
194
      tabVal: "amep",
liuxin committed
195 196
      trnName: "detame",
      model: new Detame().data,
liuxin committed
197 198 199 200 201 202 203 204 205 206
      checkRules: Check,
      defaultRules: Default,
      pattern: Pattern,
      rules: null,
      codes: { ...CodeTable },
    };
  },
  methods: {
  },
  created: async function () {
liuxin committed
207
    console.log("进入detame交易");
liuxin committed
208 209 210 211 212 213 214 215 216 217
    //let rtnmsg = await this.init({})
    let rtnmsg = await this.init(this.$route.query);
    if (rtnmsg.respCode == SUCCESS) {
      //更新数据
      Utils.copyValueFromVO(this.model, rtnmsg.data);
      if (this.isInDisplay) {
        this.restoreDisplay();
      }
    } else {
      this.$notify.error({ title: "错误", message: "服务请求失败!" });
wuziqiang committed
218
    }
liuxin committed
219 220
  },
};
wuziqiang committed
221 222 223
</script>
<style>
</style>