fix: 数据集字段浮点转整型

This commit is contained in:
junjie
2021-07-12 18:57:51 +08:00
parent ae0efc3873
commit 131eb3e353
4 changed files with 13 additions and 6 deletions

View File

@@ -81,7 +81,7 @@
<script>
import { post } from '@/api/dataset/dataset'
import { getToken } from '@/utils/auth'
import i18n from "@/lang";
import i18n from '@/lang'
const token = getToken()
@@ -106,7 +106,7 @@ export default {
mode: '1',
height: 600,
fileList: [],
headers: { Authorization: token , 'Accept-Language': i18n.locale.replace('_', '-')},
headers: { Authorization: token, 'Accept-Language': i18n.locale.replace('_', '-') },
baseUrl: process.env.VUE_APP_BASE_API,
path: '',
uploading: false
@@ -123,7 +123,7 @@ export default {
},
created() {
if (!this.param.tableId) {
this.param.tableId = ""
this.param.tableId = ''
}
},
methods: {
@@ -143,9 +143,9 @@ export default {
this.uploading = true
},
uploadFail(response, file, fileList) {
let myError=response.toString();
myError=myError.replace("Error: ","")
const errorMessage = JSON.parse(myError).message + ", " + this.$t('dataset.parse_error');
let myError = response.toString()
myError = myError.replace('Error: ', '')
const errorMessage = JSON.parse(myError).message + ', ' + this.$t('dataset.parse_error')
this.path = ''
this.fields = []