gaoshp
2024-06-05 54479ac35f0097089be008ed1a0eb86751e1bf75
src/views/dnc/station-file/Log.vue
@@ -1,7 +1,7 @@
<!--
 * @Date: 2024-05-22 23:18:15
 * @LastEditors: Sneed
 * @LastEditTime: 2024-05-26 16:04:41
 * @LastEditTime: 2024-06-05 21:21:55
 * @FilePath: /belleson-frontend/Users/mache/Documents/demo/cps-web/src/views/dnc/station-file/Log.vue
-->
<template>
@@ -26,9 +26,9 @@
                <el-option v-for="item in options.typeId" :key="item.value" :label="item.label" :value="item.value" />
            </el-select>
        </el-header>
        <el-main >
            <scTable v-if="id" highlight-current-row @dataChange="dataChange" @row-click="rowClick" ref="table" :params="params"
                :apiObj="apiObj" @selection-change="selectionChange" stripe>
        <el-main>
            <scTable v-if="id" highlight-current-row @dataChange="dataChange" @row-click="rowClick" ref="table"
                :params="params" :apiObj="apiObj" @selection-change="selectionChange" stripe>
                <el-table-column label="文件名称" prop="fileName">
                </el-table-column>
                <el-table-column label="版本" prop="version"></el-table-column>
@@ -71,7 +71,7 @@
                        current: data.current,
                        size: data.size
                    }
                    return await this.$HTTP.post(`/api/blade-dnc/operation-file/page/${this.id}`, {}, { params,data:this.params }).then(res => {
                    return await this.$HTTP.post(`/api/blade-dnc/operation-file/page/${this.id}`, {}, { params, data: this.params }).then(res => {
                        return res
                    })
                }
@@ -79,7 +79,7 @@
        }
    },
    methods: {
        dataChange (data) {
        dataChange(data) {
            console.log(data)
        }
    }