CacheRefreshController.js
415 字节
"use strict";
var CacheRefreshController = angular.module('CacheRefreshController',['ngDialog']);
CacheRefreshController.controller('CacheRefreshController', [
'$rootScope',
'$scope',
'CacheRefreshService',
function($rootScope, $scope, CacheRefreshService) {
//刷新库存
$scope.stockCacheRefresh = function() {
CacheRefreshService.stockRefresh();
};
}
]);