var app = angular.module("myApp",[]);
app.service("zhuanhuan",function(){
this.Func = function(x){
return x.toString(16);
}
})
app.controller("myCtrl",function($scope,zhuanhuan){
$scope.hex = zhuanhuan.Func(123);
})
<div ng-app="myApp" ng-controller="myCtrl">
<P>该数字的19进制是</P>
<h1>{{hex}}</h1>
</div>