12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <template>
- <m-dialog title="表名清单" :visible.sync="show" :footer="false">
- <div class="mb-3">
- <v-btn class="mr-3" color="primary" rounded @click="handleAdd">修改表名</v-btn>
- <UploadBtn color="primary" @change="handleChangeFile">导入表名</UploadBtn>
- </div>
- <div
- style="min-height: 300px;"
- v-loading="loading"
- >
- <v-list
- subheader
- >
- <v-list-item
- v-for="item in items"
- :key="item"
- >
- <v-list-item-content>
- <v-list-item-title>{{ item }}</v-list-item-title>
- </v-list-item-content>
- </v-list-item>
- </v-list>
- </div>
- <ModelTrainTableSubmit ref="modelTrainTableSubmitRefs" @success="getData"></ModelTrainTableSubmit>
- </m-dialog>
- </template>
- <script>
- import UploadBtn from '@/components/UploadBtn'
- import MDialog from '@/components/Dialog'
- import ModelTrainTableSubmit from './modelTrainTableSubmit'
- import {
- getDataBaseList,
- uploadDataTasksList
- } from '@/api/dataChart'
- export default {
- name: 'modelTrainTable',
- components: {
- MDialog,
- UploadBtn,
- ModelTrainTableSubmit
- },
- data () {
- return {
- show: false,
- loading: false,
- items: [],
- id: null
- }
- },
- methods: {
- open (id) {
- this.id = id
- this.show = true
- this.getData()
- },
- async getData () {
- try {
- this.loading = true
- const { data } = await getDataBaseList({
- task_id: this.id
- })
- this.items = data.tables
- } catch (error) {
- this.$snackbar.error(error)
- } finally {
- this.loading = false
- }
- },
- handleAdd () {
- this.$refs.modelTrainTableSubmitRefs.open(this.id)
- },
- async handleChangeFile (file) {
- const query = new FormData()
- query.append('file', file)
- this.loading = true
- try {
- await uploadDataTasksList(this.id, query)
- this.$snackbar.success('更新成功')
- this.getData()
- } catch (error) {
- this.$snackbar.error(error)
- } finally {
- this.loading = false
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|