up
This commit is contained in:
@ -49,6 +49,21 @@
|
||||
<el-table-column type="selection" width="55" align="center">
|
||||
</el-table-column>
|
||||
<el-table-column prop="version" align="center" label="固件版本号">
|
||||
<!-- <template slot-scope="scope">
|
||||
<el-popover placement="right" title="标题" width="200" trigger="hover">
|
||||
<el-table :data="tableData">
|
||||
<el-table-column prop="status" align="center" label="状态">
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template>
|
||||
<el-switch v-model="typeValue" active-color="#13ce66" inactive-color="#ff4949">
|
||||
</el-switch>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<el-button slot="reference">{{scope.row.version}}</el-button>
|
||||
</el-popover>
|
||||
</template> -->
|
||||
</el-table-column>
|
||||
<el-table-column prop="fileName" align="center" label="固件名称">
|
||||
</el-table-column>
|
||||
@ -159,6 +174,8 @@ export default {
|
||||
// 上传的地址
|
||||
url: process.env.VUE_APP_BASE_API + "/minio/uploadFirmwareFile"
|
||||
},
|
||||
// visible: false,
|
||||
// typeValue:true,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非多个禁用
|
||||
|
99
src/views/order/sendSingle/index.vue
Normal file
99
src/views/order/sendSingle/index.vue
Normal file
@ -0,0 +1,99 @@
|
||||
<template>
|
||||
<section class="app-container">
|
||||
<el-row>
|
||||
<el-form :inline="true" size="small">
|
||||
<el-form-item>
|
||||
<el-input placeholder="请输入告警名称" v-model="input" clearable></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-input placeholder="请输入派单启动时限(分)" v-model="input" clearable></el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-button type="primary" size="small" icon="el-icon-plus" @click="handleAdd">增加</el-button>
|
||||
<el-button type="primary" size="small" icon="el-icon-delete" @click="handleDelete">删除</el-button>
|
||||
<el-button type="primary" size="small" icon="el-icon-edit" @click="handleUpdate">修改</el-button>
|
||||
<el-button type="primary" size="small" icon="el-icon-view">查看</el-button>
|
||||
<el-button type="primary" size="small" icon="el-icon-refresh-right">刷新</el-button>
|
||||
<el-button type="primary" size="small" icon="el-icon-search" @click="handleQuery">查询</el-button>
|
||||
<el-button type="primary" size="small" icon="el-icon-refresh-right" @click="resetQuery">重置</el-button>
|
||||
</el-row>
|
||||
<el-table :data="tableData" style="width: 100%" @selection-change="handleSelectionChange">
|
||||
<el-table-column align="center" type="selection" width="55">
|
||||
</el-table-column>
|
||||
<el-table-column align="center" prop="organization" label="应用组织">
|
||||
</el-table-column>
|
||||
<el-table-column align="center" prop="name" label="告警名称">
|
||||
</el-table-column>
|
||||
<el-table-column align="center" prop="time" label="派单启动时限(分)">
|
||||
</el-table-column>
|
||||
<el-table-column align="center" prop="starttime" label="开始时间点">
|
||||
</el-table-column>
|
||||
<el-table-column align="center" prop="endtime" label="结束时间点">
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<pagination v-show="total>0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
|
||||
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
||||
<span>这是一段信息</span>
|
||||
<span slot="footer" class="dialog-footer">
|
||||
<el-button @click="open = false">取 消</el-button>
|
||||
<el-button type="primary" @click="open = false">确 定</el-button>
|
||||
</span>
|
||||
</el-dialog>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
input: '',
|
||||
total: 1,
|
||||
title: "",
|
||||
open: false,
|
||||
tableData: [
|
||||
{
|
||||
organization: '1',
|
||||
name: '1',
|
||||
time: '1',
|
||||
starttime: '1',
|
||||
endtime: '1'
|
||||
}
|
||||
],
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
},
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handleQuery () { },
|
||||
resetQuery () { },
|
||||
handleSelectionChange () { },
|
||||
getList () { },
|
||||
handleAdd () { this.open = true; this.title = "添加";},
|
||||
handleUpdate () { this.open = true; this.title = "修改";},
|
||||
handleDelete () {
|
||||
this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
}).then(() => {
|
||||
this.$message({
|
||||
type: 'success',
|
||||
message: '删除成功!'
|
||||
});
|
||||
}).catch(() => {
|
||||
this.$message({
|
||||
type: 'info',
|
||||
message: '已取消删除'
|
||||
});
|
||||
});
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
@ -34,8 +34,8 @@ module.exports = {
|
||||
proxy: {
|
||||
// detail: https://cli.vuejs.org/config/#devserver-proxy
|
||||
[process.env.VUE_APP_BASE_API]: {
|
||||
target: `http://192.168.0.129:8080`,
|
||||
// target: `http://121.37.250.170:8080`,
|
||||
// target: `http://192.168.0.129:8080`,
|
||||
target: `http://121.37.250.170:8080`,
|
||||
changeOrigin: true,
|
||||
pathRewrite: {
|
||||
['^' + process.env.VUE_APP_BASE_API]: ''
|
||||
|
Reference in New Issue
Block a user