瀏覽代碼

增加商品属性定义

abiao 5 年之前
父節點
當前提交
e129830157
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      app/models/product_attr_config.rb

+ 3 - 1
app/models/product_attr_config.rb

@@ -7,12 +7,14 @@ class ProductAttrConfig < ActiveRecord::Base
 
 
     def PRODUCT_ENUM
-        showProducts=[0,"初始值"]
+        showProducts=["1","初始值"]
+=begin
         @products = Product.where("show_flag=1").order("created_at desc")
         @products.each do |pd|
             a=[pd.name,pd.id]
             showProducts.push(a)
         end
+=end
         #showProducts.each {|v| puts v}
         return showProducts
     end