|
|
@@ -377,6 +377,24 @@ define([ 'angularAMD', 'ui.router', 'ui-bootstrap', 'ngLocal', 'ngTable', 'commo
|
|
|
templateUrl : 'static/view/usercenter/forstore/shipping_address_edit.html',
|
|
|
controller : 'ShippingAddressEditCtrl',
|
|
|
controllerUrl : 'app/controllers/forstore/shipping_address_edit_ctrl'
|
|
|
+ })).state('firstRate', angularAMD.route({
|
|
|
+ // 初次评价
|
|
|
+ url : '/rate/firstRate',
|
|
|
+ templateUrl : 'static/view/usercenter/forstore/first_rate.html',
|
|
|
+ controller : 'firstRateCtrl',
|
|
|
+ controllerUrl : 'app/controllers/forstore/first_rate_ctrl'
|
|
|
+ })).state('addRate', angularAMD.route({
|
|
|
+ // 追加评价
|
|
|
+ url : '/rate/addRate',
|
|
|
+ templateUrl : 'static/view/usercenter/forstore/add_rate.html',
|
|
|
+ controller : 'addRateCtrl',
|
|
|
+ controllerUrl : 'app/controllers/forstore/add_rate_ctrl'
|
|
|
+ })).state('showRate', angularAMD.route({
|
|
|
+ // 查看评价
|
|
|
+ url : '/rate/showRate',
|
|
|
+ templateUrl : 'static/view/usercenter/forstore/show_rate.html',
|
|
|
+ controller : 'showRateCtrl',
|
|
|
+ controllerUrl : 'app/controllers/forstore/show_rate_ctrl'
|
|
|
}));
|
|
|
}]);
|
|
|
|