Browse Source

管理员页面

lipengtao 6 years ago
parent
commit
ac7e7d2999

+ 114 - 31
src/views/baseInfoManage/boxesConfig/index.vue

@ -1,71 +1,154 @@
1 1
<template>
2 2
  <div class="app-container">
3
    <el-table :data="list" v-loading="listLoading" element-loading-text="Loading" border fit highlight-current-row>
4
      <el-table-column align="center" label='ID' width="95">
5
        <template slot-scope="scope">
6
          {{scope.$index}}
7
        </template>
8
      </el-table-column>
9
      <el-table-column label="Title">
3
    <div class="filter-container">
4
      <el-input style="width: 350px;margin-right:40px" class="filter-item" placeholder="所属服务器编号" v-model="listQuery.title">
5
      </el-input>
6
       <el-input style="width: 350px;" class="filter-item" placeholder="采集盒编号" v-model="listQuery.importance">
7
      </el-input>
8
      <el-button class="filter-item" style="margin-left: 10px;" @click="handleFilter" type="primary">查找</el-button>
9
      <el-button class="filter-item" style="margin-left: 200px;" @click="handleCreate" type="primary" icon="el-icon-edit">添加采集盒</el-button>
10
    </div>
11
12
    <el-table :key='tableKey' :data="list" v-loading="listLoading" border fit highlight-current-row
13
      style="width: 100%;min-height:550px;">
14
      <el-table-column width="150px" align="center" label="采集盒编号">
10 15
        <template slot-scope="scope">
11
          {{scope.row.title}}
16
          <span>{{scope.row.num}}</span>
12 17
        </template>
13 18
      </el-table-column>
14
      <el-table-column label="Author" width="110" align="center">
19
      <el-table-column width="150px" align="center" label="采集盒信道数量">
15 20
        <template slot-scope="scope">
16
          <span>{{scope.row.author}}</span>
21
          <span>{{scope.row.name}}</span>
17 22
        </template>
18 23
      </el-table-column>
19
      <el-table-column label="Pageviews" width="110" align="center">
24
      <el-table-column min-width="150px" align="center" label="所属服务器编号">
20 25
        <template slot-scope="scope">
21
          {{scope.row.pageviews}}
26
          <span>{{scope.row.address}}</span>
22 27
        </template>
23 28
      </el-table-column>
24
      <el-table-column class-name="status-col" label="Status" width="110" align="center">
29
      <el-table-column min-width="200px" align="center" label="备注信息">
25 30
        <template slot-scope="scope">
26
          <el-tag :type="scope.row.status | statusFilter">{{scope.row.status}}</el-tag>
31
          <span>{{scope.row.message}}</span>
27 32
        </template>
28 33
      </el-table-column>
29
      <el-table-column align="center" prop="created_at" label="Display_time" width="200">
30
        <template slot-scope="scope">
31
          <i class="el-icon-time"></i>
32
          <span>{{scope.row.display_time}}</span>
34
      <el-table-column align="center" label="Actions" width="230" class-name="small-padding fixed-width">
35
        <template slot-scope="scope"> 
36
          <el-button type="primary" size="mini" @click="handleUpdate(scope.row)">编辑</el-button> 
37
          <el-button size="mini" type="danger" @click="handleModifyStatus(scope.row,'deleted')">删除
38
          </el-button>
33 39
        </template>
34 40
      </el-table-column>
35 41
    </el-table>
42
43
    <div class="pagination-container" style="text-align:center;">
44
      <el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="listQuery.page" :page-size="listQuery.limit" layout="prev, pager, next, jumper" :total="total">
45
      </el-pagination>
46
    </div>
36 47
  </div>
37 48
</template>
38 49
39 50
<script>
40
import { getList } from '@/api/table'
51
//  import { fetchList, fetchPv, createArticle, updateArticle } from '@/api/article'
52
import waves from '@/directive/waves'
53
//  import { parseTime } from '@/utils'
41 54
42 55
export default {
56
  name: 'complexTable',
57
  directives: {
58
    waves
59
  },
43 60
  data() {
44 61
    return {
62
      tableKey: 0,
45 63
      list: null,
46
      listLoading: true
64
      dataList: { total: 20, data: [{ num: 1111, name: '北京科技大学', address: '北京', org: '机电学院', message: '想落户上海,你还差几分?抢人才看出身,清华北大照单全收' }] },
65
      total: null,
66
      listLoading: true,
67
      listQuery: {
68
        page: 1,
69
        limit: 10,
70
        importance: undefined,
71
        title: undefined,
72
        type: undefined,
73
        sort: '+id'
74
      },
75
      dialogFormVisible: false,
76
      dialogStatus: '',
77
      textMap: {
78
        update: 'Edit',
79
        create: 'Create'
80
      }
47 81
    }
48 82
  },
49 83
  filters: {
50
    statusFilter(status) {
51
      const statusMap = {
52
        published: 'success',
53
        draft: 'gray',
54
        deleted: 'danger'
55
      }
56
      return statusMap[status]
84
    typeFilter(type) {
85
57 86
    }
58 87
  },
59 88
  created() {
60
    this.fetchData()
89
    this.getList()
61 90
  },
62 91
  methods: {
63
    fetchData() {
92
    getList() {
64 93
      this.listLoading = true
65
      getList(this.listQuery).then(response => {
66
        this.list = response.data.items
94
      this.list = this.dataList.data
95
      this.total = this.dataList.total
96
      setTimeout(() => {
67 97
        this.listLoading = false
98
      }, 1.5 * 1000)
99
      /*  fetchList(this.listQuery).then(response => {
100
        this.list = this.dataList.data
101
        this.total =  this.dataList.total
102
        setTimeout(() => {
103
          this.listLoading = false
104
        }, 1.5 * 1000)
105
      })  */
106
    },
107
    handleFilter() {
108
      this.listQuery.page = 1
109
      //  this.getList()
110
    },
111
    handleSizeChange(val) {
112
      this.listQuery.limit = val
113
      //  this.getList()
114
    },
115
    handleCurrentChange(val) {
116
      this.listQuery.page = val
117
      //  this.getList()
118
    },
119
    handleModifyStatus(row, status) {
120
      this.$confirm('已成功删除该传感器', '提示', {
121
        confirmButtonText: '确定',
122
        cancelButtonText: '取消',
123
        type: 'success',
124
        showCancelButton: false,
125
        center: true
126
      }).then(() => {
127
128
      }).catch(() => {
129
68 130
      })
131
      /*  this.$confirm('确实要删除:桥梁12324吗?, 是否继续?', '提示', {
132
      confirmButtonText: '确定',
133
          cancelButtonText: '取消',
134
          type: 'warning',
135
          center: true
136
        }).then(() => {
137
          this.$message({
138
            type: 'success',
139
            message: '删除成功!'
140
          });
141
        }).catch(() => {
142
143
        }); */
144
    },
145
    resetTemp() {
146
147
    },
148
    handleCreate() {
149
150
    },
151
    handleUpdate(row) {
69 152
    }
70 153
  }
71 154
}

+ 116 - 28
src/views/baseInfoManage/bridgesInfo/index.vue

@ -1,71 +1,159 @@
1 1
<template>
2 2
  <div class="app-container">
3
    <el-table :data="list" v-loading="listLoading" element-loading-text="Loading" border fit highlight-current-row>
4
      <el-table-column align="center" label='ID' width="95">
3
    <div class="filter-container">
4
      <el-input style="width: 350px;margin-right:40px" class="filter-item" placeholder="桥梁名称" v-model="listQuery.title">
5
      </el-input>
6
       <el-input style="width: 350px;" class="filter-item" placeholder="桥梁编号" v-model="listQuery.importance">
7
      </el-input>
8
      <el-button class="filter-item" style="margin-left: 10px;" @click="handleFilter" type="primary">查找</el-button>
9
      <el-button class="filter-item" style="margin-left: 200px;" @click="handleCreate" type="primary" icon="el-icon-edit">添加桥梁</el-button>
10
    </div>
11
12
    <el-table :key='tableKey' :data="list" v-loading="listLoading" border fit highlight-current-row
13
      style="width: 100%;min-height:550px;">
14
      <el-table-column width="150px" align="center" label="桥梁编号">
5 15
        <template slot-scope="scope">
6
          {{scope.$index}}
16
          <span>{{scope.row.num}}</span>
7 17
        </template>
8 18
      </el-table-column>
9
      <el-table-column label="Title">
19
      <el-table-column width="150px" align="center" label="桥梁简称">
10 20
        <template slot-scope="scope">
11
          {{scope.row.title}}
21
          <span>{{scope.row.name}}</span>
12 22
        </template>
13 23
      </el-table-column>
14
      <el-table-column label="Author" width="110" align="center">
24
      <el-table-column min-width="150px" align="center" label="桥梁位置">
15 25
        <template slot-scope="scope">
16
          <span>{{scope.row.author}}</span>
26
          <span>{{scope.row.address}}</span>
17 27
        </template>
18 28
      </el-table-column>
19
      <el-table-column label="Pageviews" width="110" align="center">
29
      <el-table-column min-width="150px" align="center" label="维护机构">
20 30
        <template slot-scope="scope">
21
          {{scope.row.pageviews}}
31
          <span>{{scope.row.org}}</span>
22 32
        </template>
23 33
      </el-table-column>
24
      <el-table-column class-name="status-col" label="Status" width="110" align="center">
34
      <el-table-column min-width="200px" align="center" label="备注信息">
25 35
        <template slot-scope="scope">
26
          <el-tag :type="scope.row.status | statusFilter">{{scope.row.status}}</el-tag>
36
          <span>{{scope.row.message}}</span>
27 37
        </template>
28 38
      </el-table-column>
29
      <el-table-column align="center" prop="created_at" label="Display_time" width="200">
30
        <template slot-scope="scope">
31
          <i class="el-icon-time"></i>
32
          <span>{{scope.row.display_time}}</span>
39
      <el-table-column align="center" label="Actions" width="230" class-name="small-padding fixed-width">
40
        <template slot-scope="scope"> 
41
          <el-button type="primary" size="mini" @click="handleUpdate(scope.row)">编辑</el-button> 
42
          <el-button size="mini" type="danger" @click="handleModifyStatus(scope.row,'deleted')">删除
43
          </el-button>
33 44
        </template>
34 45
      </el-table-column>
35 46
    </el-table>
47
48
    <div class="pagination-container" style="text-align:center;">
49
      <el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="listQuery.page" :page-size="listQuery.limit" layout="prev, pager, next, jumper" :total="total">
50
      </el-pagination>
51
    </div>
36 52
  </div>
37 53
</template>
38 54
39 55
<script>
40
import { getList } from '@/api/table'
56
//  import { fetchList, fetchPv, createArticle, updateArticle } from '@/api/article'
57
import waves from '@/directive/waves'
58
//  import { parseTime } from '@/utils'
41 59
42 60
export default {
61
  name: 'complexTable',
62
  directives: {
63
    waves
64
  },
43 65
  data() {
44 66
    return {
67
      tableKey: 0,
45 68
      list: null,
46
      listLoading: true
69
      dataList: { total: 20, data: [{ num: 1111, name: '北京科技大学', address: '北京', org: '机电学院', message: '想落户上海,你还差几分?抢人才看出身,清华北大照单全收' }] },
70
      total: null,
71
      listLoading: true,
72
      listQuery: {
73
        page: 1,
74
        limit: 10,
75
        importance: undefined,
76
        title: undefined,
77
        type: undefined,
78
        sort: '+id'
79
      },
80
      dialogFormVisible: false,
81
      dialogStatus: '',
82
      textMap: {
83
        update: 'Edit',
84
        create: 'Create'
85
      }
47 86
    }
48 87
  },
49 88
  filters: {
50
    statusFilter(status) {
51
      const statusMap = {
52
        published: 'success',
53
        draft: 'gray',
54
        deleted: 'danger'
55
      }
56
      return statusMap[status]
89
    typeFilter(type) {
90
57 91
    }
58 92
  },
59 93
  created() {
60
    this.fetchData()
94
    this.getList()
61 95
  },
62 96
  methods: {
63
    fetchData() {
97
    getList() {
64 98
      this.listLoading = true
65
      getList(this.listQuery).then(response => {
66
        this.list = response.data.items
99
      this.list = this.dataList.data
100
      this.total = this.dataList.total
101
      setTimeout(() => {
67 102
        this.listLoading = false
103
      }, 1.5 * 1000)
104
      /*  fetchList(this.listQuery).then(response => {
105
        this.list = this.dataList.data
106
        this.total =  this.dataList.total
107
        setTimeout(() => {
108
          this.listLoading = false
109
        }, 1.5 * 1000)
110
      })  */
111
    },
112
    handleFilter() {
113
      this.listQuery.page = 1
114
      //  this.getList()
115
    },
116
    handleSizeChange(val) {
117
      this.listQuery.limit = val
118
      //  this.getList()
119
    },
120
    handleCurrentChange(val) {
121
      this.listQuery.page = val
122
      //  this.getList()
123
    },
124
    handleModifyStatus(row, status) {
125
      this.$confirm('已成功删除该传感器', '提示', {
126
        confirmButtonText: '确定',
127
        cancelButtonText: '取消',
128
        type: 'success',
129
        showCancelButton: false,
130
        center: true
131
      }).then(() => {
132
133
      }).catch(() => {
134
68 135
      })
136
      /*  this.$confirm('确实要删除:桥梁12324吗?, 是否继续?', '提示', {
137
      confirmButtonText: '确定',
138
          cancelButtonText: '取消',
139
          type: 'warning',
140
          center: true
141
        }).then(() => {
142
          this.$message({
143
            type: 'success',
144
            message: '删除成功!'
145
          });
146
        }).catch(() => {
147
148
        }); */
149
    },
150
    resetTemp() {
151
152
    },
153
    handleCreate() {
154
155
    },
156
    handleUpdate(row) {
69 157
    }
70 158
  }
71 159
}

+ 116 - 28
src/views/baseInfoManage/sensorsConfig/index.vue

@ -1,71 +1,159 @@
1 1
<template>
2 2
  <div class="app-container">
3
    <el-table :data="list" v-loading="listLoading" element-loading-text="Loading" border fit highlight-current-row>
4
      <el-table-column align="center" label='ID' width="95">
3
    <div class="filter-container">
4
      <el-input style="width: 350px;margin-right:40px" class="filter-item" placeholder="采集盒编号" v-model="listQuery.title">
5
      </el-input>
6
       <el-input style="width: 350px;" class="filter-item" placeholder="传感器编号" v-model="listQuery.importance">
7
      </el-input>
8
      <el-button class="filter-item" style="margin-left: 10px;" @click="handleFilter" type="primary">查找</el-button>
9
      <el-button class="filter-item" style="margin-left: 200px;" @click="handleCreate" type="primary" icon="el-icon-edit">添加传感器</el-button>
10
    </div>
11
12
    <el-table :key='tableKey' :data="list" v-loading="listLoading" border fit highlight-current-row
13
      style="width: 100%;min-height:550px;">
14
      <el-table-column width="150px" align="center" label="传感器编号">
5 15
        <template slot-scope="scope">
6
          {{scope.$index}}
16
          <span>{{scope.row.num}}</span>
7 17
        </template>
8 18
      </el-table-column>
9
      <el-table-column label="Title">
19
      <el-table-column width="150px" align="center" label="传感器所在主缆">
10 20
        <template slot-scope="scope">
11
          {{scope.row.title}}
21
          <span>{{scope.row.name}}</span>
12 22
        </template>
13 23
      </el-table-column>
14
      <el-table-column label="Author" width="110" align="center">
24
      <el-table-column min-width="150px" align="center" label="传感器位置">
15 25
        <template slot-scope="scope">
16
          <span>{{scope.row.author}}</span>
26
          <span>{{scope.row.address}}</span>
17 27
        </template>
18 28
      </el-table-column>
19
      <el-table-column label="Pageviews" width="110" align="center">
29
      <el-table-column min-width="150px" align="center" label="所属采集盒编号">
20 30
        <template slot-scope="scope">
21
          {{scope.row.pageviews}}
31
          <span>{{scope.row.org}}</span>
22 32
        </template>
23 33
      </el-table-column>
24
      <el-table-column class-name="status-col" label="Status" width="110" align="center">
34
      <el-table-column min-width="200px" align="center" label="备注信息">
25 35
        <template slot-scope="scope">
26
          <el-tag :type="scope.row.status | statusFilter">{{scope.row.status}}</el-tag>
36
          <span>{{scope.row.message}}</span>
27 37
        </template>
28 38
      </el-table-column>
29
      <el-table-column align="center" prop="created_at" label="Display_time" width="200">
30
        <template slot-scope="scope">
31
          <i class="el-icon-time"></i>
32
          <span>{{scope.row.display_time}}</span>
39
      <el-table-column align="center" label="Actions" width="230" class-name="small-padding fixed-width">
40
        <template slot-scope="scope"> 
41
          <el-button type="primary" size="mini" @click="handleUpdate(scope.row)">编辑</el-button> 
42
          <el-button size="mini" type="danger" @click="handleModifyStatus(scope.row,'deleted')">删除
43
          </el-button>
33 44
        </template>
34 45
      </el-table-column>
35 46
    </el-table>
47
48
    <div class="pagination-container" style="text-align:center;">
49
      <el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="listQuery.page" :page-size="listQuery.limit" layout="prev, pager, next, jumper" :total="total">
50
      </el-pagination>
51
    </div>
36 52
  </div>
37 53
</template>
38 54
39 55
<script>
40
import { getList } from '@/api/table'
56
//  import { fetchList, fetchPv, createArticle, updateArticle } from '@/api/article'
57
import waves from '@/directive/waves'
58
//  import { parseTime } from '@/utils'
41 59
42 60
export default {
61
  name: 'complexTable',
62
  directives: {
63
    waves
64
  },
43 65
  data() {
44 66
    return {
67
      tableKey: 0,
45 68
      list: null,
46
      listLoading: true
69
      dataList: { total: 20, data: [{ num: 1111, name: '北京科技大学', address: '北京', org: '机电学院', message: '想落户上海,你还差几分?抢人才看出身,清华北大照单全收' }] },
70
      total: null,
71
      listLoading: true,
72
      listQuery: {
73
        page: 1,
74
        limit: 10,
75
        importance: undefined,
76
        title: undefined,
77
        type: undefined,
78
        sort: '+id'
79
      },
80
      dialogFormVisible: false,
81
      dialogStatus: '',
82
      textMap: {
83
        update: 'Edit',
84
        create: 'Create'
85
      }
47 86
    }
48 87
  },
49 88
  filters: {
50
    statusFilter(status) {
51
      const statusMap = {
52
        published: 'success',
53
        draft: 'gray',
54
        deleted: 'danger'
55
      }
56
      return statusMap[status]
89
    typeFilter(type) {
90
57 91
    }
58 92
  },
59 93
  created() {
60
    this.fetchData()
94
    this.getList()
61 95
  },
62 96
  methods: {
63
    fetchData() {
97
    getList() {
64 98
      this.listLoading = true
65
      getList(this.listQuery).then(response => {
66
        this.list = response.data.items
99
      this.list = this.dataList.data
100
      this.total = this.dataList.total
101
      setTimeout(() => {
67 102
        this.listLoading = false
103
      }, 1.5 * 1000)
104
      /*  fetchList(this.listQuery).then(response => {
105
        this.list = this.dataList.data
106
        this.total =  this.dataList.total
107
        setTimeout(() => {
108
          this.listLoading = false
109
        }, 1.5 * 1000)
110
      })  */
111
    },
112
    handleFilter() {
113
      this.listQuery.page = 1
114
      //  this.getList()
115
    },
116
    handleSizeChange(val) {
117
      this.listQuery.limit = val
118
      //  this.getList()
119
    },
120
    handleCurrentChange(val) {
121
      this.listQuery.page = val
122
      //  this.getList()
123
    },
124
    handleModifyStatus(row, status) {
125
      this.$confirm('已成功删除该传感器', '提示', {
126
        confirmButtonText: '确定',
127
        cancelButtonText: '取消',
128
        type: 'success',
129
        showCancelButton: false,
130
        center: true
131
      }).then(() => {
132
133
      }).catch(() => {
134
68 135
      })
136
      /*  this.$confirm('确实要删除:桥梁12324吗?, 是否继续?', '提示', {
137
      confirmButtonText: '确定',
138
          cancelButtonText: '取消',
139
          type: 'warning',
140
          center: true
141
        }).then(() => {
142
          this.$message({
143
            type: 'success',
144
            message: '删除成功!'
145
          });
146
        }).catch(() => {
147
148
        }); */
149
    },
150
    resetTemp() {
151
152
    },
153
    handleCreate() {
154
155
    },
156
    handleUpdate(row) {
69 157
    }
70 158
  }
71 159
}

+ 114 - 31
src/views/baseInfoManage/serversConfig/index.vue

@ -1,71 +1,154 @@
1 1
<template>
2 2
  <div class="app-container">
3
    <el-table :data="list" v-loading="listLoading" element-loading-text="Loading" border fit highlight-current-row>
4
      <el-table-column align="center" label='ID' width="95">
5
        <template slot-scope="scope">
6
          {{scope.$index}}
7
        </template>
8
      </el-table-column>
9
      <el-table-column label="Title">
3
    <div class="filter-container">
4
      <el-input style="width: 350px;margin-right:40px" class="filter-item" placeholder="所属桥梁编号" v-model="listQuery.title">
5
      </el-input>
6
       <el-input style="width: 350px;" class="filter-item" placeholder="服务器编号" v-model="listQuery.importance">
7
      </el-input>
8
      <el-button class="filter-item" style="margin-left: 10px;" @click="handleFilter" type="primary">查找</el-button>
9
      <el-button class="filter-item" style="margin-left: 200px;" @click="handleCreate" type="primary" icon="el-icon-edit">添加服务器</el-button>
10
    </div>
11
12
    <el-table :key='tableKey' :data="list" v-loading="listLoading" border fit highlight-current-row
13
      style="width: 100%;min-height:550px;">
14
      <el-table-column width="150px" align="center" label="服务器编号">
10 15
        <template slot-scope="scope">
11
          {{scope.row.title}}
16
          <span>{{scope.row.num}}</span>
12 17
        </template>
13 18
      </el-table-column>
14
      <el-table-column label="Author" width="110" align="center">
19
      <el-table-column width="150px" align="center" label="采集盒数量">
15 20
        <template slot-scope="scope">
16
          <span>{{scope.row.author}}</span>
21
          <span>{{scope.row.name}}</span>
17 22
        </template>
18 23
      </el-table-column>
19
      <el-table-column label="Pageviews" width="110" align="center">
24
      <el-table-column min-width="150px" align="center" label="所属桥梁">
20 25
        <template slot-scope="scope">
21
          {{scope.row.pageviews}}
26
          <span>{{scope.row.address}}</span>
22 27
        </template>
23 28
      </el-table-column>
24
      <el-table-column class-name="status-col" label="Status" width="110" align="center">
29
      <el-table-column min-width="200px" align="center" label="备注信息">
25 30
        <template slot-scope="scope">
26
          <el-tag :type="scope.row.status | statusFilter">{{scope.row.status}}</el-tag>
31
          <span>{{scope.row.message}}</span>
27 32
        </template>
28 33
      </el-table-column>
29
      <el-table-column align="center" prop="created_at" label="Display_time" width="200">
30
        <template slot-scope="scope">
31
          <i class="el-icon-time"></i>
32
          <span>{{scope.row.display_time}}</span>
34
      <el-table-column align="center" label="Actions" width="230" class-name="small-padding fixed-width">
35
        <template slot-scope="scope"> 
36
          <el-button type="primary" size="mini" @click="handleUpdate(scope.row)">编辑</el-button> 
37
          <el-button size="mini" type="danger" @click="handleModifyStatus(scope.row,'deleted')">删除
38
          </el-button>
33 39
        </template>
34 40
      </el-table-column>
35 41
    </el-table>
42
43
    <div class="pagination-container" style="text-align:center;">
44
      <el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="listQuery.page" :page-size="listQuery.limit" layout="prev, pager, next, jumper" :total="total">
45
      </el-pagination>
46
    </div>
36 47
  </div>
37 48
</template>
38 49
39 50
<script>
40
import { getList } from '@/api/table'
51
//  import { fetchList, fetchPv, createArticle, updateArticle } from '@/api/article'
52
import waves from '@/directive/waves'
53
//  import { parseTime } from '@/utils'
41 54
42 55
export default {
56
  name: 'complexTable',
57
  directives: {
58
    waves
59
  },
43 60
  data() {
44 61
    return {
62
      tableKey: 0,
45 63
      list: null,
46
      listLoading: true
64
      dataList: { total: 20, data: [{ num: 1111, name: '北京科技大学', address: '北京', org: '机电学院', message: '想落户上海,你还差几分?抢人才看出身,清华北大照单全收' }] },
65
      total: null,
66
      listLoading: true,
67
      listQuery: {
68
        page: 1,
69
        limit: 10,
70
        importance: undefined,
71
        title: undefined,
72
        type: undefined,
73
        sort: '+id'
74
      },
75
      dialogFormVisible: false,
76
      dialogStatus: '',
77
      textMap: {
78
        update: 'Edit',
79
        create: 'Create'
80
      }
47 81
    }
48 82
  },
49 83
  filters: {
50
    statusFilter(status) {
51
      const statusMap = {
52
        published: 'success',
53
        draft: 'gray',
54
        deleted: 'danger'
55
      }
56
      return statusMap[status]
84
    typeFilter(type) {
85
57 86
    }
58 87
  },
59 88
  created() {
60
    this.fetchData()
89
    this.getList()
61 90
  },
62 91
  methods: {
63
    fetchData() {
92
    getList() {
64 93
      this.listLoading = true
65
      getList(this.listQuery).then(response => {
66
        this.list = response.data.items
94
      this.list = this.dataList.data
95
      this.total = this.dataList.total
96
      setTimeout(() => {
67 97
        this.listLoading = false
98
      }, 1.5 * 1000)
99
      /*  fetchList(this.listQuery).then(response => {
100
        this.list = this.dataList.data
101
        this.total =  this.dataList.total
102
        setTimeout(() => {
103
          this.listLoading = false
104
        }, 1.5 * 1000)
105
      })  */
106
    },
107
    handleFilter() {
108
      this.listQuery.page = 1
109
      //  this.getList()
110
    },
111
    handleSizeChange(val) {
112
      this.listQuery.limit = val
113
      //  this.getList()
114
    },
115
    handleCurrentChange(val) {
116
      this.listQuery.page = val
117
      //  this.getList()
118
    },
119
    handleModifyStatus(row, status) {
120
      this.$confirm('已成功删除该传感器', '提示', {
121
        confirmButtonText: '确定',
122
        cancelButtonText: '取消',
123
        type: 'success',
124
        showCancelButton: false,
125
        center: true
126
      }).then(() => {
127
128
      }).catch(() => {
129
68 130
      })
131
      /*  this.$confirm('确实要删除:桥梁12324吗?, 是否继续?', '提示', {
132
      confirmButtonText: '确定',
133
          cancelButtonText: '取消',
134
          type: 'warning',
135
          center: true
136
        }).then(() => {
137
          this.$message({
138
            type: 'success',
139
            message: '删除成功!'
140
          });
141
        }).catch(() => {
142
143
        }); */
144
    },
145
    resetTemp() {
146
147
    },
148
    handleCreate() {
149
150
    },
151
    handleUpdate(row) {
69 152
    }
70 153
  }
71 154
}