From da56e33cb4df0f1658ff8cb061380a53bb76a613 Mon Sep 17 00:00:00 2001 From: java110 <928255095@qq.com> Date: Wed, 3 Aug 2022 15:42:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/dev/serviceManage/serviceManage.js | 150 +++++++++--------- 1 file changed, 75 insertions(+), 75 deletions(-) diff --git a/public/pages/dev/serviceManage/serviceManage.js b/public/pages/dev/serviceManage/serviceManage.js index 1f57b8b88..74adf50da 100755 --- a/public/pages/dev/serviceManage/serviceManage.js +++ b/public/pages/dev/serviceManage/serviceManage.js @@ -1,135 +1,135 @@ /** 入驻小区 **/ -(function(vc){ +(function(vc) { var DEFAULT_PAGE = 1; var DEFAULT_ROWS = 10; vc.extends({ - data:{ - serviceManageInfo:{ - services:[], - total:0, - records:1, - moreCondition:false, - name:'', - conditions:{ - appName:'', - appId:'', - serviceName:'', - serviceCode:'', - serviceUrl:'', + data: { + serviceManageInfo: { + services: [], + total: 0, + records: 1, + moreCondition: false, + name: '', + conditions: { + appName: '', + appId: '', + serviceName: '', + serviceCode: '', + serviceUrl: '', } } }, - _initMethod:function(){ + _initMethod: function() { //vc.component._listServices(DEFAULT_PAGE, DEFAULT_ROWS); vc.component._loadDataByParam(); }, - _initEvent:function(){ - vc.on('serviceManage','chooseApp',function(_param){ - vc.copyObject(_param,vc.component.serviceManageInfo.conditions); + _initEvent: function() { + vc.on('serviceManage', 'chooseApp', function(_param) { + vc.copyObject(_param, vc.component.serviceManageInfo.conditions); }); - vc.on('serviceManage','listService',function(_param){ - vc.component._listServices(DEFAULT_PAGE, DEFAULT_ROWS); + vc.on('serviceManage', 'listService', function(_param) { + vc.component._listServices(DEFAULT_PAGE, DEFAULT_ROWS); }); - vc.on('pagination','page_event',function(_currentPage){ - vc.component._listServices(_currentPage,DEFAULT_ROWS); + vc.on('pagination', 'page_event', function(_currentPage) { + vc.component._listServices(_currentPage, DEFAULT_ROWS); }); }, - methods:{ - _listServices:function(_page, _rows){ + methods: { + _listServices: function(_page, _rows) { vc.component.serviceManageInfo.conditions.page = _page; vc.component.serviceManageInfo.conditions.row = _rows; var param = { - params:vc.component.serviceManageInfo.conditions - }; + params: vc.component.serviceManageInfo.conditions + }; - //发送get请求 - vc.http.get('serviceManage', - 'list', - param, - function(json,res){ - var _serviceManageInfo=JSON.parse(json); - vc.component.serviceManageInfo.total = _serviceManageInfo.total; - vc.component.serviceManageInfo.records = _serviceManageInfo.records; - vc.component.serviceManageInfo.services = _serviceManageInfo.services; - vc.emit('pagination','init',{ - total: vc.component.serviceManageInfo.records, - dataCount: vc.component.serviceManageInfo.total, - currentPage:_page - }); - },function(errInfo,error){ - console.log('请求失败处理'); - } - ); + //发送get请求 + vc.http.apiGet('/service.listServices', + param, + function(json, res) { + var _serviceManageInfo = JSON.parse(json); + vc.component.serviceManageInfo.total = _serviceManageInfo.total; + vc.component.serviceManageInfo.records = _serviceManageInfo.records; + vc.component.serviceManageInfo.services = _serviceManageInfo.services; + vc.emit('pagination', 'init', { + total: vc.component.serviceManageInfo.records, + dataCount: vc.component.serviceManageInfo.total, + currentPage: _page + }); + }, + function(errInfo, error) { + console.log('请求失败处理'); + } + ); }, - _openAddServiceModal:function(){ - vc.emit('addService','openAddServiceModal',{}); + _openAddServiceModal: function() { + vc.emit('addService', 'openAddServiceModal', {}); }, - _openEditServiceModel:function(_service){ - vc.emit('editService','openEditServiceModal',_service); + _openEditServiceModel: function(_service) { + vc.emit('editService', 'openEditServiceModal', _service); }, - _openDeleteServiceModel:function(_service){ - vc.emit('deleteService','openDeleteServiceModal',_service); + _openDeleteServiceModel: function(_service) { + vc.emit('deleteService', 'openDeleteServiceModal', _service); }, - _queryServiceMethod:function(){ + _queryServiceMethod: function() { vc.component._listServices(DEFAULT_PAGE, DEFAULT_ROWS); }, - _moreCondition:function(){ - if(vc.component.serviceManageInfo.moreCondition){ + _moreCondition: function() { + if (vc.component.serviceManageInfo.moreCondition) { vc.component.serviceManageInfo.moreCondition = false; - }else{ + } else { vc.component.serviceManageInfo.moreCondition = true; } } - , - _openChooseAppMethod:function(){ - vc.emit('chooseApp','openChooseAppModel',{}); + , + _openChooseAppMethod: function() { + vc.emit('chooseApp', 'openChooseAppModel', {}); }, - _loadDataByParam: function(){ + _loadDataByParam: function() { vc.component.serviceManageInfo.conditions.appId = vc.getParam("appId"); //如果 floodId 没有传 则,直接结束 - if(vc.component.serviceManageInfo.conditions.appId == null - || vc.component.serviceManageInfo.conditions.appId == undefined - || vc.component.serviceManageInfo.conditions.appId == ''){ + if (vc.component.serviceManageInfo.conditions.appId == null || + vc.component.serviceManageInfo.conditions.appId == undefined || + vc.component.serviceManageInfo.conditions.appId == '') { vc.component._listServices(DEFAULT_PAGE, DEFAULT_ROWS); - return ; + return; } var param = { - params:{ - page:DEFAULT_PAGE, - row:DEFAULT_ROWS, - communityId:vc.getCurrentCommunity().communityId, - appId:vc.component.serviceManageInfo.conditions.appId + params: { + page: DEFAULT_PAGE, + row: DEFAULT_ROWS, + communityId: vc.getCurrentCommunity().communityId, + appId: vc.component.serviceManageInfo.conditions.appId } } vc.http.get( 'serviceManage', 'loadApp', - param, - function(json,res){ - if(res.status == 200){ + param, + function(json, res) { + if (res.status == 200) { var _appInfo = JSON.parse(json); var _tmpApp = _appInfo.apps[0]; vc.component.serviceManageInfo.conditions.appName = _tmpApp.name; - return ; + return; } vc.toast(json); - }, - function(errInfo,error){ + }, + function(errInfo, error) { console.log('请求失败处理'); vc.toast(errInfo); - }); + }); vc.component._listServices(DEFAULT_PAGE, DEFAULT_ROWS); @@ -137,4 +137,4 @@ } } }); -})(window.vc); +})(window.vc); \ No newline at end of file