| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384 |
- <template>
- <div>
- <div class="tabs">
- <ul>
- <li v-for="(tab,i) in tabs" @click="goTab(tab.url)" :class="{'active':tabIndex == i}">
- {{tab.name}}
- </li>
- </ul>
- </div>
- <div class="panel">
- <div class="panel-body">
- <div class=" panel_control">
- <el-row :gutter="20">
- <el-col :span="4">
- <em>设备ID:</em>
- <el-input v-model="panel.keyword" placeholder="请输入设备ID"></el-input>
- </el-col>
- <el-col :span="4">
- <em>MAC:</em>
- <el-input v-model="panel.keyword" placeholder="请输入MAC地址"></el-input>
- </el-col>
- <el-col :span="4">
- <em>所属区域:</em>
- <el-select v-model="panel.taskstatus">
- <el-option
- v-for="item in panel.options"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-col>
- <el-col :span="6">
- <em>登记时间:</em>
- <el-date-picker
- v-model="panel.time1"
- type="daterange"
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期">
- </el-date-picker>
- </el-col>
- <el-col :span="4">
- <el-button size="small" type="primary" @click="query">查询</el-button>
- </el-col>
- </el-row>
- </div>
- </div>
- </div>
- <div class="contorl">
- <el-button size="small" type="primary" @click="addList">添加</el-button>
- <el-button size="small" type="primary" @click="delList">删除</el-button>
- <el-button size="small" type="primary" @click="changeList">修改</el-button>
- </div>
- <el-table
- :data="tableData"
- class=""
- stripe
- @selection-change="handleSelectionChange"
- >
- <el-table-column
- type="selection"
- width="55">
- </el-table-column>
- <el-table-column
- prop="name"
- label="设备ID"
- >
- </el-table-column>
- <el-table-column
- prop="date"
- label="检测时间"
- width="180">
- </el-table-column>
- <el-table-column
- prop="name"
- label="探测区域"
- >
- </el-table-column>
- <el-table-column
- prop="name"
- label="信道"
- width="180">
- </el-table-column>
- <el-table-column
- prop="address"
- label="信号频段">
- </el-table-column>
- <el-table-column
- prop="address"
- label="数据量">
- </el-table-column>
- <el-table-column
- prop="address"
- label="信号强度">
- </el-table-column>
- <el-table-column
- prop="address"
- label="操作记录">
- <template slot-scope="scope">
- <span @click="goRecord(scope.row)">探测记录</span>
- </template>
- </el-table-column>
- </el-table>
- <br>
- <el-pagination
- background
- :total="pageination.total"
- :page-size="pageination.pageItem"
- @current-change="pageChange"
- ></el-pagination>
- <dialog_referrer_list
- :show="dialog_state"
- :title="dialog_title"
- :large="true"
- @dialog_cancel="dialog_cancel"
- @dialog_ok="dialog_ok"
- >
- <div class="dialogContent">
- <el-row :gutter="20">
- <el-col :span="10">
- <label>
- 设备ID
- </label>
- <el-input v-model="dialog.name"></el-input>
- </el-col>
- <el-col :span="10">
- <label>
- MAC地址
- </label>
- <el-input v-model="dialog.name"></el-input>
- </el-col>
- <el-col :span="10">
- <label>
- 标签名
- </label>
- <el-input v-model="dialog.name"></el-input>
- </el-col>
- <el-col :span="10">
- <label>
- 设备所属楼层
- </label>
- <el-select v-model="dialog.region" placeholder="请选择所属楼层">
- <el-option
- v-for="item in panel.options"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-col>
- <el-col :span="20">
- <label>
- 备注
- </label>
- <el-input type="textarea" v-model="dialog.memo"></el-input>
- </el-col>
- </el-row>
- </div>
- </dialog_referrer_list>
- </div>
- </template>
- <script>
- import Global from '../Global.js'
- import dialog_referrer_list from '../components/dialog_referrer_list'
- export default {
- data() {
- return {
- // dialog
- dialog_state: false,
- dialog_title: '添加设备',
- dialog_type: '',//类型,1是添加,2是修改
- tabIndex: 0,
- tabs: [
- {name: '二维码管理', url: 'qrcodemanage'},
- ],
- // panel 配置项目
- panel: {
- usercode: '',
- username: '',
- compname: '',
- keyword: '',
- USERCODE: '',
- taskstatus: 99,
- options: [
- {value: 99, label: '全部'},
- {value: 1, label: '进行中'},
- {value: 2, label: '已完成'},
- ],
- time1: globalBt2(),
- },
- pageination: {
- pageItem: 10,
- pageoptions: pageOptions(),
- total: 10,
- pageIndex: 1,
- },
- dialog: {
- name: 10,
- region: 10,
- memo: '',
- },
- multipleSelection: [],
- tableData: [{
- date: '2016-05-02',
- name: '王小虎',
- address: '上海市普陀区金沙江路 1518 弄'
- }, {
- date: '2016-05-04',
- name: '王小虎',
- address: '上海市普陀区金沙江路 1517 弄'
- }, {
- date: '2016-05-01',
- name: '王小虎',
- address: '上海市普陀区金沙江路 1519 弄'
- }, {
- date: '2016-05-03',
- name: '王小虎',
- address: '上海市普陀区金沙江路 1516 弄'
- }]
- }
- },
- mounted() {
- this.getTableQuery();
- },
- methods: {
- // 跳转tab页面
- goTab(url) {
- this.$router.push({path: url});
- },
- // 查询按钮
- query() {
- this.getTableQuery();
- this.$message.success('查询完毕');
- },
- handleSelectionChange(val) {
- this.multipleSelection = val;
- console.log(val);
- },
- // 页面数据查询
- getTableQuery() {
- // let that = this;
- // that.loading = true;
- // let url = headapi + '?ctl=ajax&mod=dial&act=taskListQuery';//获取
- // let param = {
- // 'taskstatus': that.panel.taskstatus,
- // 'bt': globaltime2String(that.panel.time1[0]),
- // 'et': globaltime2String(that.panel.time1[1]),
- // 'KEYWORD': that.panel.keyword,
- // 'USERCODE': that.panel.USERCODE,
- // };
- // let JSON = '';
- // let postdata = qs.stringify(param);
- // axios.post(url, postdata)
- // .then(function (response) {
- // JSON = response.data;
- // that.loading = false;
- // that.allTableData = JSON.rs;
- // that.recordsTotal = JSON.rs.length;
- // // 设置分页数据
- // that.setPaginations();
- // })
- // .catch(function (error) {
- // console.log(error);
- // });
- },
- // 设置分页数据
- setPaginations() {
- // 分页属性
- let that = this;
- that.pageination.total = that.recordsTotal;
- // 默认分页
- that.tableData = that.allTableData.filter((item, index) => {
- return index < that.pageination.pageItem;
- });
- },
- // 每页显示数量
- handleSizeChange() {
- let that = this;
- that.tableData = that.allTableData.filter((item, index) => {
- return index < that.pageination.pageItem;
- });
- that.draw = that.pageination.pageItem;
- that.getTableQuery();
- },
- // 翻页
- pageChange(pageIndex) {
- let that = this;
- // 获取当前页
- let index = that.pageination.pageItem * (pageIndex - 1);
- // 数据总数
- let nums = that.pageination.pageItem * pageIndex;
- // 容器
- let tables = [];
- for (var i = index; i < nums; i++) {
- if (that.allTableData[i]) {
- tables.push(that.allTableData[i])
- }
- this.tableData = tables;
- }
- that.start = index * that.draw;
- that.getTableQuery();
- },
- // 自动排序
- sortChange(params) {
- console.log(params)
- },
- // 过滤时间
- filterFmtDate(value, row, column) {
- let that = this;
- return globalfmtDate(column, 11);
- },
- addList() {
- this.dialog_state = true;
- this.dialog_title = '添加设备';
- },
- delList() {
- // checkNum
- if (!this.multipleSelection.length) {
- this.$message({
- showClose: true,
- message: '错了哦,需要先选中至少一条记录',
- type: 'error'
- });
- return false
- }
- // todo delEquip
- },
- changeList() {
- // checkNum
- if (!this.multipleSelection.length) {
- this.$message({
- showClose: true,
- message: '错了哦,需要先选中一条记录',
- type: 'error'
- });
- return false
- }
- if (this.multipleSelection.length > 1) {
- this.$message({
- showClose: true,
- message: '错了哦,只能选中一条记录',
- type: 'error'
- });
- return false
- }
- },
- // 探测记录
- goRecord(row) {
- console.log(row);
- this.$router.push({path: '/record', query: {row: row}});
- },
- dialog_cancel() {
- let that = this;
- that.dialog_state = false;
- },
- dialog_ok() {
- let that = this;
- let dialog_type = that.dialog_type;
- let name = that.field_name;
- let id = that.field_id;
- },
- },
- components: {
- dialog_referrer_list
- }
- }
- </script>
- <style scoped>
- @import "../assets/css/panel.css";
- @import "../assets/css/dialog.css";
- .tabs ul {
- width: 168px;
- }
- table span {
- cursor: pointer;
- }
- </style>
|