| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- <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="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">
- <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="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="4">
- <el-button size="small" type="primary" @click="query">查询</el-button>
- </el-col>
- </el-row>
- </div>
- </div>
- </div>
- <h3>todo 此处应是图表</h3>
- <el-table
- v-if="false"
- :data="tableData"
- class=""
- stripe
- >
- <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>
- <br>
- <el-pagination
- v-if="false"
- background
- :total="pageination.total"
- :page-size="pageination.pageItem"
- @current-change="pageChange"
- ></el-pagination>
- </div>
- </template>
- <script>
- import Global from '../Global.js'
- export default {
- data() {
- return {
- tabIndex:2,
- tabs:[
- {name:'手机信号记录',url:'phoneSign'},
- {name:'WiFi信号记录',url:'wifiSign'},
- {name:'0-6G扫描记录',url:'GSign'},
- ],
- // panel 配置项目
- panel: {
- usercode: '',
- username: '',
- compname: '',
- keyword: '',
- USERCODE: '',
- taskstatus: 99,
- options: [
- {value: 99, label: '全部'},
- {value: 1, label: '进行中'},
- {value: 2, label: '已完成'},
- ],
- time1: globalBt3(2),
- },
- pageination: {
- pageItem: 10,
- pageoptions: pageOptions(),
- total: 10,
- pageIndex: 1,
- },
- 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('查询完毕');
- },
- // 页面数据查询
- 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);
- // });
- },
- // 导出excel
- btnExpAll() {
- let that = this;
- let url = headapi + '?ctl=ajax&mod=czgl&act=czcx_excel';//获取
- let bt = globaltime2String(that.panel.time1[0]);
- let et = globaltime2String(that.panel.time1[1]);
- let usercode = that.panel.usercode;
- window.location = url + '&bt=' + bt + '&et=' + et + '&usercode=' + usercode;
- },
- // 设置分页数据
- 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);
- },
- // 过滤金额
- filterMoney(value, row, column) {
- let that = this;
- return parseFloat(column).toFixed(2);
- },
- },
- }
- </script>
- <style scoped>
- @import "../assets/css/panel.css";
- </style>
|