Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
DoorLock
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
朱建香
DoorLock
Commits
b8a266dc
Commit
b8a266dc
authored
Jan 02, 2018
by
朱建香
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2018/01/02
1.历史记录上拉加载功能结合
parent
90a08f67
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
68 additions
and
324 deletions
+68
-324
dev/src/lang/zh.json
+2
-2
dev/src/view/device/v_alarmInfo.js
+8
-45
dev/src/view/device/v_hijackRecord.js
+6
-38
dev/src/view/device/v_opendoorRecord.js
+7
-46
web/lib/less/device/recordList.less
+24
-97
web/resources/lang/zh.json
+2
-2
web/view/device/alarmInfo.html
+0
-3
web/view/device/hijackRecord.html
+0
-3
web/view/device/opendoorRecord.html
+0
-3
web/view/device/recordList.css
+19
-85
No files found.
dev/src/lang/zh.json
View file @
b8a266dc
{
"loading"
:
"loading..."
,
"scroll"
:
{
"clickToLoadMore"
:
"
点击
加载更多"
,
"loading"
:
"loading
...
"
"clickToLoadMore"
:
"
上拉
加载更多"
,
"loading"
:
"loading"
},
"btn"
:
{
"confirm"
:
"确定"
,
...
...
dev/src/view/device/v_alarmInfo.js
View file @
b8a266dc
...
...
@@ -14,7 +14,7 @@ import {iot, uPublic, uComponents} from '../../public/public.js';
iot
.
ready
(
init
);
function
init
()
{
//通用 list、dialog、loading组件
uPublic
.
componentsInit
([
'u-list'
,
'u-dialog'
,
'u-loading'
,
'u-refresh'
]);
uPublic
.
componentsInit
([
'u-list'
,
'u-dialog'
,
'u-loading'
]);
uPublic
.
closeSlideBack
();
const
app
=
new
Vue
({
data
:{
...
...
@@ -23,27 +23,11 @@ function init() {
list
:[],
startId
:
0
,
deviceId
:
null
,
flag
:
true
,
refreshDisabled
:
true
flag
:
true
},
mounted
(){
uComponents
.
showLoading
(
this
);
resolve
(
this
);
let
ulistDom
=
this
.
$refs
.
ulist
.
$el
;
console
.
log
(
ulistDom
);
let
self
=
this
;
ulistDom
.
onscroll
=
function
()
{
console
.
log
(
ulistDom
.
offsetHeight
+
' '
+
ulistDom
.
offsetTop
);
console
.
log
(
ulistDom
.
scrollTop
);
console
.
log
(
ulistDom
.
scrollHeight
);
let
sum
=
ulistDom
.
offsetHeight
+
ulistDom
.
scrollTop
;
console
.
log
(
sum
);
//滑到底了
if
(
sum
==
ulistDom
.
scrollHeight
){
self
.
refreshDisabled
=
false
;
ulistDom
.
style
.
overflow
=
'hidden'
;
}
}
},
methods
:{
getList
(){
...
...
@@ -87,7 +71,8 @@ function initComponentsConfig() {
class
:
'custom-list'
,
list
:
[],
tip
:
Vue
.
t
(
'alarmInfo.noInfoTip'
),
// pagesize: PAGE_SIZE
pagesize
:
PAGE_SIZE
,
pullup
:
true
}
},
dialog
:
{
...
...
@@ -99,13 +84,6 @@ function initComponentsConfig() {
initParam
:
{
class
:
'custom-loading'
}
},
refresh
:
{
initParam
:
{
text
:
[
'下拉刷新'
,
'松开加载'
,
'正在刷新'
,
'刷新成功'
],
class
:
'custom-refersh'
,
pullUp
:
false
}
}
}
}
...
...
@@ -113,14 +91,15 @@ function initComponentsConfig() {
// 获取历史记录
function
resolve
(
self
)
{
self
.
setDeviceId
(
iot
.
navigator
.
getExtras
().
deviceId
);
uComponents
.
showLoading
(
self
);
//
uComponents.showLoading(self);
iot
.
business
.
api
.
sendCustom
(
'lock/getHistoryRecord'
,
{
data
:
{
device_id
:
self
.
getDeviceId
(),
action
:
2
,
start_id
:
self
.
getStartId
(),
page_size
:
PAGE_SIZE
page_size
:
PAGE_SIZE
,
pullUpLoading
:
true
},
success
:
async
(
response
)
=>
{
console
.
log
(
response
);
...
...
@@ -148,16 +127,6 @@ function resolve(self) {
self
.
setStartId
(
record
[
record
.
length
-
1
].
id
);
}
//更新列表数据
uComponents
.
hideRefresh
(
self
);
let
ulistDom
=
self
.
$refs
.
ulist
.
$el
;
let
sum
=
ulistDom
.
offsetHeight
+
ulistDom
.
scrollTop
;
//滑到底了
ulistDom
.
style
.
overflow
=
'auto'
;
self
.
refreshDisabled
=
true
;
// if(sum != ulistDom.scrollHeight){
// ulistDom.style.overflow = 'auto';
// self.refreshDisabled = true;
// }
uComponents
.
changeList
(
self
,
self
.
getList
());
}
else
{
}
...
...
@@ -189,7 +158,3 @@ mui.back = function(){
function
listLoadTap
(
self
)
{
resolve
(
self
);
}
\ No newline at end of file
function
refreshFresh
(
self
){
resolve
(
self
);
}
\ No newline at end of file
dev/src/view/device/v_hijackRecord.js
View file @
b8a266dc
...
...
@@ -15,7 +15,7 @@ import {iot, uPublic, uComponents} from '../../public/public.js';
iot
.
ready
(
init
);
function
init
()
{
//通用 list、dialog、loading组件
uPublic
.
componentsInit
([
'u-list'
,
'u-dialog'
,
'u-loading'
,
'u-refresh'
]);
uPublic
.
componentsInit
([
'u-list'
,
'u-dialog'
,
'u-loading'
]);
uPublic
.
closeSlideBack
();
const
app
=
new
Vue
({
data
:{
...
...
@@ -25,27 +25,11 @@ function init() {
startId
:
0
,
deviceId
:
null
,
userInfo
:
[],
flag
:
true
,
refreshDisabled
:
true
flag
:
true
},
mounted
(){
uComponents
.
showLoading
(
this
);
resolve
(
this
);
let
ulistDom
=
this
.
$refs
.
ulist
.
$el
;
console
.
log
(
ulistDom
);
let
self
=
this
;
ulistDom
.
onscroll
=
function
()
{
console
.
log
(
ulistDom
.
offsetHeight
+
' '
+
ulistDom
.
offsetTop
);
console
.
log
(
ulistDom
.
scrollTop
);
console
.
log
(
ulistDom
.
scrollHeight
);
let
sum
=
ulistDom
.
offsetHeight
+
ulistDom
.
scrollTop
;
console
.
log
(
sum
);
//滑到底了
if
(
sum
==
ulistDom
.
scrollHeight
){
self
.
refreshDisabled
=
false
;
ulistDom
.
style
.
overflow
=
'hidden'
;
}
}
},
methods
:{
getList
(){
...
...
@@ -94,7 +78,8 @@ function initComponentsConfig() {
class
:
'custom-list'
,
list
:
[],
tip
:
Vue
.
t
(
'hijackRecord.noRecordTip'
),
// pagesize: PAGE_SIZE
pagesize
:
PAGE_SIZE
,
pullup
:
true
}
},
dialog
:
{
...
...
@@ -106,20 +91,13 @@ function initComponentsConfig() {
initParam
:
{
class
:
'custom-loading'
}
},
refresh
:
{
initParam
:
{
text
:
[
'下拉刷新'
,
'松开加载'
,
'正在刷新'
,
'刷新成功'
],
class
:
'custom-refersh'
,
pullUp
:
false
}
}
}
}
function
resolve
(
self
)
{
self
.
setDeviceId
(
iot
.
navigator
.
getExtras
().
deviceId
);
uComponents
.
showLoading
(
self
);
//
iot
.
business
.
api
.
sendCustom
(
'lock/getHistoryRecord'
,
{
data
:
{
...
...
@@ -167,16 +145,6 @@ function initComponentsConfig() {
self
.
setStartId
(
record
[
record
.
length
-
1
].
id
);
}
//更新列表数据
uComponents
.
hideRefresh
(
self
);
let
ulistDom
=
self
.
$refs
.
ulist
.
$el
;
let
sum
=
ulistDom
.
offsetHeight
+
ulistDom
.
scrollTop
;
//滑到底了
ulistDom
.
style
.
overflow
=
'auto'
;
self
.
refreshDisabled
=
true
;
// if(sum != ulistDom.scrollHeight){
// ulistDom.style.overflow = 'auto';
// self.refreshDisabled = true;
// }
uComponents
.
changeList
(
self
,
self
.
getList
());
}
else
{
}
...
...
dev/src/view/device/v_opendoorRecord.js
View file @
b8a266dc
...
...
@@ -14,7 +14,7 @@ import {iot, uPublic, uComponents} from '../../public/public.js';
iot
.
ready
(
init
);
function
init
()
{
//通用 list、dialog、loading组件
uPublic
.
componentsInit
([
'u-list'
,
'u-dialog'
,
'u-loading'
,
'u-refresh'
]);
uPublic
.
componentsInit
([
'u-list'
,
'u-dialog'
,
'u-loading'
]);
uPublic
.
closeSlideBack
();
const
app
=
new
Vue
({
data
:{
...
...
@@ -24,28 +24,11 @@ function init() {
startId
:
0
,
deviceId
:
null
,
userInfo
:
[],
flag
:
true
,
refreshDisabled
:
false
flag
:
true
},
mounted
(){
uComponents
.
showLoading
(
this
);
resolve
(
this
);
let
ulistDom
=
this
.
$refs
.
ulist
.
$el
;
console
.
log
(
ulistDom
);
let
self
=
this
;
// ulistDom.onscroll = function () {
//
// console.log(ulistDom.offsetHeight+' '+ulistDom.offsetTop);
// console.log(ulistDom.scrollTop);
// console.log(ulistDom.scrollHeight);
//
// let sum = ulistDom.offsetHeight+ulistDom.scrollTop;
// console.log(sum);
// //滑到底了
// if(sum == ulistDom.scrollHeight){
// self.refreshDisabled = false;
// ulistDom.style.overflow = 'hidden';
// }
// }
},
methods
:{
getList
(){
...
...
@@ -73,7 +56,7 @@ function init() {
this
.
deviceId
=
id
;
},
onListLoadTap
(){
//
listLoadTap(this);
listLoadTap
(
this
);
},
onRefreshFresh
(){
refreshFresh
(
this
);
...
...
@@ -94,7 +77,8 @@ function initComponentsConfig() {
class
:
'custom-list'
,
list
:
[],
tip
:
Vue
.
t
(
'opendoorRecord.noRecordTip'
),
// pagesize: PAGE_SIZE
pagesize
:
PAGE_SIZE
,
pullup
:
true
}
},
dialog
:
{
...
...
@@ -106,13 +90,6 @@ function initComponentsConfig() {
initParam
:
{
class
:
'custom-loading'
}
},
refresh
:
{
initParam
:
{
text
:
[
'下拉刷新'
,
'松开加载'
,
'正在刷新'
,
'刷新成功'
],
class
:
'custom-refersh'
,
pullUp
:
false
}
}
}
}
...
...
@@ -120,7 +97,7 @@ function initComponentsConfig() {
//调用接口获取开门记录
function
resolve
(
self
)
{
console
.
log
(
"in"
);
uComponents
.
showLoading
(
self
);
//
uComponents.showLoading(self);
self
.
setDeviceId
(
iot
.
navigator
.
getExtras
().
deviceId
);
console
.
log
(
iot
.
navigator
.
getExtras
());
if
(
iot
.
navigator
.
getExtras
().
relId
){
...
...
@@ -232,23 +209,8 @@ function setListData(self, response){
self
.
setStartId
(
record
[
record
.
length
-
1
].
id
);
}
//更新列表数据
uComponents
.
hideRefresh
(
self
);
self
.
$refs
.
urefresh
.
refreshDisabled
=
true
;
// let ulistDom = self.$refs.ulist.$el;
// let sum = ulistDom.offsetHeight+ulistDom.scrollTop;
//滑到底了
// ulistDom.style.overflow = 'auto';
// self.refreshDisabled = true;
// if(sum != ulistDom.scrollHeight){
// ulistDom.style.overflow = 'auto';
// self.refreshDisabled = true;
// }
uComponents
.
changeList
(
self
,
self
.
getList
());
console
.
log
(
"in"
);
}
else
{
}
}
function
refreshFresh
(
self
){
resolve
(
self
);
}
\ No newline at end of file
web/lib/less/device/recordList.less
View file @
b8a266dc
...
...
@@ -4,11 +4,11 @@
.u-list();
.custom-list{
//
position: absolute;
//
top: 44px;
//
bottom: 0;
//
left: 0;
//
height: auto;
position: absolute;
top: 44px;
bottom: 0;
left: 0;
height: auto;
.u-list-scroll .u-list-row{
height: 75px;
padding: 0 38px 0 41px;
...
...
@@ -33,113 +33,39 @@
}
.u-list-load{
.listLoad();
.u-list-load-animation{
width: 24px;
height: 24px;
display: inline-block;
.bgImg("loading.png");
-webkit-animation: refresh 1s steps(8, end) infinite;
animation: refresh 1s steps(8, end) infinite;
background-size: cover;
vertical-align: middle;
}
}
.u-list-tip{
.listNoCont();
}
}
.custom-refersh{
width: 100%;
height: 100%;
position: absolute;
// top: 1.173rem;
bottom: 0;
left: 0;
}
.custom-refersh .u-refresh-content{
width: 100%;
height: 100%;
/*-webkit-transform: translateY(-50px);
transform: translateY(-50px);*/
}
.custom-refersh .refreshContent{
width: 100%;
height: 100%;
background: lightblue;
}
.custom-refersh .u-refresh-pullUp-text{
width: 100%;
height: 50px;
text-align: center;
line-height: 50px;
display: inline-block;
}
.custom-refersh .u-refresh-dropDown-text{
width: 100%;
height: 50px;
text-align: center;
line-height: 50px;
display: inline-block;
}
.custom-refersh .u-refresh-icon{
/*width: 26px;
height: 26px;
display: inline-block;
-webkit-animation: uLoading 1s steps(12, end) infinite;
animation: refresh 1s steps(12, end) infinite;
background-image: url(../resources/image/loading.png);
background-size: cover;
vertical-align: middle;*/
display: none;
}
@-webkit-keyframes refresh {
0% {
0% {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
100% {
}
100% {
-webkit-transform: rotate3d(0, 0, 1, 360deg);
transform: rotate3d(0, 0, 1, 360deg);
}
}
}
@keyframes refresh {
0% {
0% {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
100% {
}
100% {
-webkit-transform: rotate3d(0, 0, 1, 360deg);
transform: rotate3d(0, 0, 1, 360deg);
}
}
.u-refresh-status-0 .u-refresh-icon{
width: 26px;
height: 26px;
display: inline-block;
/*background-image: url(../resources/image/arrow.png);*/
/*background-size: cover;
transition: transform 0.6s;*/
}
.u-refresh-status-1 .u-refresh-icon{
width: 26px;
height: 26px;
display: inline-block;
/*background-image: url(../resources/image/arrow.png);*/
/*background-size: cover;*/
/*transform: rotate(180deg);*/
/*transition: transform 0.6s;*/
}
.u-refresh-status-2 .u-refresh-icon{
width: 26px;
height: 26px;
display: inline-block;
-webkit-animation: uLoading 1s steps(12, end) infinite;
animation: refresh 1s steps(12, end) infinite;
background-image: url(../../resources/image/white_loading_icon.png);
background-size: cover;
vertical-align: middle;
}
.u-refresh-status-3 .u-refresh-icon{
display: none;
}
}
\ No newline at end of file
web/resources/lang/zh.json
View file @
b8a266dc
{
"loading"
:
"loading..."
,
"scroll"
:{
"clickToLoadMore"
:
"点击加载更多"
,
"loading"
:
"loading..."
},
"btn"
:{
"confirm"
:
"确定"
,
"guideLogin"
:
"账号/密码登录"
,
"login"
:
"登录"
,
"getCode"
:
"获取验证码"
,
"register"
:
"注册"
,
"logout"
:
"退出系统"
,
"save"
:
"保存"
,
"qrcode"
:
"生成二维码"
,
"wifiAdd"
:
"开始配置Wi-Fi"
,
"connect"
:
"连接"
,
"bindUser"
:
"绑定姓名"
,
"bind"
:
"我要绑定"
,
"reBound"
:
"请重新绑定"
,
"saveQRcode"
:
"保存二维码到相册"
,
"unbind"
:
"解绑"
,
"deleteUser"
:
"删除该用户"
,
"qrcodeReset"
:
"重新生成二维码"
,
"add"
:
"添加"
,
"next"
:
"下一步"
,
"iSee"
:
"我知道了"
,
"unbindDoorlock"
:
"解绑门锁"
},
"dialog"
:{
"confirm"
:
"确认"
,
"cancel"
:
"取消"
,
"unbind"
:
"解绑"
,
"delete"
:
"删除"
},
"title"
:{
"login"
:
"登录"
,
"register"
:
"注册"
,
"forgetPassword"
:
"忘记密码"
,
"device"
:
"U智锁"
,
"opendoorRecord"
:
"开门记录"
,
"alarmInfo"
:
"报警记录"
,
"remoteOpendoor"
:
"远程开门"
,
"hijackRecord"
:
"劫持记录"
,
"doorlockManage"
:
"门锁管理"
,
"editName"
:
"修改名称"
,
"qrcode"
:
"生成绑定二维码"
,
"addDevice"
:
"添加设备"
,
"scanCodeAdd"
:
"扫描绑定设备"
,
"wifiAddHelp"
:
"配置Wi-Fi"
,
"wifiAdd"
:
"连接Wi-Fi"
,
"bindUserHelp"
:
"ID-姓名绑定"
,
"bindUser"
:
"绑定用户"
,
"userList"
:
"用户列表"
,
"doorlockUser"
:
"门锁用户"
,
"addUser"
:
"添加用户"
,
"inviteBind"
:
"邀请绑定"
,
"unlockInfo"
:
"关联开锁信息"
,
"myInfo"
:
"个人信息"
,
"editNickname"
:
"修改昵称"
,
"editPassword"
:
"修改密码"
,
"addUnlockInfo"
:
"关联开锁ID"
,
"deviceList"
:
"产品型号"
},
"guide"
:{
"footer"
:
"指纹改变生活"
},
"login"
:{
"telInputTip"
:
"请输入手机号"
,
"passwordInputTip"
:
"请输入密码"
,
"register"
:
"快速注册"
,
"forgetPassword"
:
"忘记密码"
,
"failure"
:
"登陆失败"
,
"error"
:{
"telNull"
:
"请输入手机号"
,
"passWordNull"
:
"请输入密码"
}},
"register"
:{
"telInputTip"
:
"请输入手机号"
,
"codeInputTip"
:
"请输入验证码"
,
"passwordInputTip"
:
"请输入6位登录密码"
,
"error"
:{
"telNull"
:
"请输入手机号"
,
"codeNull"
:
"请输入验证码"
,
"passWordNull"
:
"请输入密码"
}},
"forgetPassword"
:{
"telInputTip"
:
"请输入手机号"
,
"codeInputTip"
:
"请输入验证码"
,
"passwordInputTip"
:
"请输入6位登录密码"
,
"error"
:{
"telNull"
:
"请输入手机号"
,
"codeNull"
:
"请输入验证码"
,
"passWordNull"
:
"请输入密码"
}},
"device"
:{
"opendoorRecord"
:
"开门记录"
,
"securityAlarm"
:
"安全报警"
,
"doorlockUser"
:
"门锁用户"
,
"remoteOpendoor"
:
"远程开门"
,
"hijackAlarm"
:
"劫持报警"
,
"doorlockManage"
:
"门锁管理"
,
"followTitle"
:
"关注服务号"
,
"followCont1"
:
"关注 “i智信” 微信服务号可随时随地掌握设备动态<br>再也不担心错过重要通知,赶紧按下方提示试试吧"
,
"followCont2"
:
"1.保存二维码-2.用微信从<span>相册选取扫码</span>-3.关注"
,
"laterFollow"
:
"稍后关注"
,
"newMsgDoorlock"
:
"门锁最新消息"
,
"doorLockRinging"
:
"门铃响了"
,
"defaultNewMsg"
:
"您尚未绑定门锁"
,
"noNewMsg"
:
"门锁休息中"
,
"bindDoorlock"
:
"绑定门锁"
},
"opendoorRecord"
:{
"noRecordTip"
:
"暂无记录"
,
"passwordOpenDoor"
:
"密码开门"
,
"fingerprintOpenDoor"
:
"指纹开门"
,
"ICcardOpenDoor"
:
"IC卡开门"
,
"remoteOpenDoor"
:
"遥控器开门"
,
"keyOpenDoor"
:
"钥匙开门"
,
"hijackingAlarm"
:
"劫持报警"
,
"appRemoteOpenDoor"
:
"app远程开门"
},
"alarmInfo"
:{
"noInfoTip"
:
"暂无信息"
,
"tamperAlarm"
:
"防撬报警"
,
"trialAlarm"
:
"试错报警"
,
"powerAlarm"
:
"欠电报警"
},
"remoteOpendoor"
:{
"loading"
:
"远程开门中"
,
"passwordInputTip"
:
"请输入远程开门密码"
,
"openDoorSuccess"
:
"远程开门成功"
,
"openDoorFailure"
:
"远程开门失败"
,
"remoteTimeout"
:
"远程开门超时"
,
"remoteOpendoorAgain"
:
"请尝试重试"
,
"error"
:{
"noPasswordTip"
:
"远程密码不能为空"
}},
"hijackRecord"
:{
"noRecordTip"
:
"暂无记录"
,
"hijackingAlarm"
:
"劫持指纹报警"
},
"doorlockManage"
:{
"name"
:
"名称"
,
"logoutDialogTip"
:
"确定要退出系统吗?"
,
"defaultNickname"
:
"门锁"
,
"isClearRecord"
:
"清除所有信息"
,
"unbindSuccess"
:
"解绑成功"
,
"doorbellMsgPush"
:
"门铃消息推送"
,
"alarmMsgPush"
:
"报警消息推送"
,
"opendoorMsgPush"
:
"开门消息推送"
,
"unbindDialogTip"
:
"确认解除绑定"
,
"unbindFailue"
:
"解绑失败"
},
"editName"
:{
"nameInputTip"
:
"请输入设备名称"
,
"nickNameInputTip"
:
"请输入用户名"
,
"editNameSuccess"
:
"修改名称成功"
,
"editNameFailue"
:
"修改名称失败"
,
"error"
:{
"nameCanNotBeBlank"
:
"设备名称不能为空"
,
"nicknameCanNotBeBlank"
:
"用户名不能为空"
}},
"qrcode"
:{
"helpTitle"
:
"注意事项:"
,
"helpCont1"
:
"1.仅超级管理员(通过Wi-Fi配网绑定的用户为超级管理员)可以生成绑定二维码"
,
"helpCont2"
:
"2.二维码有效时间为10分钟且只能使用一次"
,
"helpCont3"
:
"3.用户只需要扫描该二维码即可绑定指纹锁"
,
"helpCont4"
:
"4.绑定失败则需要重新生成二维码进行绑定"
},
"addDevice"
:{
"scanCodeAdd"
:
"扫描绑定设备"
,
"wifiAdd"
:
"配置Wi-Fi"
,
"loading"
:
"loading"
,
"bindSuccess"
:
"绑定成功"
,
"bindFailure"
:
"绑定失败"
,
"reBindDevice"
:
"请重新绑定"
},
"wifiAddHelp"
:{
"helpTitle"
:
"配置WIFI说明:"
,
"helpCont1"
:
"1.确认设备端进入配网模式(详情操作请见产品说明书)"
,
"helpCont2"
:
"2.点击页面下方“开始配置Wi-Fi”按钮,进入WiFi配网页面"
,
"helpCont3"
:
"3.输入Wi-Fi密码,点击“连接”,等待锁端响应,至配网成功。"
,
"helpCont4"
:
"(提示:如果指纹锁已经绑定过用户,重新绑定成功后会清除之前所有绑定信息)"
},
"wifiAdd"
:{
"unbindWifiTip"
:
"当前无Wi-Fi"
,
"wifiBinding"
:
"配网中"
,
"wifiBindSuccess"
:
"Wi-Fi连接成功,正在激活设备"
,
"deviceActivating"
:
"Wi-Fi连接成功,正在激活设备"
,
"deviceActivateSuccess"
:
"激活成功"
,
"deviceActivateFailure"
:
"激活失败"
,
"bindTimeout"
:
"连接超时"
,
"passwordInputTip"
:
"请输入Wi-Fi密码"
,
"remindTitle"
:
"配置Wi-Fi提醒:"
,
"remindCont1"
:
"1. 请确保Wi-Fi信号良好"
,
"remindCont2"
:
"2. 本产品暂不支持5GHz无线网络"
,
"error"
:{}},
"bindUserHelp"
:{
"helpTitle"
:
"配对姓名说明:"
,
"helpCont1"
:
"1.在指纹锁上录入指纹、密码、卡并获得相应ID"
,
"helpCont2"
:
"2.通过姓名绑定将该ID绑定对应用户姓名"
,
"helpCont3"
:
"3.绑定成功后,开门记录中将会显示已绑定的用户姓名"
,
"helpCont4"
:
"4.用户姓名信息只保存在APP端,不影响锁端设置"
,
"boundUser"
:
"查看已绑定ID姓名"
},
"bindUser"
:{
"editHeadTip"
:
"点击编辑用户头像"
,
"nameTitle"
:
"姓名"
,
"fingerprintIDTitle"
:
"指纹ID"
,
"passwordIDTitle"
:
"密码ID"
,
"ICCardIDTitle"
:
"IC卡ID"
,
"requiredInputTip"
:
"(必填)"
,
"optionalInputTip"
:
"(选填)"
,
"error"
:{}},
"commstatusLoading"
:{
"connectSuccess"
:
"Wi-Fi连接成功,正在绑定..."
,
"bindSuccess"
:
"绑定成功"
,
"bindFailed"
:
"绑定失败"
},
"userList"
:{
"name"
:
"昵称:"
,
"noUserTip"
:
"暂无用户"
,
"defaultName"
:
"管理员"
,
"binded"
:
"已绑定"
,
"unbind"
:
"未绑定"
},
"addUser"
:{
"nameInputTip"
:
"请输入您想添加的用户名"
,
"addUserSuccess"
:
"添加用户成功"
,
"addUserFailure"
:
"添加用户失败"
,
"error"
:{
"nameCanNotEmpty"
:
"用户名不能为空"
}},
"doorlockUser"
:{
"name"
:
"昵称:"
,
"inviteBind"
:
"邀请绑定"
,
"bindUnlockInfo"
:
"关联开锁信息"
,
"opendoorRecord"
:
"历史开门记录"
,
"unbindDialogTip"
:
"<span></span>解绑后,该用户不能对门锁下的信息进行查看"
,
"deleteUserDialogTip"
:
"删除后,用户对应的开锁id取消关联,同时失去信息查看权限。"
,
"unbindSuccess"
:
"解绑成功"
,
"unbindFailue"
:
"解绑失败"
,
"guideStep1Tip1"
:
"邀请绑定成功"
,
"guideStep1Tip2"
:
"(可查看开门记录,报警记录等<br>相关门锁信息)"
,
"guideStep3Tip"
:
"绑定后看可了解<br>该用户的开门情况"
,
"deleteSuccess"
:
"删除成功"
,
"deleteFailure"
:
"删除失败"
,
"defaultName"
:
"管理员"
},
"inviteBind"
:{
"qrcodeExpireTip"
:
"二维码已过期,请重新生成"
,
"title"
:
"绑定方法:"
,
"cont1"
:
"1.受邀用户登录“U智锁”APP"
,
"cont2"
:
"2.选择“扫描绑定设备”"
,
"cont3"
:
"3.扫描上方二维码完成绑定"
},
"unlockInfo"
:{
"bindUnlockInfo"
:
"已关联的开锁信息"
,
"noInfoTip"
:
"当前无绑定开锁ID,请添加"
,
"passwordOpenDoor"
:
"密码"
,
"fingerprintOpenDoor"
:
"指纹"
,
"ICcardOpenDoor"
:
"IC卡"
,
"remoteOpenDoor"
:
"遥控器"
,
"keyOpenDoor"
:
"钥匙"
,
"appRemoteOpenDoor"
:
"app远程"
,
"hijackingAlarm"
:
"劫持指纹"
,
"setHijack"
:
"设为劫持"
,
"setHijackTip"
:
"确认设为劫持指纹?"
,
"cancelHijack"
:
"取消劫持"
,
"cancelHijackTip"
:
"确认取消劫持指纹?"
,
"cancelAssociated"
:
"取消关联"
,
"cancelAssociatedTip"
:
"取消关联后,开门历史记录中将不再显示关联的用户信息。"
,
"cancelAssociatedSuccess"
:
"取消关联成功"
,
"cancelAssociatedFailue"
:
"取消关联失败"
,
"setHijackSuccess"
:
"设为劫持指纹成功"
,
"setHijackFailue"
:
"设为劫持指纹失败"
,
"cancelHijackSuccess"
:
"取消劫持指纹成功"
,
"cancelHijackFailue"
:
"取消劫持指纹失败"
},
"addUnlockInfo"
:{
"opendoorMode"
:
"选择要关联的开锁方式"
,
"fingerprint"
:
"指纹"
,
"password"
:
"密码"
,
"icCard"
:
"IC卡"
,
"key"
:
"钥匙"
,
"remote"
:
"遥控器"
,
"hijackFingerprint"
:
"劫持指纹"
,
"opendoorRecord"
:
"选择要关联的开锁ID"
,
"tip"
:
"仅显示未绑定开门记录"
,
"addInfoSuccess"
:
"添加绑定开锁信息成功"
,
"addInfoFailue"
:
"添加绑定开锁信息失败"
,
"noRecordTip"
:
"暂无记录"
,
"setHijackSwitch"
:
"设为劫持指纹"
,
"guideStep1Tip"
:
"选择需要添加关联的开门方式"
,
"guideStep3Tip"
:
"根据开门记录中的开门时间,选择关联的<br>开门ID<span>(一个ID只能被一个用户绑定)</span>"
,
"guideStep5Tip"
:
"使用劫持指纹开门时,会以报警形式<br>通知到该门锁名下的其他绑定用户"
},
"myInfo"
:{
"editNickname"
:
"修改昵称"
,
"editPassword"
:
"修改密码"
,
"logoutDialogTip"
:
"确定要退出系统吗?"
},
"editNickname"
:{
"nickNameInputTip"
:
"请输入昵称"
},
"editPassword"
:{
"newPasswordInputTip"
:
"请输入新密码"
,
"oldPasswordInputTip"
:
"请输入旧密码"
,
"oldPasswordInputTipAgain"
:
"请再次输入旧密码"
},
"request"
:{
"error"
:
"请求发送失败"
,
"initError"
:
"初始化失败,请关闭APP重试"
},
"deviceList"
:{
"model"
:
"型号:"
,
"noDeviceTip"
:
"暂无产品型号"
}}
\ No newline at end of file
{
"loading"
:
"loading..."
,
"scroll"
:{
"clickToLoadMore"
:
"上拉加载更多"
,
"loading"
:
"loading"
},
"btn"
:{
"confirm"
:
"确定"
,
"guideLogin"
:
"账号/密码登录"
,
"login"
:
"登录"
,
"getCode"
:
"获取验证码"
,
"register"
:
"注册"
,
"logout"
:
"退出系统"
,
"save"
:
"保存"
,
"qrcode"
:
"生成二维码"
,
"wifiAdd"
:
"开始配置Wi-Fi"
,
"connect"
:
"连接"
,
"bindUser"
:
"绑定姓名"
,
"bind"
:
"我要绑定"
,
"reBound"
:
"请重新绑定"
,
"saveQRcode"
:
"保存二维码到相册"
,
"unbind"
:
"解绑"
,
"deleteUser"
:
"删除该用户"
,
"qrcodeReset"
:
"重新生成二维码"
,
"add"
:
"添加"
,
"next"
:
"下一步"
,
"iSee"
:
"我知道了"
,
"unbindDoorlock"
:
"解绑门锁"
},
"dialog"
:{
"confirm"
:
"确认"
,
"cancel"
:
"取消"
,
"unbind"
:
"解绑"
,
"delete"
:
"删除"
},
"title"
:{
"login"
:
"登录"
,
"register"
:
"注册"
,
"forgetPassword"
:
"忘记密码"
,
"device"
:
"U智锁"
,
"opendoorRecord"
:
"开门记录"
,
"alarmInfo"
:
"报警记录"
,
"remoteOpendoor"
:
"远程开门"
,
"hijackRecord"
:
"劫持记录"
,
"doorlockManage"
:
"门锁管理"
,
"editName"
:
"修改名称"
,
"qrcode"
:
"生成绑定二维码"
,
"addDevice"
:
"添加设备"
,
"scanCodeAdd"
:
"扫描绑定设备"
,
"wifiAddHelp"
:
"配置Wi-Fi"
,
"wifiAdd"
:
"连接Wi-Fi"
,
"bindUserHelp"
:
"ID-姓名绑定"
,
"bindUser"
:
"绑定用户"
,
"userList"
:
"用户列表"
,
"doorlockUser"
:
"门锁用户"
,
"addUser"
:
"添加用户"
,
"inviteBind"
:
"邀请绑定"
,
"unlockInfo"
:
"关联开锁信息"
,
"myInfo"
:
"个人信息"
,
"editNickname"
:
"修改昵称"
,
"editPassword"
:
"修改密码"
,
"addUnlockInfo"
:
"关联开锁ID"
,
"deviceList"
:
"产品型号"
},
"guide"
:{
"footer"
:
"指纹改变生活"
},
"login"
:{
"telInputTip"
:
"请输入手机号"
,
"passwordInputTip"
:
"请输入密码"
,
"register"
:
"快速注册"
,
"forgetPassword"
:
"忘记密码"
,
"failure"
:
"登陆失败"
,
"error"
:{
"telNull"
:
"请输入手机号"
,
"passWordNull"
:
"请输入密码"
}},
"register"
:{
"telInputTip"
:
"请输入手机号"
,
"codeInputTip"
:
"请输入验证码"
,
"passwordInputTip"
:
"请输入6位登录密码"
,
"error"
:{
"telNull"
:
"请输入手机号"
,
"codeNull"
:
"请输入验证码"
,
"passWordNull"
:
"请输入密码"
}},
"forgetPassword"
:{
"telInputTip"
:
"请输入手机号"
,
"codeInputTip"
:
"请输入验证码"
,
"passwordInputTip"
:
"请输入6位登录密码"
,
"error"
:{
"telNull"
:
"请输入手机号"
,
"codeNull"
:
"请输入验证码"
,
"passWordNull"
:
"请输入密码"
}},
"device"
:{
"opendoorRecord"
:
"开门记录"
,
"securityAlarm"
:
"安全报警"
,
"doorlockUser"
:
"门锁用户"
,
"remoteOpendoor"
:
"远程开门"
,
"hijackAlarm"
:
"劫持报警"
,
"doorlockManage"
:
"门锁管理"
,
"followTitle"
:
"关注服务号"
,
"followCont1"
:
"关注 “i智信” 微信服务号可随时随地掌握设备动态<br>再也不担心错过重要通知,赶紧按下方提示试试吧"
,
"followCont2"
:
"1.保存二维码-2.用微信从<span>相册选取扫码</span>-3.关注"
,
"laterFollow"
:
"稍后关注"
,
"newMsgDoorlock"
:
"门锁最新消息"
,
"doorLockRinging"
:
"门铃响了"
,
"defaultNewMsg"
:
"您尚未绑定门锁"
,
"noNewMsg"
:
"门锁休息中"
,
"bindDoorlock"
:
"绑定门锁"
},
"opendoorRecord"
:{
"noRecordTip"
:
"暂无记录"
,
"passwordOpenDoor"
:
"密码开门"
,
"fingerprintOpenDoor"
:
"指纹开门"
,
"ICcardOpenDoor"
:
"IC卡开门"
,
"remoteOpenDoor"
:
"遥控器开门"
,
"keyOpenDoor"
:
"钥匙开门"
,
"hijackingAlarm"
:
"劫持报警"
,
"appRemoteOpenDoor"
:
"app远程开门"
},
"alarmInfo"
:{
"noInfoTip"
:
"暂无信息"
,
"tamperAlarm"
:
"防撬报警"
,
"trialAlarm"
:
"试错报警"
,
"powerAlarm"
:
"欠电报警"
},
"remoteOpendoor"
:{
"loading"
:
"远程开门中"
,
"passwordInputTip"
:
"请输入远程开门密码"
,
"openDoorSuccess"
:
"远程开门成功"
,
"openDoorFailure"
:
"远程开门失败"
,
"remoteTimeout"
:
"远程开门超时"
,
"remoteOpendoorAgain"
:
"请尝试重试"
,
"error"
:{
"noPasswordTip"
:
"远程密码不能为空"
}},
"hijackRecord"
:{
"noRecordTip"
:
"暂无记录"
,
"hijackingAlarm"
:
"劫持指纹报警"
},
"doorlockManage"
:{
"name"
:
"名称"
,
"logoutDialogTip"
:
"确定要退出系统吗?"
,
"defaultNickname"
:
"门锁"
,
"isClearRecord"
:
"清除所有信息"
,
"unbindSuccess"
:
"解绑成功"
,
"doorbellMsgPush"
:
"门铃消息推送"
,
"alarmMsgPush"
:
"报警消息推送"
,
"opendoorMsgPush"
:
"开门消息推送"
,
"unbindDialogTip"
:
"确认解除绑定"
,
"unbindFailue"
:
"解绑失败"
},
"editName"
:{
"nameInputTip"
:
"请输入设备名称"
,
"nickNameInputTip"
:
"请输入用户名"
,
"editNameSuccess"
:
"修改名称成功"
,
"editNameFailue"
:
"修改名称失败"
,
"error"
:{
"nameCanNotBeBlank"
:
"设备名称不能为空"
,
"nicknameCanNotBeBlank"
:
"用户名不能为空"
}},
"qrcode"
:{
"helpTitle"
:
"注意事项:"
,
"helpCont1"
:
"1.仅超级管理员(通过Wi-Fi配网绑定的用户为超级管理员)可以生成绑定二维码"
,
"helpCont2"
:
"2.二维码有效时间为10分钟且只能使用一次"
,
"helpCont3"
:
"3.用户只需要扫描该二维码即可绑定指纹锁"
,
"helpCont4"
:
"4.绑定失败则需要重新生成二维码进行绑定"
},
"addDevice"
:{
"scanCodeAdd"
:
"扫描绑定设备"
,
"wifiAdd"
:
"配置Wi-Fi"
,
"loading"
:
"loading"
,
"bindSuccess"
:
"绑定成功"
,
"bindFailure"
:
"绑定失败"
,
"reBindDevice"
:
"请重新绑定"
},
"wifiAddHelp"
:{
"helpTitle"
:
"配置WIFI说明:"
,
"helpCont1"
:
"1.确认设备端进入配网模式(详情操作请见产品说明书)"
,
"helpCont2"
:
"2.点击页面下方“开始配置Wi-Fi”按钮,进入WiFi配网页面"
,
"helpCont3"
:
"3.输入Wi-Fi密码,点击“连接”,等待锁端响应,至配网成功。"
,
"helpCont4"
:
"(提示:如果指纹锁已经绑定过用户,重新绑定成功后会清除之前所有绑定信息)"
},
"wifiAdd"
:{
"unbindWifiTip"
:
"当前无Wi-Fi"
,
"wifiBinding"
:
"配网中"
,
"wifiBindSuccess"
:
"Wi-Fi连接成功,正在激活设备"
,
"deviceActivating"
:
"Wi-Fi连接成功,正在激活设备"
,
"deviceActivateSuccess"
:
"激活成功"
,
"deviceActivateFailure"
:
"激活失败"
,
"bindTimeout"
:
"连接超时"
,
"passwordInputTip"
:
"请输入Wi-Fi密码"
,
"remindTitle"
:
"配置Wi-Fi提醒:"
,
"remindCont1"
:
"1. 请确保Wi-Fi信号良好"
,
"remindCont2"
:
"2. 本产品暂不支持5GHz无线网络"
,
"error"
:{}},
"bindUserHelp"
:{
"helpTitle"
:
"配对姓名说明:"
,
"helpCont1"
:
"1.在指纹锁上录入指纹、密码、卡并获得相应ID"
,
"helpCont2"
:
"2.通过姓名绑定将该ID绑定对应用户姓名"
,
"helpCont3"
:
"3.绑定成功后,开门记录中将会显示已绑定的用户姓名"
,
"helpCont4"
:
"4.用户姓名信息只保存在APP端,不影响锁端设置"
,
"boundUser"
:
"查看已绑定ID姓名"
},
"bindUser"
:{
"editHeadTip"
:
"点击编辑用户头像"
,
"nameTitle"
:
"姓名"
,
"fingerprintIDTitle"
:
"指纹ID"
,
"passwordIDTitle"
:
"密码ID"
,
"ICCardIDTitle"
:
"IC卡ID"
,
"requiredInputTip"
:
"(必填)"
,
"optionalInputTip"
:
"(选填)"
,
"error"
:{}},
"commstatusLoading"
:{
"connectSuccess"
:
"Wi-Fi连接成功,正在绑定..."
,
"bindSuccess"
:
"绑定成功"
,
"bindFailed"
:
"绑定失败"
},
"userList"
:{
"name"
:
"昵称:"
,
"noUserTip"
:
"暂无用户"
,
"defaultName"
:
"管理员"
,
"binded"
:
"已绑定"
,
"unbind"
:
"未绑定"
},
"addUser"
:{
"nameInputTip"
:
"请输入您想添加的用户名"
,
"addUserSuccess"
:
"添加用户成功"
,
"addUserFailure"
:
"添加用户失败"
,
"error"
:{
"nameCanNotEmpty"
:
"用户名不能为空"
}},
"doorlockUser"
:{
"name"
:
"昵称:"
,
"inviteBind"
:
"邀请绑定"
,
"bindUnlockInfo"
:
"关联开锁信息"
,
"opendoorRecord"
:
"历史开门记录"
,
"unbindDialogTip"
:
"<span></span>解绑后,该用户不能对门锁下的信息进行查看"
,
"deleteUserDialogTip"
:
"删除后,用户对应的开锁id取消关联,同时失去信息查看权限。"
,
"unbindSuccess"
:
"解绑成功"
,
"unbindFailue"
:
"解绑失败"
,
"guideStep1Tip1"
:
"邀请绑定成功"
,
"guideStep1Tip2"
:
"(可查看开门记录,报警记录等<br>相关门锁信息)"
,
"guideStep3Tip"
:
"绑定后看可了解<br>该用户的开门情况"
,
"deleteSuccess"
:
"删除成功"
,
"deleteFailure"
:
"删除失败"
,
"defaultName"
:
"管理员"
},
"inviteBind"
:{
"qrcodeExpireTip"
:
"二维码已过期,请重新生成"
,
"title"
:
"绑定方法:"
,
"cont1"
:
"1.受邀用户登录“U智锁”APP"
,
"cont2"
:
"2.选择“扫描绑定设备”"
,
"cont3"
:
"3.扫描上方二维码完成绑定"
},
"unlockInfo"
:{
"bindUnlockInfo"
:
"已关联的开锁信息"
,
"noInfoTip"
:
"当前无绑定开锁ID,请添加"
,
"passwordOpenDoor"
:
"密码"
,
"fingerprintOpenDoor"
:
"指纹"
,
"ICcardOpenDoor"
:
"IC卡"
,
"remoteOpenDoor"
:
"遥控器"
,
"keyOpenDoor"
:
"钥匙"
,
"appRemoteOpenDoor"
:
"app远程"
,
"hijackingAlarm"
:
"劫持指纹"
,
"setHijack"
:
"设为劫持"
,
"setHijackTip"
:
"确认设为劫持指纹?"
,
"cancelHijack"
:
"取消劫持"
,
"cancelHijackTip"
:
"确认取消劫持指纹?"
,
"cancelAssociated"
:
"取消关联"
,
"cancelAssociatedTip"
:
"取消关联后,开门历史记录中将不再显示关联的用户信息。"
,
"cancelAssociatedSuccess"
:
"取消关联成功"
,
"cancelAssociatedFailue"
:
"取消关联失败"
,
"setHijackSuccess"
:
"设为劫持指纹成功"
,
"setHijackFailue"
:
"设为劫持指纹失败"
,
"cancelHijackSuccess"
:
"取消劫持指纹成功"
,
"cancelHijackFailue"
:
"取消劫持指纹失败"
},
"addUnlockInfo"
:{
"opendoorMode"
:
"选择要关联的开锁方式"
,
"fingerprint"
:
"指纹"
,
"password"
:
"密码"
,
"icCard"
:
"IC卡"
,
"key"
:
"钥匙"
,
"remote"
:
"遥控器"
,
"hijackFingerprint"
:
"劫持指纹"
,
"opendoorRecord"
:
"选择要关联的开锁ID"
,
"tip"
:
"仅显示未绑定开门记录"
,
"addInfoSuccess"
:
"添加绑定开锁信息成功"
,
"addInfoFailue"
:
"添加绑定开锁信息失败"
,
"noRecordTip"
:
"暂无记录"
,
"setHijackSwitch"
:
"设为劫持指纹"
,
"guideStep1Tip"
:
"选择需要添加关联的开门方式"
,
"guideStep3Tip"
:
"根据开门记录中的开门时间,选择关联的<br>开门ID<span>(一个ID只能被一个用户绑定)</span>"
,
"guideStep5Tip"
:
"使用劫持指纹开门时,会以报警形式<br>通知到该门锁名下的其他绑定用户"
},
"myInfo"
:{
"editNickname"
:
"修改昵称"
,
"editPassword"
:
"修改密码"
,
"logoutDialogTip"
:
"确定要退出系统吗?"
},
"editNickname"
:{
"nickNameInputTip"
:
"请输入昵称"
},
"editPassword"
:{
"newPasswordInputTip"
:
"请输入新密码"
,
"oldPasswordInputTip"
:
"请输入旧密码"
,
"oldPasswordInputTipAgain"
:
"请再次输入旧密码"
},
"request"
:{
"error"
:
"请求发送失败"
,
"initError"
:
"初始化失败,请关闭APP重试"
},
"deviceList"
:{
"model"
:
"型号:"
,
"noDeviceTip"
:
"暂无产品型号"
}}
\ No newline at end of file
web/view/device/alarmInfo.html
View file @
b8a266dc
...
...
@@ -25,10 +25,7 @@
<v-touch
tag=
"span"
class=
"header-left icon"
v-on:tap=
"onBackTap"
>

</v-touch>
<p>
{{ $t('title.alarmInfo') }}
</p>
</div>
<u-refresh
ref=
"urefresh"
:disabled=
"refreshDisabled"
:init-param=
"componentsConfig.refresh.initParam"
v-on:u-refresh-fresh =
"onRefreshFresh"
>
<u-list
ref=
"ulist"
:init-param=
"componentsConfig.alarmInfoList.initParam"
v-on:u-list-load-tap=
"onListLoadTap()"
></u-list>
</u-refresh>
<u-dialog
ref=
"udialog"
:init-param=
"componentsConfig.dialog.initParam"
></u-dialog>
<u-loading
ref=
"uloading"
:init-param=
"componentsConfig.loading.initParam"
></u-loading>
</div>
...
...
web/view/device/hijackRecord.html
View file @
b8a266dc
...
...
@@ -25,10 +25,7 @@
<v-touch
tag=
"span"
class=
"header-left icon"
v-on:tap=
"onBackTap"
>

</v-touch>
<p>
{{ $t('title.hijackRecord') }}
</p>
</div>
<u-refresh
ref=
"urefresh"
:disabled=
"refreshDisabled"
:init-param=
"componentsConfig.refresh.initParam"
v-on:u-refresh-fresh =
"onRefreshFresh"
>
<u-list
ref=
"ulist"
:init-param=
"componentsConfig.hijackRecordList.initParam"
v-on:u-list-load-tap=
"onListLoadTap()"
></u-list>
</u-refresh>
<u-dialog
ref=
"udialog"
:init-param=
"componentsConfig.dialog.initParam"
></u-dialog>
<u-loading
ref=
"uloading"
:init-param=
"componentsConfig.loading.initParam"
></u-loading>
</div>
...
...
web/view/device/opendoorRecord.html
View file @
b8a266dc
...
...
@@ -25,10 +25,7 @@
<v-touch
tag=
"span"
class=
"header-left icon"
v-on:tap=
"onBackTap"
>

</v-touch>
<p>
{{ $t('title.opendoorRecord') }}
</p>
</div>
<u-refresh
ref=
"urefresh"
:disabled=
"refreshDisabled"
:init-param=
"componentsConfig.refresh.initParam"
v-on:u-refresh-fresh =
"onRefreshFresh"
>
<u-list
ref=
"ulist"
:init-param=
"componentsConfig.opendoorRecordList.initParam"
v-on:u-list-load-tap=
"onListLoadTap()"
></u-list>
</u-refresh>
<u-dialog
ref=
"udialog"
:init-param=
"componentsConfig.dialog.initParam"
></u-dialog>
<u-loading
ref=
"uloading"
:init-param=
"componentsConfig.loading.initParam"
></u-loading>
</div>
...
...
web/view/device/recordList.css
View file @
b8a266dc
...
...
@@ -532,6 +532,14 @@ p {
text-align
:
center
;
}
.custom-list
{
position
:
absolute
;
top
:
1.173rem
;
bottom
:
0
;
left
:
0
;
height
:
auto
;
}
.custom-list
.u-list-scroll
.u-list-row
{
height
:
2rem
;
padding
:
0
1.013rem
0
1.093rem
;
...
...
@@ -569,6 +577,17 @@ p {
line-height
:
0.933rem
;
}
.custom-list
.u-list-load
.u-list-load-animation
{
width
:
0.64rem
;
height
:
0.64rem
;
display
:
inline-block
;
background-image
:
url("../../resources/image/loading.png")
;
-webkit-animation
:
refresh
1s
steps
(
8
,
end
)
infinite
;
animation
:
refresh
1s
steps
(
8
,
end
)
infinite
;
background-size
:
cover
;
vertical-align
:
middle
;
}
.custom-list
.u-list-tip
{
background-image
:
url("../../resources/image/noCont.png")
;
background-position
:
top
center
;
...
...
@@ -580,55 +599,6 @@ p {
padding-top
:
2.347rem
;
}
.custom-refersh
{
width
:
100%
;
height
:
100%
;
position
:
absolute
;
bottom
:
0
;
left
:
0
;
}
.custom-refersh
.u-refresh-content
{
width
:
100%
;
height
:
100%
;
/*-webkit-transform: translateY(-50px);
transform: translateY(-50px);*/
}
.custom-refersh
.refreshContent
{
width
:
100%
;
height
:
100%
;
background
:
lightblue
;
}
.custom-refersh
.u-refresh-pullUp-text
{
width
:
100%
;
height
:
1.333rem
;
text-align
:
center
;
line-height
:
1.333rem
;
display
:
inline-block
;
}
.custom-refersh
.u-refresh-dropDown-text
{
width
:
100%
;
height
:
1.333rem
;
text-align
:
center
;
line-height
:
1.333rem
;
display
:
inline-block
;
}
.custom-refersh
.u-refresh-icon
{
/*width: 26px;
height: 26px;
display: inline-block;
-webkit-animation: uLoading 1s steps(12, end) infinite;
animation: refresh 1s steps(12, end) infinite;
background-image: url(../resources/image/loading.png);
background-size: cover;
vertical-align: middle;*/
display
:
none
;
}
@-webkit-keyframes
refresh
{
0
%
{
-webkit-transform
:
rotate3d
(
0
,
0
,
1
,
0deg
);
...
...
@@ -652,37 +622,3 @@ p {
transform
:
rotate3d
(
0
,
0
,
1
,
360deg
);
}
}
\ No newline at end of file
.u-refresh-status-0
.u-refresh-icon
{
width
:
0.693rem
;
height
:
0.693rem
;
display
:
inline-block
;
/*background-image: url(../resources/image/arrow.png);*/
/*background-size: cover;
transition: transform 0.6s;*/
}
.u-refresh-status-1
.u-refresh-icon
{
width
:
0.693rem
;
height
:
0.693rem
;
display
:
inline-block
;
/*background-image: url(../resources/image/arrow.png);*/
/*background-size: cover;*/
/*transform: rotate(180deg);*/
/*transition: transform 0.6s;*/
}
.u-refresh-status-2
.u-refresh-icon
{
width
:
0.693rem
;
height
:
0.693rem
;
display
:
inline-block
;
-webkit-animation
:
uLoading
1s
steps
(
12
,
end
)
infinite
;
animation
:
refresh
1s
steps
(
12
,
end
)
infinite
;
background-image
:
url(../../resources/image/white_loading_icon.png)
;
background-size
:
cover
;
vertical-align
:
middle
;
}
.u-refresh-status-3
.u-refresh-icon
{
display
:
none
;
}
\ No newline at end of file
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