You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

206 lines
5.6 KiB
Vue

2 years ago
<template>
<div class="deviceInformation">
<div class="deviceBox">
<div class="deviceBtnGroup">
<el-button type="primary" icon="el-icon-plus" @click="handleAdddevice()"
>新增</el-button
>
</div>
<div class="deviceTable">
<el-table
ref="multipleTable"
:data="deviceTableData"
tooltip-effect="dark"
style="width: 100%"
height="calc(100% - 40px)"
@selection-change="handleSelectionChange"
@row-click="handleRowClick"
2 years ago
>
<!-- <el-table-column type="index" width="55"> </el-table-column>
<el-table-column type="selection" width="55"> </el-table-column> -->
<el-table-column label="单位" show-overflow-tooltip>
<template slot-scope="scope">{{ scope.row.name }}</template>
</el-table-column>
<el-table-column label="时间表类型" show-overflow-tooltip>
<template>时间表类型</template>
</el-table-column>
<el-table-column
prop="startTime"
label="开始时间"
show-overflow-tooltip
>
</el-table-column>
<el-table-column
prop="endTime"
label="结束时间"
show-overflow-tooltip
>
</el-table-column>
<el-table-column prop="span" label="间隔(分)" show-overflow-tooltip>
</el-table-column>
<el-table-column prop="remark" label="备注" show-overflow-tooltip>
</el-table-column>
<el-table-column fixed="right" label="操作" width="200">
<template slot-scope="scope">
<el-button
@click.native.stop="handleResive(scope.row)"
type="text"
>修改</el-button
>
<el-button
type="text"
class="deleteText"
@click.native.stop="handleDelete(scope.row)"
>删除</el-button
>
</template>
</el-table-column>
</el-table>
<div class="pageNation">
<el-pagination
@current-change="handleCurrentChange"
:current-page="page"
:page-size="pageSize"
layout=" prev, pager, next, jumper,total"
:total="total"
background
>
</el-pagination>
</div>
</div>
2 years ago
</div>
<!-- 新增线路 -->
<adddeviceDialog
:lineDialog="deviceDialog"
:lineDialogTitle="deviceDialogTitle"
:formItem="formdeviceInfo"
></adddeviceDialog>
2 years ago
</div>
</template>
<script>
import { getScheduleRulelListJoggle,deleteLineJoggle } from "@/utils/api/index";
import adddeviceDialog from "./components/adddeviceDialog.vue";
2 years ago
export default {
components: {
adddeviceDialog
},
2 years ago
data() {
return {
deviceDialogTitle: "", //弹窗标题
deviceDialog: false,
formdeviceInfo: {}, //弹窗传值
deviceTableData: [],
//multipleSelection: [], //获取当前选中
2 years ago
//删除数组
deleteArr: [],
page: 1, // 当前页数
pageSize: 20, // 每页数量
total: 0, //总条数
2 years ago
};
},
methods: {
//获取线路列表数据
deviceList() {
getScheduleRulelListJoggle()
.then((res) => {
console.log(res);
this.deviceTableData = res.data.list;
})
.catch((err) => {
console.log(err); //代码错误、请求失败捕获
});
},
//点击行选中
handleRowClick(row, column, event) {
this.$refs.multipleTable.toggleRowSelection(row);
},
//获取选中的行
handleSelectionChange(val) {
this.multipleSelection = val;
},
// 新建弹窗
handleAdddevice() {
this.deviceDialog = true;
this.deviceDialogTitle = "新增";
},
//handleResive 修改线路数据
handleResive(data) {
console.log(data);
this.deviceDialogTitle = "修改";
this.formdeviceInfo = Object.assign({}, data);
this.deviceDialog = true;
},
2 years ago
//删除数据
handleDelete(data) {
console.log(data);
this.deleteArr.push({
id: data.id,
});
console.log(this.deleteArr);
this.$confirm("确定要删除记录吗,同时删除关联关系?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
// 行设置向后台请求删除数据
deleteLineJoggle({ list: this.deleteArr }).then((res) => {
console.log(res);
this.lineList(); //刷新
});
this.$message({
type: "success",
message: "删除成功!",
});
})
.catch(() => {
this.$message({
type: "info",
message: "已取消删除",
});
});
},
//点击分页
handleCurrentChange(val) {
console.log(`当前页: ${val}`);
this.page = val;
//this.getTableList();
2 years ago
},
},
created() {
this.deviceList();
},
};
</script>
<style lang="less">
.deviceInformation {
width: 100%;
width: calc(100% - 16px);
height: calc(100% - 32px);
padding: 16px 8px;
2 years ago
background: @color-white;
.deviceBox {
border: 1px solid #dddddd;
height: calc(100% - 32px);
padding: 16px;
border-radius: 4px;
2 years ago
}
.deviceBtnGroup {
display: flex;
justify-content: flex-end;
2 years ago
}
2 years ago
.deviceTable {
padding: 16px 8px 0 8px;
height: calc(100% - 80px);
//background: #fcc;
}
}
</style>