| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- <template>
- <view>
- <view class="status_bar"></view>
- <view style="position: fixed;z-index: 100;background-color: #FFFFFF;height: 80px;top: 40px;">
- <uni-nav-bar @clickLeft="clickLeft" left-icon="back" left-text="返回" title="设备搜索"></uni-nav-bar>
- <view class="search_top_input">
- <input type="text" value="" placeholder="请输入设备ID" v-model="imports" />
- <u-icon name="search" size="40" class="icon" @click="search"></u-icon>
- </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="$imageURL+'/bigdata_app'+ imgpath[0].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>
- <p>添加设备时间:{{item.uptime|timeFormat()}}</p>
- <p>设备已运行:{{item.days}}天</p>
- </view>
- <view class="list_item_btn" v-if="infoalter" @click.stop="modification(item)">
- 修改名称
- </view>
- </view>
- <view class="none" v-if="eqlistdatatf">
- 暂无数据
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- Debounce,
- Throttle
- } from "../../../util/anitthro.js"
- export default {
- data() {
- return {
- imports: '',
- eqlistdata: [],
- images: [{
- name: "杀虫灯",
- path: "/image/fourMoodBase/3.png", //
- id: 2
- },
- {
- name: "测报灯",
- path: "/image/fourMoodBase/1.png",
- id: 3
- }, {
- name: "性诱测报",
- path: "/image/fourMoodBase/6.png",
- id: 4
- }, {
- name: "环境监测",
- path: "/image/fourMoodBase/5.png",
- id: 5
- }, {
- name: "监控设备",
- path: "/image/fourMoodBase/2.png",
- id: 6
- }, {
- name: "孢子仪",
- path: "/image/fourMoodBase/4.png",
- id: 7
- },
- {
- name: "性诱2.0",
- path: "/image/fourMoodBase/10.png",
- id: 10
- }
- ],
- eqlistdatatf: false, //暂无数据
- indexs: 2, //设备id
- page: 1,
- size: 10,
- infoalter:false,
- imgpath:[]
- }
- },
- methods: {
- async eqlist() { //设备列表
- const res = await this.$myRequest({
- url: '/api/api_gateway?method=forecast.worm_lamp.lamp_list',
- data: {
- device_type_id: this.indexs,
- device_id: this.imports,
- page: this.page,
- page_size: this.size,
- }
- })
- this.eqlistdata = this.eqlistdata.concat(res.data)
- var newtime = +new Date()/1000
- for(var i=0;i<this.eqlistdata.length;i++){
- var days = (newtime-this.eqlistdata[i].uptime)/60/60/24
- this.eqlistdata[i].days = Math.round(days)
- }
- console.log(this.eqlistdata)
- if (this.eqlistdata.length == 0) {
- this.eqlistdatatf = true
- } else {
- this.eqlistdatatf = false
- }
- },
- clickLeft() { //返回
- uni.switchTab({
- url: "./index"
- })
- },
- search() { //搜索
- // this.eqlistdata = []
- // this.page = 1
- // this.eqlist()
- // console.log(1)
- this.system(this.imports)
- },
- system(str){
- var arr = str.split(",")
- console.log(arr)
- },
- searchinput() {
- Debounce(() => {
- this.eqlistdata = []
- this.page = 1
- this.eqlist()
- }, 1000)()
- },
- modification(item) {
- uni.navigateTo({
- url: "./modification?data=" + JSON.stringify(item) + "&id=" + (this.indexs)
- })
- },
- historys(item) {
- switch (Number(this.indexs)) {
- 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/webview?device_id=" + item.imei + "&accessToken=" + this.accessToken
- })
- break;
- default:
- item.type = this.indexs
- uni.navigateTo({
- url: "../cb/equip-detail/equip-detail?info=" + JSON.stringify(item)
- })
- break;
- }
- }
- },
- onLoad(option) {
- this.indexs = option.id
- this.imgpath = this.images.filter((item)=>{
- return item.id == option.id
- })
- console.log(this.imgpath)
- uni.getStorage({
- key:"jurisdiction",
- success:(res)=>{
- console.log(JSON.parse(res.data))
- let items = JSON.parse(res.data).filter((item)=>{
- return item.purview_name == "设备管理"
- })
- let items2 = items[0].children.filter((item)=>{
- return item.purview_name == "设备列表"
- })
- this.infoalter = items2[0].children.some((item)=>{
- return item.purview_name == "修改名称" || item.purview_name == "添加位置"
- })
- },
- })
- },
- onReachBottom() {
- this.page++
- this.eqlist()
- },
- onBackPress(options) {
- if (options.from === 'navigateBack') {
- return false;
- }
- this.clickLeft();
- return true;
- },
- }
- </script>
- <style lang="scss">
- .search_top_input {
- width: 90%;
- height: 54rpx;
- background-color: #E4E4E4;
- border-radius: 27rpx;
- position: absolute;
- top: 100rpx;
- right: 5%;
- padding-top: 8rpx;
- box-sizing: border-box;
- input {
- width: 80%;
- // text-indent: 1rem;
- font-size: 26rpx;
- padding-left: 20px;
- }
- .icon{
- position: absolute;
- top: 8rpx;
- right: 26rpx;
- }
- }
- .search_bot_input {
- width: 80%;
- height: 54rpx;
- background-color: #E4E4E4;
- border-radius: 27rpx;
- position: absolute;
- top: 18px;
- right: 18rpx;
- box-sizing: border-box;
- padding-top: 8rpx;
- input {
- width: 85%;
- text-indent: 1rem;
- font-size: 26rpx;
- }
- .icon {
- position: absolute;
- top: 8rpx;
- right: 26rpx;
- }
- }
- .list {
- width: 100%;
- background-color: #FDFDFD;
- position: absolute;
- top: 120px;
- .list_item {
- width: 90%;
- margin: 20rpx auto;
- padding: 10rpx 20rpx;
- position: relative;
- background-color: #FFFFFF;
- box-sizing: border-box;
- 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;
- }
- }
- .none {
- width: 100%;
- height: 100rpx;
- line-height: 100rpx;
- font-size: 32rpx;
- text-align: center;
- }
- }
- </style>
|