Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
U
uin-app-zehong
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
冯超鹏
uin-app-zehong
Commits
98d11b03
Commit
98d11b03
authored
Sep 23, 2020
by
冯超鹏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交新模块
parent
c54b85fe
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
669 additions
and
365 deletions
+669
-365
mi-map.vue
components/mi-map/mi-map.vue
+324
-318
http.js
components/utils/http.js
+1
-1
home.vue
pages/adddevice/home.vue
+220
-35
home.vue
pages/component/home.vue
+124
-11
No files found.
components/mi-map/mi-map.vue
View file @
98d11b03
This diff is collapsed.
Click to expand it.
components/utils/http.js
View file @
98d11b03
const
baseUrl
=
'http://
sjzzhanglutpddns.utools.club
/api/'
;
const
baseUrl
=
'http://
36.148.1.58:81
/api/'
;
const
httpRequest
=
(
opts
,
data
)
=>
{
let
httpDefaultOpts
=
{
url
:
baseUrl
+
opts
.
url
,
...
...
pages/adddevice/home.vue
View file @
98d11b03
This diff is collapsed.
Click to expand it.
pages/component/home.vue
View file @
98d11b03
...
...
@@ -10,33 +10,146 @@
</view>
<scroll-view
scroll-x
class=
"bg-white nav text-center"
>
<view
class=
"cu-item"
:class=
"index==TabCur?'text-blue cur':''"
v-for=
"(item,index) in tagdata"
:key=
"index"
@
tap=
"tabSelect"
:data-id=
"index"
:data-tagname=
"item"
>
{{
item
}}
:data-id=
"index"
:data-tagname=
"item
.name"
:data-type=
"item.type
"
>
{{
item
.
name
}}
</view>
</scroll-view>
<view
class=
"cu-list menu-avatar"
style=
"margin-top: 12upx;margin-bottom: 120upx;"
>
<view
class=
"cu-item"
v-for=
"(item,index) in devicelist"
:key=
"index"
@
click=
"devicceinfo(item.id)"
>
<view
class=
"cu-avatar round lg"
:style=
"item.status_name === '正常' ? icon_device_li_green : icon_device_li "
></view>
<view
class=
"content"
>
<view
class=
"text-grey"
>
{{
item
.
usernickname
}}
</view>
<view
class=
"text-gray text-sm"
>
设备编号:
{{
item
.
devicenum
}}
</view>
</view>
<view
class=
"action"
:style=
"item.status_name.length === 5 ? 'margin-right:60upx;' : (item.status_name.length === 4 ? 'margin-right:30upx;' : '')"
style=
"margin-top:25upx;"
>
<view
:class=
"item.status_name === '正常'? 'cu-tag bg-green' : 'cu-tag bg-red' "
>
{{
item
.
status_name
}}
</view>
</view>
</view>
<view
class=
"loadingjiazai"
v-if=
"loadingjiazai || count > 10"
>
<view
class=
"cu-load bg-grey"
v-if=
"overs"
:class=
"!isLoad?'loading':'over'"
></view>
<view
class=
"cu-load bg-grey"
v-if=
"isover"
@
click=
"adddevivelist"
>
点击加载
</view>
</view>
</view>
</view>
</view>
</
template
>
<
script
>
import
http
from
'@/components/utils/http.js'
;
export
default
{
data
()
{
return
{
TabCur
:
0
,
tagdata
:
[
'危化监测'
,
'消防监测'
],
TabCur
:
0
,
icon_device_li_green
:
'background-image: url(../../static/img/icon_device_li_green.png)'
,
icon_device_li
:
'background-image:url(../../static/img/icon_device_li.png)'
,
tagdata
:
[{
'name'
:
'危化监测'
,
'type'
:
2
,
},
{
'name'
:
'消防监测'
,
'type'
:
1
}],
tagname
:
'危化监测'
,
page
:
1
,
limit
:
10
,
devicelist
:
[],
count
:
''
,
loadingjiazai
:
false
,
isover
:
true
,
overs
:
false
,
type
:
''
,
isLoad
:
false
,
};
},
methods
:
{
tabSelect
(
e
)
{
this
.
TabCur
=
e
.
currentTarget
.
dataset
.
id
;
this
.
tagname
=
e
.
currentTarget
.
dataset
.
tagname
;
}
tabSelect
(
e
)
{
this
.
page
=
1
;
this
.
isover
=
true
;
this
.
overs
=
false
;
this
.
TabCur
=
e
.
currentTarget
.
dataset
.
id
;
this
.
tagname
=
e
.
currentTarget
.
dataset
.
tagname
;
this
.
type
=
e
.
currentTarget
.
dataset
.
type
;
this
.
control
(
e
.
currentTarget
.
dataset
.
type
)
},
control
(
type
)
{
uni
.
showLoading
({
title
:
'加载数据中...'
});
let
opts
=
{
url
:
'devices/control'
,
method
:
'get'
};
let
data
=
{
page
:
this
.
page
,
limit
:
this
.
limit
,
type
:
type
===
undefined
?
'2'
:
type
};
http
.
httpRequest
(
opts
,
data
).
then
(
res
=>
{
uni
.
hideLoading
();
this
.
devicelist
=
res
.
data
.
data
.
devicelist
;
this
.
count
=
res
.
data
.
data
.
count
;
},
error
=>
{
console
.
log
(
error
);
})
},
//跳转设备详情
devicceinfo
(
id
)
{
let
opts
=
{
url
:
'huinapphome/devicedatainfo/'
+
id
,
method
:
'get'
};
http
.
httpRequest
(
opts
).
then
(
res
=>
{
if
(
res
.
data
.
code
===
200
)
{
uni
.
navigateTo
({
url
:
'/pages/basics/deviceinfo?data='
+
JSON
.
stringify
(
res
.
data
.
data
),
});
}
},
error
=>
{
console
.
log
(
error
);
})
},
adddevivelist
()
{
++
this
.
page
;
let
data
=
{
page
:
this
.
page
,
limit
:
this
.
limit
,
type
:
this
.
type
,
};
let
opts
=
{
url
:
'devices/control'
,
method
:
'get'
};
http
.
httpRequest
(
opts
,
data
).
then
(
res
=>
{
var
isLoadding
=
res
.
data
.
data
.
devicelist
.
length
>=
1
?
true
:
false
;
let
arr
=
res
.
data
.
data
.
devicelist
arr
.
map
((
val
,
index
,
arr
)
=>
{
this
.
devicelist
.
push
(
val
);
})
if
(
res
.
data
.
data
.
devicelist
.
length
!=
0
)
{
this
.
isover
=
true
;
//点击加载
this
.
overs
=
false
;
}
else
{
this
.
isover
=
false
;
//点击加载
this
.
overs
=
true
;
this
.
isLoad
=
true
;
}
},
error
=>
{
console
.
log
(
error
);
})
},
},
created
()
{
// this.
created
()
{
this
.
control
();
},
}
</
script
>
<
style
>
<
style
>
.loadingjiazai
{
margin-top
:
20
rpx
;
filter
:
alpha
(
Opacity
=
60
);
-moz-opacity
:
0.6
;
opacity
:
0.6
;
}
</
style
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment