<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                ThinkChat2.0新版上線,更智能更精彩,支持會話、畫圖、視頻、閱讀、搜索等,送10W Token,即刻開啟你的AI之旅 廣告
                >分類列表,獲取頂級菜單 ~~~[api] get:/index.php/goods/Apiclass/getTopMenuList int:num=0#獲取菜單的個數 ,0或者不填表示獲取全部 string:sort=order_num #排序字段 string:sort_type= desc#排序類型 int:mall_model_id=1#商城id,如果有多個商城需要填寫商城id <<< success { "err": 0, "count": 2, "data": [ { "id": 10, "title": "語文", "en_title": "Chinese", "ico": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "order_num": 0, "parent_id": 0 }, { "id": 11, "title": "數學", "en_title": "Maths", "ico": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "order_num": 0, "parent_id": 0 } ] } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~ >分類多級列表,獲取帶子集的分類列表或者獲取某個分類下的子分類 ~~~[api] get:/index.php/goods/Apiclass/getMenuList int:parent_id=0#頂級分類id,0或者不填表示所有的分類 int:num=0#獲取菜單的頂級個數 ,0或者不填表示獲取全部 int:level=0#獲取菜單層數 ,0或者不填表示獲取全部 string:sort=order_num #排序字段 string:sort_type= desc#排序類型 <<< success { "err": 0, "count": 2, "data": [ { "id": 10, "title": "語文", "en_title": "Chinese", "ico": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "order_num": 0, "parent_id": 0, "sub": [ { "id": 12, "title": "作文", "en_title": "Composition", "ico": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "order_num": 0, "parent_id": 10, "sub": [ ] }, { "id": 13, "title": "詩詞", "en_title": "Poetry", "ico": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "order_num": 0, "parent_id": 10, "sub": [ ] } ] }, { "id": 11, "title": "數學", "en_title": "Maths", "ico": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "order_num": 0, "parent_id": 0 } ] } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~ >獲取分類詳細信息 ~~~[api] get:/index.php/goods/Apiclass/getInfo *int:id=1#分類id <<< success { "err": 0, "data": { "id": 10, "title": "語文", "en_title": "Chinese", "ico": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "order_num": 0, "status": 0, "parent_id": 0 } } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~ >產品列表 ~~~[api] get:/index.php/goods/Apigoods/getList int:pagesize=10#每頁顯示個數 int:page=1#顯示頁碼數 string:between_price= #價格區間 如100-200 string:keyword= #檢索的關鍵字 string:sort= id #排序字段 string:sort_type= asc#排序類型 int:parent_id=1#產品分類id int:mall_model_id=1#商城id,如果有多個商城需要填寫商城id <<< success { "err": 0, "page": 1, "pageTotal": 10, "pageSize": 10, "count": 1, "data": [ { "id": 10, "title": "產品名稱", "thumb": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "shelves": 1, "price": 100, "inventory": 10, "coding": "商品編號", "goods_type": 1, "addtime": 12345678910, "shop_info": { "id": 10, "title": "商城名稱", "thumb": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png" }, "publisher": { "id": 10, "headPath": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "name": "奶牛COWCMS" }, "class": { "id": 10, "title": "分類名稱", "thumb": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png" } } ] } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~ >獲取登錄會員可兌換或者可購買的產品列表 ~~~[api] get:/index.php/goods/Apigoods/getList_buy int:num=4#顯示個數 string:between_price= #價格區間 如100-200 string:keyword= #檢索的關鍵字 string:sort= price #排序字段 string:sort_type= desc#排序類型 int:parent_id=0#產品分類id int:mall_model_id=1#商城id,如果有多個商城需要填寫商城id <<< success { "err": 0, "count": 1, "data": [ { "id": 10, "title": "產品名稱", "thumb": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "shelves": 1, "price": 100, "inventory": 10, "coding": "商品編號", "goods_type": 1, "addtime": 12345678910, "shop_info": { "id": 10, "title": "商城名稱", "thumb": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png" }, "publisher": { "id": 10, "headPath": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "name": "奶牛COWCMS" }, "class": { "id": 10, "title": "分類名稱", "thumb": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png" } } ] } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~ >產品詳情信息 ~~~[api] get:/index.php/goods/Apigoods/getInfo *int:id=1#課程id *int:mall_model_id=1#商城id,如果有多個商城需要填寫商城id <<< success { "err": 0, "data": { "id": 10, "title": "產品名稱", "thumb": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "shelves": 1, "price": 100, "inventory": 10, "coding": "商品編號", "content": "課程內容", "parameter": "產品規格:100x200x10", "packaging": "售后包裝", "goods_type": 1, "addtime": 12345678910, "shop_info": { "id": 10, "title": "商城名稱", "thumb": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png" }, "property": [ { "name": "顏色", "val": [ "紅色", "白色" ] }, { "name": "尺碼", "val": [ "XL", "ML" ] } ], "property_price": { "0_0|1_0": { "price": "11", "inventory": "22" } }, "publisher": { "id": 1, "headPath": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png", "name": "奶牛COWCMS" }, "class": { "id": 10, "title": "分類名稱", "thumb": "http://open.cowcms.com/Public/css_js_font_img/plugg/img/logo.png" } } } <<< error { "err": 1, "code": 1000, "content": "錯誤信息" } ~~~
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看