| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- <template>
- <view>
- <view class="status_bar"></view>
- <view style="position: fixed;top:44px;z-index: 100;width: 100%;">
- <uni-nav-bar right-icon="search" title="设备列表" @clickRight="clickRight"></uni-nav-bar>
- </view>
- <view class="utabs_box">
- <view class="utabs">
- <u-tabs :list="list" :is-scroll="true" :current="current" @change="change" item-width="140" font-size="24" gutter="20"
- bar-width="60" active-color="#42b983"></u-tabs>
- </view>
- </view>
- <view class="list">
- <view class="list_item" v-for="(item,index) in eqlistdata" :key="index" @click="historys(item)">
- <view class="list_item_top">
- <p class="p1">
- <image :src="images[current].path" mode=""></image>
- {{item.device_name==''?"--":item.device_name}}
- </p>
- <p :class="[item.is_online?'p2':'p_out']">{{item.is_online?"在线":"离线"}}</p>
- </view>
- <view class="list_item_text">
- <p>设备ID:{{item.imei}}</p>
- <p>适配用户:{{item.device_user==''?"无":item.device_user}}</p>
- <p>添加设备时间:{{item.addtime|timeFormat()}}</p>
- </view>
- <view class="list_item_btn" @click.stop="modification(item)">
- 信息修改
- </view>
- </view>
- </view>
- <view class="top" v-if="isTop" @click="top">
- <image src="../../static/image/6209a98f0cb3b5086f2ca36152c9269.png" mode=""></image>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list: [{
- name: "杀虫灯"
- }, {
- name: "测报灯"
- }, {
- name: "智能性诱"
- }, {
- name: "环境检测"
- }, {
- name: "监控设备"
- }, {
- name: "孢子仪"
- }],
- current: 0,
- page: 1,
- size: 10,
- images: [{
- path: "../../static/image/fourMoodBase/3.png", //
- id: 2
- },
- {
- path: "../../static/image/fourMoodBase/1.png",
- id: 3
- }, {
- path: "../../static/image/fourMoodBase/6.png",
- id: 4
- }, {
- path: "../../static/image/fourMoodBase/5.png",
- id: 5
- }, {
- path: "../../static/image/fourMoodBase/2.png",
- id: 6
- }, {
- path: "../../static/image/fourMoodBase/4.png",
- id: 7
- }
- ],
- eqlistdata: [],
- isTop: false
- }
- },
- methods: {
- async eqlist() { //设备列表
- const res = await this.$myRequest({
- url: '/api/api_gateway?method=forecast.worm_lamp.lamp_list',
- data: {
- device_type_id: this.current + 2,
- page: this.page,
- page_size: this.size,
- }
- })
- this.eqlistdata = this.eqlistdata.concat(res.data)
- console.log(res)
- },
- //camera.camera_manage.list_camera
- async camera() { //设备列表
- const res = await this.$myRequest({
- url: '/api/api_gateway?method=camera.camera_manage.list_camera',
- data: {
- page_size: 1,
- }
- })
- this.accessToken = res.accessToken
- },
- change(index) { //头部导航栏的点击
- console.log(index)
- this.page = 1
- this.eqlistdata = []
- this.current = index
- this.eqlist()
- },
- clickRight() { //搜索
- uni.navigateTo({
- url: "./search?id=" + (this.current + 2)
- })
- },
- modification(item) {
- uni.navigateTo({
- url: "./modification?data=" + JSON.stringify(item) + "&id=" + (this.current + 2)
- })
- },
- top() {
- uni.pageScrollTo({
- scrollTop: 0,
- duration: 500
- })
- },
- historys(item) {
- switch (this.current + 2) {
- case 2:
- uni.navigateTo({
- url: "../prevention/equipmentdetails?shebei=" + JSON.stringify(item)
- })
- break;
- case 5:
- console.log(item)
- var obj = {}
- obj.d_id = item.d_id
- obj.equip_id = item.imei
- obj.is_online = item.is_online
- obj.lat = item.lat
- obj.lng = item.lng
- obj.equip_name = item.device_name
- obj.uptime = item.addtime
- uni.navigateTo({
- url: "../environment/equipment?shebei=" + JSON.stringify(obj)
- })
- break;
- case 6:
- uni.navigateTo({
- url: "/pages/webview?device_id=" + item.imei + "&accessToken=" + this.accessToken
- })
- break;
- default:
- item.type = this.current + 2
- uni.navigateTo({
- url: "../cb/equip-detail/equip-detail?info=" + JSON.stringify(item)
- })
- break;
- }
- }
- },
- onLoad() {
- this.eqlist()
- this.camera()
- },
- onReachBottom() {
- this.page++
- this.eqlist()
- },
- onPageScroll(e) { //nvue暂不支持滚动监听,可用bindingx代替
- if (e.scrollTop > 200) { //距离大于200时显示
- this.isTop = true
- } else { //距离小于200时隐藏
- this.isTop = false
- }
- }
- }
- </script>
- <style lang="scss">
- /deep/.uni-icons {
- font-size: 40rpx !important;
- }
- .utabs_box {
- width: 100%;
- position: fixed;
- top: 88px;
- background-color: #FFFFFF;
- z-index: 100;
- .utabs {
- width: 95%;
- margin: 0 auto;
- }
- }
- .list {
- width: 100%;
- background-color: #FDFDFD;
- margin-top: 280rpx;
- margin-bottom: 100rpx;
- .list_item {
- width: 90%;
- margin: 20rpx auto;
- padding: 20rpx 20rpx;
- box-sizing: border-box;
- position: relative;
- background-color: #FFFFFF;
- box-shadow: 0 0 10rpx #bcb9ca;
- .list_item_top {
- display: flex;
- justify-content: space-between;
- .p1 {
- height: 60rpx;
- line-height: 60rpx;
- font-size: 28rpx;
- image {
- width: 40rpx;
- height: 40rpx;
- vertical-align: text-top;
- margin-right: 20rpx;
- }
- }
- .p2 {
- height: 60rpx;
- line-height: 60rpx;
- font-size: 28rpx;
- color: #42b983;
- }
- .p_out {
- height: 60rpx;
- line-height: 60rpx;
- font-size: 28rpx;
- color: red;
- }
- }
- .list_item_text {
- margin-top: 20rpx;
- p {
- font-size: 24rpx;
- color: #636363;
- margin-top: 10rpx;
- }
- p:first-child {
- font-size: 28rpx;
- font-weight: 700;
- }
- }
- .list_item_btn {
- width: 126rpx;
- color: #42b983;
- height: 40rpx;
- text-align: center;
- border: 1rpx solid #42b983;
- border-radius: 25rpx;
- font-size: 24rpx;
- line-height: 35rpx;
- position: absolute;
- top: 136rpx;
- right: 20rpx;
- }
- }
- }
- .top {
- position: fixed;
- right: 30px;
- bottom: 100px;
- z-index: 100;
- image {
- width: 100rpx;
- height: 100rpx;
- }
- }
- </style>
|