|
|
|
<template>
|
|
|
|
<div class="deviceInformation">
|
|
|
|
<div class="deviceBtnGroup">
|
|
|
|
<el-button type="primary" @click="handleAdddevice()">新增</el-button>
|
|
|
|
<el-button type="primary" @click="handleResive()">修改</el-button>
|
|
|
|
<!-- <el-button type="primary">批量添加</el-button> -->
|
|
|
|
<el-button type="primary" @click="handleDelete()">删除</el-button>
|
|
|
|
|
|
|
|
<!-- <el-button type="primary">查询</el-button> -->
|
|
|
|
</div>
|
|
|
|
<!-- <div class="searchForm">
|
|
|
|
<el-form :indevice="true" :model="formIndevice" class="demo-form-indevice">
|
|
|
|
<el-form-item label="单位:">
|
|
|
|
<el-select v-model="formIndevice.region" placeholder="活动区域">
|
|
|
|
<el-option label="区域一" value="shanghai"></el-option>
|
|
|
|
<el-option label="区域二" value="beijing"></el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="DY等级:">
|
|
|
|
<el-select v-model="formIndevice.region" placeholder="活动区域">
|
|
|
|
<el-option label="区域一" value="shanghai"></el-option>
|
|
|
|
<el-option label="区域二" value="beijing"></el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="XL名称:">
|
|
|
|
<el-input v-model="formIndevice.user" placeholder="审批人"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="是否为采集">
|
|
|
|
<el-select v-model="formIndevice.region" placeholder="活动区域">
|
|
|
|
<el-option label="区域一" value="shanghai"></el-option>
|
|
|
|
<el-option label="区域二" value="beijing"></el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="PMS编号:">
|
|
|
|
<el-input v-model="formIndevice.user" placeholder="审批人"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
</div> -->
|
|
|
|
<div class="deviceTable">
|
|
|
|
<el-table
|
|
|
|
ref="multipleTable"
|
|
|
|
:data="deviceTableData"
|
|
|
|
tooltip-effect="dark"
|
|
|
|
style="width: 100%"
|
|
|
|
height="calc(100% - 40px)"
|
|
|
|
border
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
@row-click="handleRowClick"
|
|
|
|
>
|
|
|
|
<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="handleClick(scope.row)" type="text"
|
|
|
|
>修改</el-button
|
|
|
|
>
|
|
|
|
<el-button type="text">删除</el-button>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</div>
|
|
|
|
<!-- 新增线路 -->
|
|
|
|
<adddeviceDialog
|
|
|
|
:deviceDialog="deviceDialog"
|
|
|
|
:deviceDialogTitle="deviceDialogTitle"
|
|
|
|
:formItem="formdeviceInfo"
|
|
|
|
@deviceDialogClose="deviceDialogClose"
|
|
|
|
></adddeviceDialog>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import {
|
|
|
|
getScheduleRulelListJoggle,
|
|
|
|
// deletedeviceJoggle,
|
|
|
|
} from "@/utils/api/index";
|
|
|
|
import adddeviceDialog from "./components/adddeviceDialog.vue";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
adddeviceDialog,
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
formIndevice: {
|
|
|
|
user: "",
|
|
|
|
region: "",
|
|
|
|
},
|
|
|
|
deviceDialogTitle: "", //弹窗标题
|
|
|
|
deviceDialog: false,
|
|
|
|
formdeviceInfo: {}, //弹窗传值
|
|
|
|
deviceTableData: [],
|
|
|
|
multipleSelection: [], //获取当前选中
|
|
|
|
//删除数组
|
|
|
|
deleteArr: [],
|
|
|
|
};
|
|
|
|
},
|
|
|
|
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);
|
|
|
|
// console.log(column, row, event);
|
|
|
|
},
|
|
|
|
//获取选中的行
|
|
|
|
handleSelectionChange(val) {
|
|
|
|
this.multipleSelection = val;
|
|
|
|
},
|
|
|
|
|
|
|
|
// 新建弹窗
|
|
|
|
handleAdddevice() {
|
|
|
|
this.deviceDialog = true;
|
|
|
|
this.deviceDialogTitle = "新增";
|
|
|
|
},
|
|
|
|
|
|
|
|
//handleResive 修改线路数据
|
|
|
|
handleResive() {
|
|
|
|
if (this.multipleSelection.length !== 1) {
|
|
|
|
this.$message({
|
|
|
|
showClose: true,
|
|
|
|
message: "请选择要操作的记录最多只能选择一条!",
|
|
|
|
type: "warning",
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
console.log(this.multipleSelection);
|
|
|
|
this.deviceDialogTitle = "修改";
|
|
|
|
this.formdeviceInfo = Object.assign({}, this.multipleSelection[0]);
|
|
|
|
this.deviceDialog = true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
//新建弹窗取消按钮 关闭弹窗
|
|
|
|
deviceDialogClose(flag) {
|
|
|
|
if (flag) {
|
|
|
|
//更新列表
|
|
|
|
this.deviceList();
|
|
|
|
}
|
|
|
|
this.deviceDialog = false;
|
|
|
|
},
|
|
|
|
//删除数据
|
|
|
|
handleDelete() {
|
|
|
|
if (this.multipleSelection.length == 0) {
|
|
|
|
this.$message({
|
|
|
|
showClose: true,
|
|
|
|
message: "请选择要操作的记录!",
|
|
|
|
type: "warning",
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
console.log(this.multipleSelection);
|
|
|
|
for (let i in this.multipleSelection) {
|
|
|
|
console.log(i);
|
|
|
|
this.deleteArr.push({
|
|
|
|
id: this.multipleSelection[i].id,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
console.log(this.deleteArr);
|
|
|
|
this.$confirm("确定要删除记录吗,同时删除关联关系?", "提示", {
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
type: "warning",
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
// 行设置向后台请求删除数据
|
|
|
|
deletedeviceJoggle({ list: this.deleteArr }).then((res) => {
|
|
|
|
console.log(res);
|
|
|
|
this.deviceList(); //刷新
|
|
|
|
});
|
|
|
|
this.$message({
|
|
|
|
type: "success",
|
|
|
|
message: "删除成功!",
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
this.$message({
|
|
|
|
type: "info",
|
|
|
|
message: "已取消删除",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.deviceList();
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<style lang="less">
|
|
|
|
.deviceInformation {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: @color-white;
|
|
|
|
.deviceBtnGroup {
|
|
|
|
padding: 16px 8px;
|
|
|
|
}
|
|
|
|
.searchForm {
|
|
|
|
padding: 0px 8px;
|
|
|
|
.el-form {
|
|
|
|
.el-form-item {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.deviceTable {
|
|
|
|
padding: 16px 8px 0 8px;
|
|
|
|
height: calc(100% - 80px);
|
|
|
|
//background: #fcc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|