Browse Source

公共询价提示语优化以及添加业务查询企业是否绑定接口过滤

liusw 7 years ago
parent
commit
088682b985

+ 1 - 0
src/main/webapp/WEB-INF/spring/webmvc.xml

@@ -117,6 +117,7 @@
 			<mvc:exclude-mapping path="/seek/getSeekRanking"/>
 			<mvc:exclude-mapping path="/seek/release/template"/>
 			<mvc:exclude-mapping path="/erp/productReplace/update"/>
+			<mvc:exclude-mapping path="/basic/enterprise/findByName/**"/>
 			<bean class="com.uas.platform.b2c.core.filter.SSOInterceptor"></bean>
 		</mvc:interceptor>
 		<!-- 对所有的请求拦截,将Session中的User信息设置进SystemSession -->

+ 1 - 1
src/main/webapp/resources/js/vendor/controllers/forstore/vendor_brand_apply_ctrl.js

@@ -239,7 +239,7 @@ define(['app/app', 'jquery-uploadify'], function(app) {
 
             brand.id = null;
             BrandSubmit.submit({},brand,function(data){
-                toaster.pop('success', '提示', "提交成功,请等待审核");
+                toaster.pop('success', '提示', "提交成功,审核将在3个工作日内完成,耐心等待");
                 window.location.replace('vendor#/brand/apply_list');
             },function(res){
                 $scope.submitEnable = true;

+ 1 - 1
src/main/webapp/resources/js/vendor/controllers/forstore/vendor_component_apply_ctrl.js

@@ -401,7 +401,7 @@ define(['app/app', 'jquery-uploadify'], function(app) {
                     component: $scope.component
                 }
             }).success(function(data){
-                toaster.pop('success', '提示', '提交成功,请等待审核');
+                toaster.pop('success', '提示', '提交成功,审核将在3个工作日内完成,耐心等待');
                 window.location.replace('vendor#/component/applylist');
             }).error(function(response){
                 $scope.submitEnable = true;

+ 2 - 2
src/main/webapp/resources/view/vendor/forstore/seekPurchase.html

@@ -789,7 +789,7 @@
                         <input type="text" class="form-control" placeholder="数量">
                         -
                         -->
-                        <input type="number" class="form-control" ng-blur="onReplyLapQtyBlur($index)" ng-change="onReplyLapQtyInput($index)" ng-model="reply.lapQty" placeholder="数量">
+                        <input type="number" class="form-control" ng-blur="onReplyLapQtyBlur($index)" ng-change="onReplyLapQtyInput($index)" ng-model="reply.lapQty" placeholder="分段数量">
                     </div>
                     <div class="form-item form-right">
                         <span><i>*</i>单价<span ng-if="inquiryItem.currency" ng-bind="inquiryItem.currency == 'USD' ? '$' : '¥'"></span>:</span>
@@ -797,7 +797,7 @@
                             <option value="RMB">¥</option>
                             <option value="USD">$</option>
                         </select>
-                        <input type="number" class="form-control" ng-change="onReplyPriceInput($index)" ng-blur="onReplyPriceBlur($index)" ng-model="reply.price" placeholder="单价">
+                        <input type="number" class="form-control" ng-change="onReplyPriceInput($index)" ng-blur="onReplyPriceBlur($index)" ng-model="reply.price" placeholder="分段单价">
                         <i class="fa fa-minus-circle" ng-if="inquiryItem.replies.length > 1" ng-click="setReplies('sub', $index)"></i>
                         <i class="fa fa-plus-circle" ng-if="inquiryItem.replies.length < 5" ng-click="setReplies('add', $index)"></i>
                     </div>