提交 28f8e89b 编写于 作者: vino's avatar vino

外呼列表的导出按钮隐藏掉

上级 675ca357
......@@ -236,6 +236,7 @@
<script>
let vm = null;
import {updateDiagnosis} from "../../../utils/diagnosis";
import { base64decode } from "../../../utils/utils.js";
const DOWN_URL= '/diagnose/admin/diagnose/export';
const LIST_URL= '/diagnose/admin/diagnose/list';
const DEP_URL= '/hospital/departments/0'
......@@ -366,7 +367,16 @@ export default {
},
methods: {
init(){
this.fromType = +(this.$route.query.fromType || 1);
let fullPath = this.$route.fullPath;
let fromType = 1;
if(fullPath.indexOf("?") > -1){
let str = base64decode(fullPath.split("?")[1]);
if(str.indexOf("?")){
fromType = str.split("=")[1];
}
}
// this.fromType = +(this.$route.query.fromType || 1);
this.fromType = fromType;
this.activeName = "99";
this.searchParam.status = '';
this.setTable();
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册