snow 1 年之前
父節點
當前提交
ab61b078d4

文件差異過大導致無法顯示
+ 0 - 0
dist/static/js/0.js


+ 2 - 2
src/views/goodStore/goodsOnline/components/fixed-price-form.vue

@@ -808,12 +808,12 @@ export default {
       const _costFee = Number(cost_fee)
       const _systemCostFee = Number(new_cost_fee)
 
-      if(_salePrice && _salePrice < _systemSalePrice){
+      if(_salePrice && (_salePrice < _systemSalePrice)){
         this.$message.warning('售价不能小于系统售价!')
         return
       }
 
-      if(_costFee && _costFee < _systemCostFee) {
+      if(_costFee && (_costFee < _systemCostFee)) {
         this.$message.warning('工艺费不能小于系统工艺费!')
         return
       }

+ 3 - 3
src/views/youzan/othgoodsOnline/components/online-exam-form.vue

@@ -234,10 +234,10 @@ export default {
   props: ["size", "statusList", "disabled", "isMust", "labelWidth", "time", "sitem"],
   /**
    * 属性集合
-   * @param {String}        size             : 组件大小             非必填
+   * @param {String}        size             : 组件大小              非必填
    * @param {Array}         statusList       : 驳回至备选项          必填
-   * @param {Boolean}       disabled         : 是否禁用              必填
-   * @param {Boolean}       isMust           : 是否需要展示驳回节点   必填
+   * @param {Boolean}       disabled         : 是否禁用             必填
+   * @param {Boolean}       isMust           : 是否需要展示驳回节点    必填
    */
   /**
    * 事件集合

部分文件因文件數量過多而無法顯示