liangweifeng 6 years ago
parent
commit
0fed73d662

+ 1 - 1
page/bigDataOut/css/zidian.css

@ -2,7 +2,7 @@ body {
    margin: 0;
    height: 100%;
    background-color: #fff;
    overflow-y: hidden;
    /* overflow-y: hidden; */
}
html {

+ 0 - 6
page/bigDataOut/html/zidian.html

@ -15,7 +15,6 @@
    <div id="app" >
        <nav class="header">
            <span id="text">查看字典</span>
            <span id="close" @click='windowClose'>X</span>
        </nav>
        <el-container style="height: 100%;">
            <el-aside style="width: 200px; ">
@ -83,11 +82,6 @@
                this.code = 'TD_LAB_EXAM_TYPE',
                    this.initData()
            },
                windowClose: function () {
                    top.layer.close(top.layer.getFrameIndex(window.name))
                },
                handleCurrentChange: function (val) {
                    this.currentPage = val;
                    this.getData()

+ 2 - 1
page/bigDataOut/js/handleChangeViewA.js

@ -84,7 +84,8 @@ Vue.component('comA', {
                console.log(res)
                GlobalEventBus.$emit('setLoading');
                vm.tableData = res.detailModelList;
                vm.total = res.totalCount;
                debugger
                vm.total = res.detailModelList.length;
            }).catch(function (err) {
                console.log(err)
                GlobalEventBus.$emit('setLoading');

+ 1 - 2
page/bigDataOut/js/handleChangeViewB.js

@ -185,9 +185,8 @@ Vue.component('comB', {
                console.log(res)
                GlobalEventBus.$emit('setLoading');
                vm.tableData = res.detailModelList;
                vm.total = res.totalCount;
                vm.total = res.detailModelList.length;
                var obj = res.obj;
                vm.getFeiYongStr(obj)
                console.log(obj)
            }).catch(function (err) {

+ 2 - 2
page/bigDataOut/js/handleChangeViewC.js

@ -88,7 +88,8 @@ methods: {
            console.log(res)
            GlobalEventBus.$emit('setLoading');
            vm.tableData = res.detailModelList;
            vm.total = res.totalCount;
            vm.total = res.detailModelList.length;
          
        }).catch(function (err) {
            console.log(err)
            GlobalEventBus.$emit('setLoading');
@ -124,7 +125,6 @@ methods: {
        id:'Lay_zidian',
        type:2,
        title:false,
        closeBtn:0,
        shade:0.5,
        shadeClose:true,
        area:[width,height],

+ 1 - 2
page/bigDataOut/js/handleChangeViewD.js

@ -118,8 +118,7 @@ Vue.component('comD',{
                console.log(res)
                GlobalEventBus.$emit('setLoading');
                vm.tableData = res.detailModelList;
                vm.total = res.totalCount; 
                debugger
                vm.total = res.detailModelList.length;
                vm.tableData = vm.tableData.map(function(item){
                    item.event_date = new Date(item.event_date).format('yyyy-MM-dd-hh-mm-ss')
                    return item;