Commit e2cb4d07 by lianyang

Bttdrv检核/暂存/提交按钮无效bug解决,导入~/mixin/commonFuncs

parent 0a2f1e63
<template>
<div class="eContainer">
<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>
<c-page title="转让信用证修改单据金额">
<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">
......@@ -67,6 +54,12 @@
</c-tabs>
</el-form>
<c-function-btn
:handleSubmit="handleSubmit"
:handleCheck="handleCheck"
:handleStash="handleStash"
>
</c-function-btn>
<c-grid-ety-prompt-dialog
ref="etyDialog"
:promptData="promptData"
......@@ -81,6 +74,7 @@
@select-ety="selectMsg"
>
</c-grid-ety-prompt-dialog>
</c-page>
</div>
</template>
<script>
......@@ -88,6 +82,7 @@ import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
import Bttdrv from "~/model/Bttdrv"
import commonProcess from "~/mixin/commonProcess"
import commonFuncs from "~/mixin/commonFuncs";
import Check from "~/model/Bttdrv/Check"
import Default from "~/model/Bttdrv/Default"
import Pattern from "~/model/Bttdrv/Pattern"
......@@ -120,7 +115,7 @@ export default {
root: this
}
},
mixins: [commonProcess], // 里面包含了Default、Check等的公共处理
mixins: [commonProcess, commonFuncs], // 里面包含了Default、Check等的公共处理
data(){
return {
tabVal: "drv",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment