index.vue 3.85 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<template>
  <c-page title="出口托收闭卷">
    <div class="eContainer">
      <el-form
        :model="model"
        :rules="rules"
        ref="modelForm"
        label-width="120px"
        label-position="left"
        size="small"
        :validate-on-rule-change="false"
      >
        <c-tabs v-model="tabVal" ref="elment" type="card" @tab-click="tabClick">
          <!--业务信息 -->
          <el-tab-pane label="业务信息" name="ovwp">
            <c-content>
              <m-ovwp :model="model" :codes="codes" />
            </c-content>
          </el-tab-pane>

panziyi committed
21
         <el-tab-pane label="表外记账" name="engp">
22
            <c-content>
panziyi committed
23 24 25 26 27 28 29 30 31 32 33 34 35
              <!-- 表外记账 -->
              <m-engp :model="model" :codes="codes" />
            </c-content>
          </el-tab-pane>

          <!--PD000027 -->
          <el-tab-pane label="费用/账务" name="setmod">
            <c-content>
              <m-setmod
                  :model="model"
                  :codes="codes"
                  @changeSetmodModel="changeSetmodModel"
              />
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
            </c-content>
          </el-tab-pane>

            <!--备查/附言 -->
           <el-tab-pane label="备查/附言" name="coninfp">
              <c-content>
                <m-coninfp :model="model" :codes="codes"/>
              </c-content>
           </el-tab-pane>
 
            <!--报文和面函 -->
           <el-tab-pane label="报文/面函" name="docpan">
             <c-content>
               <m-docpan :model="model" :codes="codes"/>
             </c-content>
           </el-tab-pane>
 
            <!--附件 -->
           <el-tab-pane label="附件信息" name="doctre">
             <c-content>
               <m-doctre :model="model" :codes="codes"/>
             </c-content>
           </el-tab-pane>
        </c-tabs>
      </el-form>

      <c-grid-ety-prompt-dialog
panziyi committed
63 64 65 66 67
          ref="etyDialog"
          :promptData="promptData"
          @select-ety="selectGridEtyPromptData"
      >
      </c-grid-ety-prompt-dialog>
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
      <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> -->
  </c-function-btn>
    </div>
  </c-page>
</template>
<script>
import Api from "~/service/Api";
import Utils from "~/utils/index";
import CodeTable from "~/config/CodeTable";
panziyi committed
88 89
import Botcan from "../model"
import formRules from '../model/check'
90
import Canp from "./Canp";
panziyi committed
91 92 93 94 95 96 97
import Doctre from "~/components/business/doctre/views";
import Setmod from "~/components/business/setmod/views";
import Docpan from "~/components/business/docpan/views"
import Coninfp from "~/components/business/coninfp/views";
import Engp from "~/components/business/engp/views";
import Glepan from "~/components/business/glentry/views";
import Ovwp from "./Ovwp"
98 99


100
import event from "../event";
panziyi committed
101
import operationFunc from "@/mixin/operationFunc";
102

103 104 105 106
export default {
  name: "Botcan",
  components: {
    "m-canp": Canp,
panziyi committed
107
    "m-setmod": Setmod,
108 109 110 111 112 113 114 115 116 117 118 119
    "m-coninfp": Coninfp,
    "m-docpan": Docpan,
    "m-doctre": Doctre,
    "m-engp": Engp,
    "m-glepan" : Glepan,
    "m-ovwp" : Ovwp,
  },
  provide() {
    return {
      root: this,
    };
  },
panziyi committed
120
  mixins: [operationFunc,event], // 里面包含了Default、Check等的公共处理
121 122 123 124 125
  data() {
    return {
      tabVal: "ovwp",
      trnName: "botcan",
      model: new Botcan().data,
panziyi committed
126
      rules: formRules,
127 128 129 130 131 132 133
      codes: { ...CodeTable },
      activeNames: ["engp"],
    };
  },
  methods: {
    // tabClick() {},
  },
134 135
  mounted () {
    this.init()
136 137 138 139
  },
};
</script>
<style></style>