Commit 10e4625a by 朱建香

1018

parent c700d9f2
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
webpackJsonp([26],{
webpackJsonp([17],{
/***/ 233:
/***/ (function(module, exports) {
/***/ 174:
/***/ (function(module, exports, __webpack_require__) {
"use strict";
throw new Error("Module build failed: Error: ENOENT: no such file or directory, open 'D:\\git_zhu\\doorlock\\dev\\src\\view\\doorlockUsers\\v_unlockInfo.js'");
/* WEBPACK VAR INJECTION */(function(Vue) {
var _public = __webpack_require__(2);
_public.iot.ready(init); /**
* v_unlockInfo.js
* Version: 0.1
* User: wy
* Date: 2017-10-09
* Copyright(c) 2017. U-GEN Tech.Co,Ltd. All Rights Reserved.
* 绑定开锁信息页面
*/
function init() {
//通用 dialog、loading组件
_public.uPublic.componentsInit(['u-dialog', 'u-loading']);
var app = new Vue({
data: {
unlockInfoList: [{ value: 1, title: '指纹1', rightText: 123456 }, { value: 2, title: '指纹2', rightText: 123456 }],
loadShowFlag: false,
loadFlag: false,
loadText: Vue.t('scroll.clickToLoadMore'),
pagesize: 10,
tip: Vue.t('unlockInfo.noInfoTip'),
//配置组件
componentsConfig: initComponentsConfig()
},
mounted: function mounted() {
this.extras = _public.iot.navigator.getExtras();
//获取已绑定的开锁信息
getBindedLockInfo(this);
},
methods: {
getUnlockInfoList: function getUnlockInfoList() {
return this.unlockInfoList;
},
setUnlockInfoList: function setUnlockInfoList(list) {
this.unlockInfoList = list;
},
//tap <
onBackTap: function onBackTap() {
backTap();
},
//tap 添加
onAddTap: function onAddTap() {
addTap();
},
onTapLoad: function onTapLoad() {
tapLoad();
}
}
}).$mount('#app');
}
//配置组件参数
function initComponentsConfig() {
return {
dialog: {
initParam: {
class: 'custom-dialog'
}
},
loading: {
initParam: {
class: 'custom-loading'
}
}
};
}
//tap <
function backTap() {
_public.iot.navigator.back();
}
//tap 添加
function addTap() {
_public.iot.navigator.openWindow({
url: './addUnlockInfo.html',
id: 'addUnlockInfo'
});
}
//点击加载更多
function tapLoad() {
if (!self.loadFlag) {
self.loadText = Vue.t('scroll.loading');
self.loadFlag = true;
//再次发送获取用户列表请求
}
}
//获取已绑定的开锁信息
function getBindedLockInfo(self) {
_public.uComponents.showLoading(self);
_public.iot.business.api.sendCustom('lock/getBindedInfo', {
data: {
id: self.extras.id
},
success: function success(response) {
console.log(response);
var data = _public.uPublic.checkResponseData(response.data);
if (data) {
console.log(data);
var list = [];
for (var i = 0; i < record.length; i++) {
list[i] = {};
}
self.setUnlockInfoList(self.getUnlockInfoList().concat(list));
//更新列表数据
_public.uComponents.changeList(self, self.getList());
} else {}
},
error: function error(err) {
console.log(err);
},
complete: function complete() {
_public.uComponents.hideLoading(self);
}
});
}
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(1)["default"]))
/***/ }),
/***/ 274:
/***/ (function(module, exports, __webpack_require__) {
module.exports = __webpack_require__(233);
module.exports = __webpack_require__(174);
/***/ })
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment