no message

This commit is contained in:
BOOL\25024
2025-02-26 15:31:04 +08:00
parent 39d2dc1fa1
commit 3c5848551b
2 changed files with 10 additions and 3 deletions

View File

@@ -26,6 +26,11 @@
<el-table-column prop="name" label="固件名称"></el-table-column> <el-table-column prop="name" label="固件名称"></el-table-column>
<el-table-column prop="description" label="固件描述"></el-table-column> <el-table-column prop="description" label="固件描述"></el-table-column>
<el-table-column prop="filePath" label="路径"></el-table-column> <el-table-column prop="filePath" label="路径"></el-table-column>
<el-table-column prop="useRange" label="固件类型">
<template slot-scope="scope">
<span>{{ scope.row.useRange == 2 ? '蓝牙':'4G' }}</span>
</template>
</el-table-column>
</el-table> </el-table>
<pagination <pagination
v-show="total > 0" v-show="total > 0"

View File

@@ -35,10 +35,12 @@ module.exports = {
proxy: { proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy // detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: { [process.env.VUE_APP_BASE_API]: {
target: `http://localhost:8080`, // target: `http://localhost:8080`,
// 更改代理为本地地址 // 更改代理为本地地址
// target: `http://192.168.2.6:8080`, // target: `http://106.14.94.149:8080`,
// target: `https://api.jsowellcloud.com`, // target: `http://192.168.2.21:8080`,
// target: `https://api.jsowellcloud.com`,
target: `https://apitest.jsowellcloud.com`,
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
["^" + process.env.VUE_APP_BASE_API]: "", ["^" + process.env.VUE_APP_BASE_API]: "",