diff --git a/api/release.js b/api/release.js new file mode 100644 index 0000000..3b53a12 --- /dev/null +++ b/api/release.js @@ -0,0 +1,43 @@ +// +---------------------------------------------------------------------- +// | CRMEB [ CRMEB赋能开发者,助力企业发展 ] +// +---------------------------------------------------------------------- +// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved. +// +---------------------------------------------------------------------- +// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 +// +---------------------------------------------------------------------- +// | Author: CRMEB Team +// +---------------------------------------------------------------------- +import request from "@/utils/request.js"; + +/** + * 获取发布管理转售商品列表 + * @param numType boolean true 购物车数量,false=购物车产品数量 + */ +export function getResale(data) { + return request.get("community/resale/lst", data); +} + +/** + * 清除发布管理转售商品 + * @param object ids + */ +export function getResaledelete(id) { + return request.post('community/resale/delete/'+ id); +} + + +/** + * 用户是否同意转售商品折扣价 + * @param object ids + */ +export function getResalecheck(id,data) { + return request.post('community/resale/check/'+ id,data); +} + +/** + * 获取转售商品详情 + * @param object ids + */ +export function getResaleid(id) { + return request.get('community/resale/' + id); +} diff --git a/api/sale.js b/api/sale.js new file mode 100644 index 0000000..7fc62dc --- /dev/null +++ b/api/sale.js @@ -0,0 +1,10 @@ +// +---------------------------------------------------------------------- +// | CRMEB [ CRMEB赋能开发者,助力企业发展 ] +// +---------------------------------------------------------------------- +// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved. +// +---------------------------------------------------------------------- +// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 +// +---------------------------------------------------------------------- +// | Author: CRMEB Team +// +---------------------------------------------------------------------- +import request from "@/utils/request.js"; \ No newline at end of file diff --git a/api/trading-floor.js b/api/trading-floor.js new file mode 100644 index 0000000..3ab9887 --- /dev/null +++ b/api/trading-floor.js @@ -0,0 +1,88 @@ +// +---------------------------------------------------------------------- +// | CRMEB [ CRMEB赋能开发者,助力企业发展 ] +// +---------------------------------------------------------------------- +// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved. +// +---------------------------------------------------------------------- +// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 +// +---------------------------------------------------------------------- +// | Author: CRMEB Team +// +---------------------------------------------------------------------- +import request from "@/utils/request.js"; + + +/** + * 调货列表 + * + */ +export function getCommunityList(data) { + return request.get('community/lst', data, { + noAuth: true + }); +} +/** + * 商品详情 + * + */ +export function getCommunityshow(data) { + + return request.get('community/show/' + data, {}, { + noAuth: true + }); +} + +/** + * 可转售的订单列表 + * + */ +export function getCommunitygetOrderList(data) { + return request.get('community/product/lst', data, { + noAuth: true + }); +} + +/** + * 发起转售 + * + */ +export function getCommunitycreate(data) { + return request.post(`community/create`, data, { + login: true + }); +} + +/** + * 修改转售 + * + */ +export function getCommunityUpdate(data) { + return request.post(`community/update`, data, { + login: true + }); +} +/** + * 加入购物车 + * + */ +export function getCommunityaddCart(data) { + return request.post('community/addCart', data, { + noAuth: true + }); +} + +//商品宝贝详情 + +export function getProductDetail(id) { + return request.get('store/product/detail/' + id, + ); +} +//获取转售商品详情 +export function getresaleDetail(id) { + return request.get('community/resale/' + id, + ); +} + +//编辑转售商品 +export function getresaleEdit(id,data) { + return request.post('community/resale/edit/' + id,data + ); +} \ No newline at end of file diff --git a/components/cx-navTitle.vue b/components/cx-navTitle.vue new file mode 100644 index 0000000..6382788 --- /dev/null +++ b/components/cx-navTitle.vue @@ -0,0 +1,129 @@ + + + + \ No newline at end of file diff --git a/components/e-select/e-select.vue b/components/e-select/e-select.vue new file mode 100644 index 0000000..6c865ca --- /dev/null +++ b/components/e-select/e-select.vue @@ -0,0 +1,448 @@ + + + + + diff --git a/components/goodsCard.vue b/components/goodsCard.vue new file mode 100644 index 0000000..dfec1e6 --- /dev/null +++ b/components/goodsCard.vue @@ -0,0 +1,213 @@ + + + + + \ No newline at end of file diff --git a/components/realselist/realselist.vue b/components/realselist/realselist.vue new file mode 100644 index 0000000..e1b31f6 --- /dev/null +++ b/components/realselist/realselist.vue @@ -0,0 +1,621 @@ + + + + + \ No newline at end of file diff --git a/components/release/release.vue b/components/release/release.vue new file mode 100644 index 0000000..bacdf9e --- /dev/null +++ b/components/release/release.vue @@ -0,0 +1,190 @@ + + + + + \ No newline at end of file diff --git a/components/shoppinglist/shoppinglist.vue b/components/shoppinglist/shoppinglist.vue new file mode 100644 index 0000000..3b921a9 --- /dev/null +++ b/components/shoppinglist/shoppinglist.vue @@ -0,0 +1,571 @@ + + + + + \ No newline at end of file diff --git a/components/subtractive/subtractive.vue b/components/subtractive/subtractive.vue new file mode 100644 index 0000000..8ee625e --- /dev/null +++ b/components/subtractive/subtractive.vue @@ -0,0 +1,208 @@ + + + \ No newline at end of file diff --git a/components/villageTeam/villageTeam.vue b/components/villageTeam/villageTeam.vue new file mode 100644 index 0000000..97c6ed4 --- /dev/null +++ b/components/villageTeam/villageTeam.vue @@ -0,0 +1,396 @@ + + + + + \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..fd9711a --- /dev/null +++ b/package.json @@ -0,0 +1,16 @@ +{ + "id": "e-select", + "name": "e-select下拉选择器", + "displayName": "e-select下拉选择器", + "version": "1.0.7", + "description": "select下拉选择器,支持vue2、vue3,支持搜索过滤,支持滚动动画,内置插槽可用于搭配分页组件", + "keywords": [ + "下拉选择框" + ], + "dcloudext": { + "category": [ + "前端组件", + "通用组件" + ] + } +} \ No newline at end of file diff --git a/pages/admin/order/monitor.vue b/pages/admin/order/monitor.vue new file mode 100644 index 0000000..8b37c4d --- /dev/null +++ b/pages/admin/order/monitor.vue @@ -0,0 +1,663 @@ + + + + + \ No newline at end of file diff --git a/pages/commissionedSales/addDelegation/index.vue b/pages/commissionedSales/addDelegation/index.vue new file mode 100644 index 0000000..5b800aa --- /dev/null +++ b/pages/commissionedSales/addDelegation/index.vue @@ -0,0 +1,423 @@ + + + + + \ No newline at end of file diff --git a/pages/commissionedSales/delegation_details/index.vue b/pages/commissionedSales/delegation_details/index.vue new file mode 100644 index 0000000..df12537 --- /dev/null +++ b/pages/commissionedSales/delegation_details/index.vue @@ -0,0 +1,282 @@ + + + + + \ No newline at end of file diff --git a/pages/commissionedSales/index/index.vue b/pages/commissionedSales/index/index.vue new file mode 100644 index 0000000..1cd1dbf --- /dev/null +++ b/pages/commissionedSales/index/index.vue @@ -0,0 +1,164 @@ + + + + + \ No newline at end of file diff --git a/pages/commissionedSales/initiateDelegation/index.vue b/pages/commissionedSales/initiateDelegation/index.vue new file mode 100644 index 0000000..ce2d100 --- /dev/null +++ b/pages/commissionedSales/initiateDelegation/index.vue @@ -0,0 +1,824 @@ + + + + + \ No newline at end of file diff --git a/pages/trading_hall/product_details/index.vue b/pages/trading_hall/product_details/index.vue new file mode 100644 index 0000000..cb5bc2c --- /dev/null +++ b/pages/trading_hall/product_details/index.vue @@ -0,0 +1,475 @@ + + + + + \ No newline at end of file diff --git a/pages/users/online_warehousing/index.vue b/pages/users/online_warehousing/index.vue new file mode 100644 index 0000000..b6a02bc --- /dev/null +++ b/pages/users/online_warehousing/index.vue @@ -0,0 +1,461 @@ + + + + + \ No newline at end of file diff --git a/pages/users/order_list/indexCopy.vue b/pages/users/order_list/indexCopy.vue new file mode 100644 index 0000000..677cdfa --- /dev/null +++ b/pages/users/order_list/indexCopy.vue @@ -0,0 +1,1132 @@ + + + + + \ No newline at end of file diff --git a/pages/users/order_list/order.vue b/pages/users/order_list/order.vue new file mode 100644 index 0000000..febd088 --- /dev/null +++ b/pages/users/order_list/order.vue @@ -0,0 +1,1182 @@ + + + + + \ No newline at end of file diff --git a/pages/users/payment/payment.vue b/pages/users/payment/payment.vue new file mode 100644 index 0000000..ca3618d --- /dev/null +++ b/pages/users/payment/payment.vue @@ -0,0 +1,491 @@ + + + + + \ No newline at end of file diff --git a/pages/users/supply_procurement/index.vue b/pages/users/supply_procurement/index.vue new file mode 100644 index 0000000..b968269 --- /dev/null +++ b/pages/users/supply_procurement/index.vue @@ -0,0 +1,75 @@ + + + + + \ No newline at end of file diff --git a/pages/users/trading_hall/index.vue b/pages/users/trading_hall/index.vue new file mode 100644 index 0000000..dbfe411 --- /dev/null +++ b/pages/users/trading_hall/index.vue @@ -0,0 +1,460 @@ + + + + + \ No newline at end of file diff --git a/static/iconfont/icontan.css b/static/iconfont/icontan.css new file mode 100644 index 0000000..60c97bc --- /dev/null +++ b/static/iconfont/icontan.css @@ -0,0 +1,82 @@ +@font-face { + font-family: "icontan"; /* Project id 3552766 */ + src: url('//at.alicdn.com/t/c/font_3552766_bmogttr4zyj.woff2?t=1688542944134') format('woff2'), + url('//at.alicdn.com/t/c/font_3552766_bmogttr4zyj.woff?t=1688542944134') format('woff'), + url('//at.alicdn.com/t/c/font_3552766_bmogttr4zyj.ttf?t=1688542944134') format('truetype'); +} + +.icontan { + font-family: "icontan" !important; + font-size: 16px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.tan-a-lujing17324:before { + content: "\e602"; +} + +.tan-xianhuo:before { + content: "\e601"; +} + +.tan-dianpu:before { + content: "\e600"; +} + +.tan-clock:before { + content: "\e627"; +} + +.tan-ditu_dingwei_o:before { + content: "\ebbb"; +} + +.tan-f24gl-telephone:before { + content: "\e953"; +} + +.tan-sound-Mute:before { + content: "\e766"; +} + +.tan-vehivles:before { + content: "\e76b"; +} + +.tan-shoes:before { + content: "\e76c"; +} + +.tan-aviation:before { + content: "\e770"; +} + +.tan-landtransportation:before { + content: "\e773"; +} + +.tan-dingwei:before { + content: "\e8c4"; +} + +.tan-favorites-fill:before { + content: "\e721"; +} + +.tan-rmb:before { + content: "\e761"; +} + +.tan-scanning:before { + content: "\e762"; +} + +.tan-raw:before { + content: "\e75e"; +} + +.tan-service:before { + content: "\e764"; +} diff --git a/static/images/GRZX/BG.png b/static/images/GRZX/BG.png new file mode 100644 index 0000000..e40b080 Binary files /dev/null and b/static/images/GRZX/BG.png differ diff --git a/static/images/GRZX/DFH.png b/static/images/GRZX/DFH.png new file mode 100644 index 0000000..0d592ac Binary files /dev/null and b/static/images/GRZX/DFH.png differ diff --git a/static/images/GRZX/DFK.png b/static/images/GRZX/DFK.png new file mode 100644 index 0000000..df28e06 Binary files /dev/null and b/static/images/GRZX/DFK.png differ diff --git a/static/images/GRZX/DPJ.png b/static/images/GRZX/DPJ.png new file mode 100644 index 0000000..587f2ce Binary files /dev/null and b/static/images/GRZX/DPJ.png differ diff --git a/static/images/GRZX/DSH.png b/static/images/GRZX/DSH.png new file mode 100644 index 0000000..899c3b7 Binary files /dev/null and b/static/images/GRZX/DSH.png differ diff --git a/static/images/GRZX/KF.png b/static/images/GRZX/KF.png new file mode 100644 index 0000000..464955b Binary files /dev/null and b/static/images/GRZX/KF.png differ diff --git a/static/images/GRZX/SH.png b/static/images/GRZX/SH.png new file mode 100644 index 0000000..010ba1c Binary files /dev/null and b/static/images/GRZX/SH.png differ diff --git a/static/images/GRZX/SZ.png b/static/images/GRZX/SZ.png new file mode 100644 index 0000000..4348966 Binary files /dev/null and b/static/images/GRZX/SZ.png differ diff --git a/static/images/GZT/BG.png b/static/images/GZT/BG.png new file mode 100644 index 0000000..f660a31 Binary files /dev/null and b/static/images/GZT/BG.png differ diff --git a/static/images/GZT/DDGL.png b/static/images/GZT/DDGL.png new file mode 100644 index 0000000..aace7ea Binary files /dev/null and b/static/images/GZT/DDGL.png differ diff --git a/static/images/GZT/DDHX.png b/static/images/GZT/DDHX.png new file mode 100644 index 0000000..fe482a8 Binary files /dev/null and b/static/images/GZT/DDHX.png differ diff --git a/static/images/GZT/DDHX1.png b/static/images/GZT/DDHX1.png new file mode 100644 index 0000000..097c705 Binary files /dev/null and b/static/images/GZT/DDHX1.png differ diff --git a/static/images/GZT/FBGL.png b/static/images/GZT/FBGL.png new file mode 100644 index 0000000..b5c6a14 Binary files /dev/null and b/static/images/GZT/FBGL.png differ diff --git a/static/images/GZT/GHCG.png b/static/images/GZT/GHCG.png new file mode 100644 index 0000000..4bf1198 Binary files /dev/null and b/static/images/GZT/GHCG.png differ diff --git a/static/images/GZT/JHGL.png b/static/images/GZT/JHGL.png new file mode 100644 index 0000000..e9c71fe Binary files /dev/null and b/static/images/GZT/JHGL.png differ diff --git a/static/images/GZT/JYDT.png b/static/images/GZT/JYDT.png new file mode 100644 index 0000000..77473ab Binary files /dev/null and b/static/images/GZT/JYDT.png differ diff --git a/static/images/GZT/KFJL.png b/static/images/GZT/KFJL.png new file mode 100644 index 0000000..82ce5ff Binary files /dev/null and b/static/images/GZT/KFJL.png differ diff --git a/static/images/GZT/RKGL.png b/static/images/GZT/RKGL.png new file mode 100644 index 0000000..218620a Binary files /dev/null and b/static/images/GZT/RKGL.png differ diff --git a/static/images/GZT/SHSZ.png b/static/images/GZT/SHSZ.png new file mode 100644 index 0000000..5b28957 Binary files /dev/null and b/static/images/GZT/SHSZ.png differ diff --git a/static/images/GZT/SMCK.png b/static/images/GZT/SMCK.png new file mode 100644 index 0000000..76f0338 Binary files /dev/null and b/static/images/GZT/SMCK.png differ diff --git a/static/images/GZT/SMCK1.png b/static/images/GZT/SMCK1.png new file mode 100644 index 0000000..0f816a9 Binary files /dev/null and b/static/images/GZT/SMCK1.png differ diff --git a/static/images/GZT/SPGL.png b/static/images/GZT/SPGL.png new file mode 100644 index 0000000..4af08e1 Binary files /dev/null and b/static/images/GZT/SPGL.png differ diff --git a/static/images/GZT/TXGL.png b/static/images/GZT/TXGL.png new file mode 100644 index 0000000..79f603f Binary files /dev/null and b/static/images/GZT/TXGL.png differ diff --git a/static/images/GZT/WDDP.png b/static/images/GZT/WDDP.png new file mode 100644 index 0000000..3fac232 Binary files /dev/null and b/static/images/GZT/WDDP.png differ diff --git a/static/images/GZT/WTXS.png b/static/images/GZT/WTXS.png new file mode 100644 index 0000000..cfb45ad Binary files /dev/null and b/static/images/GZT/WTXS.png differ diff --git a/static/images/SHSZ/BKQS.png b/static/images/SHSZ/BKQS.png new file mode 100644 index 0000000..a3e2d78 Binary files /dev/null and b/static/images/SHSZ/BKQS.png differ diff --git a/static/images/SHSZ/BZ.png b/static/images/SHSZ/BZ.png new file mode 100644 index 0000000..056446e Binary files /dev/null and b/static/images/SHSZ/BZ.png differ diff --git a/static/images/SHSZ/BZ1.png b/static/images/SHSZ/BZ1.png new file mode 100644 index 0000000..54506f0 Binary files /dev/null and b/static/images/SHSZ/BZ1.png differ diff --git a/static/images/SHSZ/DPPZ.png b/static/images/SHSZ/DPPZ.png new file mode 100644 index 0000000..ca03695 Binary files /dev/null and b/static/images/SHSZ/DPPZ.png differ diff --git a/static/images/SHSZ/DW.png b/static/images/SHSZ/DW.png new file mode 100644 index 0000000..66ef5e3 Binary files /dev/null and b/static/images/SHSZ/DW.png differ diff --git a/static/images/SHSZ/FHPZ.png b/static/images/SHSZ/FHPZ.png new file mode 100644 index 0000000..2749278 Binary files /dev/null and b/static/images/SHSZ/FHPZ.png differ diff --git a/static/images/SHSZ/JBPZ.png b/static/images/SHSZ/JBPZ.png new file mode 100644 index 0000000..b88e0f0 Binary files /dev/null and b/static/images/SHSZ/JBPZ.png differ diff --git a/static/images/SHSZ/SCBJ.png b/static/images/SHSZ/SCBJ.png new file mode 100644 index 0000000..eeff659 Binary files /dev/null and b/static/images/SHSZ/SCBJ.png differ diff --git a/static/images/SHSZ/SGQL.png b/static/images/SHSZ/SGQL.png new file mode 100644 index 0000000..358606f Binary files /dev/null and b/static/images/SHSZ/SGQL.png differ diff --git a/static/images/SHSZ/SLDP.png b/static/images/SHSZ/SLDP.png new file mode 100644 index 0000000..ea4bbd3 Binary files /dev/null and b/static/images/SHSZ/SLDP.png differ diff --git a/static/images/SHSZ/YYZZ.png b/static/images/SHSZ/YYZZ.png new file mode 100644 index 0000000..d047006 Binary files /dev/null and b/static/images/SHSZ/YYZZ.png differ diff --git a/static/images/SHSZ/ZPMH.png b/static/images/SHSZ/ZPMH.png new file mode 100644 index 0000000..ce2d33c Binary files /dev/null and b/static/images/SHSZ/ZPMH.png differ diff --git a/static/images/SJRZ/CG.png b/static/images/SJRZ/CG.png new file mode 100644 index 0000000..1a4a8dc Binary files /dev/null and b/static/images/SJRZ/CG.png differ diff --git a/static/images/SJRZ/CGBZ.png b/static/images/SJRZ/CGBZ.png new file mode 100644 index 0000000..ab775ee Binary files /dev/null and b/static/images/SJRZ/CGBZ.png differ diff --git a/static/images/SJRZ/DSH.png b/static/images/SJRZ/DSH.png new file mode 100644 index 0000000..29f0623 Binary files /dev/null and b/static/images/SJRZ/DSH.png differ diff --git a/static/images/SJRZ/FH.png b/static/images/SJRZ/FH.png new file mode 100644 index 0000000..3bacef0 Binary files /dev/null and b/static/images/SJRZ/FH.png differ diff --git a/static/images/SJRZ/JL.png b/static/images/SJRZ/JL.png new file mode 100644 index 0000000..3fc883d Binary files /dev/null and b/static/images/SJRZ/JL.png differ diff --git a/static/images/SJRZ/SB.png b/static/images/SJRZ/SB.png new file mode 100644 index 0000000..7cb9b86 Binary files /dev/null and b/static/images/SJRZ/SB.png differ diff --git a/static/images/SJRZ/SBBZ.png b/static/images/SJRZ/SBBZ.png new file mode 100644 index 0000000..73ec1c4 Binary files /dev/null and b/static/images/SJRZ/SBBZ.png differ diff --git a/static/images/SJRZ/SB_a.png b/static/images/SJRZ/SB_a.png new file mode 100644 index 0000000..d7864d1 Binary files /dev/null and b/static/images/SJRZ/SB_a.png differ diff --git a/static/images/SJRZ/TIT.png b/static/images/SJRZ/TIT.png new file mode 100644 index 0000000..af9a145 Binary files /dev/null and b/static/images/SJRZ/TIT.png differ diff --git a/static/images/SJRZ/bg.png b/static/images/SJRZ/bg.png new file mode 100644 index 0000000..e487c8a Binary files /dev/null and b/static/images/SJRZ/bg.png differ diff --git a/static/images/SJRZ/main_tit.png b/static/images/SJRZ/main_tit.png new file mode 100644 index 0000000..25ce5e7 Binary files /dev/null and b/static/images/SJRZ/main_tit.png differ diff --git a/static/images/SJRZ/succes.png b/static/images/SJRZ/succes.png new file mode 100644 index 0000000..68c3e4b Binary files /dev/null and b/static/images/SJRZ/succes.png differ diff --git a/static/images/arrow-bottom.png b/static/images/arrow-bottom.png new file mode 100644 index 0000000..25a4aa8 Binary files /dev/null and b/static/images/arrow-bottom.png differ diff --git a/static/images/beijin.png b/static/images/beijin.png new file mode 100644 index 0000000..5cae1e7 Binary files /dev/null and b/static/images/beijin.png differ diff --git a/static/images/bg1.png b/static/images/bg1.png new file mode 100644 index 0000000..8146a52 Binary files /dev/null and b/static/images/bg1.png differ diff --git a/static/images/bg2.png b/static/images/bg2.png new file mode 100644 index 0000000..feb62ae Binary files /dev/null and b/static/images/bg2.png differ diff --git a/static/images/bgic1.png b/static/images/bgic1.png new file mode 100644 index 0000000..f4ccad2 Binary files /dev/null and b/static/images/bgic1.png differ diff --git a/static/images/bgic2.png b/static/images/bgic2.png new file mode 100644 index 0000000..8aa55f6 Binary files /dev/null and b/static/images/bgic2.png differ diff --git a/static/images/close.png b/static/images/close.png new file mode 100644 index 0000000..2bb7c86 Binary files /dev/null and b/static/images/close.png differ diff --git a/static/images/daoru.png b/static/images/daoru.png new file mode 100644 index 0000000..e3a669e Binary files /dev/null and b/static/images/daoru.png differ diff --git a/static/images/ddjk.png b/static/images/ddjk.png new file mode 100644 index 0000000..7529c03 Binary files /dev/null and b/static/images/ddjk.png differ diff --git a/static/images/diaohuo.png b/static/images/diaohuo.png new file mode 100644 index 0000000..132b867 Binary files /dev/null and b/static/images/diaohuo.png differ diff --git a/static/images/discounts.png b/static/images/discounts.png new file mode 100644 index 0000000..9b5ff9c Binary files /dev/null and b/static/images/discounts.png differ diff --git a/static/images/fabu.png b/static/images/fabu.png new file mode 100644 index 0000000..a71d25b Binary files /dev/null and b/static/images/fabu.png differ diff --git a/static/images/index/DW.png b/static/images/index/DW.png new file mode 100644 index 0000000..7b45edc Binary files /dev/null and b/static/images/index/DW.png differ diff --git a/static/images/index/GWC.png b/static/images/index/GWC.png new file mode 100644 index 0000000..3210a6c Binary files /dev/null and b/static/images/index/GWC.png differ diff --git a/static/images/index/KF.png b/static/images/index/KF.png new file mode 100644 index 0000000..2fc2cf2 Binary files /dev/null and b/static/images/index/KF.png differ diff --git a/static/images/index/PEN.png b/static/images/index/PEN.png new file mode 100644 index 0000000..0627f8d Binary files /dev/null and b/static/images/index/PEN.png differ diff --git a/static/images/index/SS.png b/static/images/index/SS.png new file mode 100644 index 0000000..4ef601e Binary files /dev/null and b/static/images/index/SS.png differ diff --git a/static/images/isshow.png b/static/images/isshow.png new file mode 100644 index 0000000..310e51e Binary files /dev/null and b/static/images/isshow.png differ diff --git a/static/images/jiankong.png b/static/images/jiankong.png new file mode 100644 index 0000000..b25184b Binary files /dev/null and b/static/images/jiankong.png differ diff --git a/static/images/loction.png b/static/images/loction.png new file mode 100644 index 0000000..1f394cc Binary files /dev/null and b/static/images/loction.png differ diff --git a/static/images/season.png b/static/images/season.png new file mode 100644 index 0000000..d2568dd Binary files /dev/null and b/static/images/season.png differ diff --git a/static/images/serch.png b/static/images/serch.png new file mode 100644 index 0000000..9dd2354 Binary files /dev/null and b/static/images/serch.png differ diff --git a/static/images/serchbtn.png b/static/images/serchbtn.png new file mode 100644 index 0000000..d6138db Binary files /dev/null and b/static/images/serchbtn.png differ diff --git a/static/images/shop.png b/static/images/shop.png new file mode 100644 index 0000000..d1561fd Binary files /dev/null and b/static/images/shop.png differ diff --git a/static/images/shouhuo.png b/static/images/shouhuo.png new file mode 100644 index 0000000..b40bd73 Binary files /dev/null and b/static/images/shouhuo.png differ diff --git a/static/images/show.png b/static/images/show.png new file mode 100644 index 0000000..46f80e2 Binary files /dev/null and b/static/images/show.png differ diff --git a/static/images/sjtj.png b/static/images/sjtj.png new file mode 100644 index 0000000..6454bca Binary files /dev/null and b/static/images/sjtj.png differ diff --git a/static/images/sym.png b/static/images/sym.png new file mode 100644 index 0000000..9a5d259 Binary files /dev/null and b/static/images/sym.png differ diff --git a/static/images/tabbar/BDSH.png b/static/images/tabbar/BDSH.png new file mode 100644 index 0000000..e057896 Binary files /dev/null and b/static/images/tabbar/BDSH.png differ diff --git a/static/images/tabbar/DH.png b/static/images/tabbar/DH.png new file mode 100644 index 0000000..f2b4776 Binary files /dev/null and b/static/images/tabbar/DH.png differ diff --git a/static/images/tabbar/DW.png b/static/images/tabbar/DW.png new file mode 100644 index 0000000..a2a02bf Binary files /dev/null and b/static/images/tabbar/DW.png differ diff --git a/static/images/tabbar/GWC.png b/static/images/tabbar/GWC.png new file mode 100644 index 0000000..5310dac Binary files /dev/null and b/static/images/tabbar/GWC.png differ diff --git a/static/images/tabbar/GY.png b/static/images/tabbar/GY.png new file mode 100644 index 0000000..852233f Binary files /dev/null and b/static/images/tabbar/GY.png differ diff --git a/static/images/tabbar/GY1.png b/static/images/tabbar/GY1.png new file mode 100644 index 0000000..37560ad Binary files /dev/null and b/static/images/tabbar/GY1.png differ diff --git a/static/images/tabbar/GZT.png b/static/images/tabbar/GZT.png new file mode 100644 index 0000000..c3963ba Binary files /dev/null and b/static/images/tabbar/GZT.png differ diff --git a/static/images/tabbar/GZT1.png b/static/images/tabbar/GZT1.png new file mode 100644 index 0000000..52f89d7 Binary files /dev/null and b/static/images/tabbar/GZT1.png differ diff --git a/static/images/tabbar/JD.png b/static/images/tabbar/JD.png new file mode 100644 index 0000000..1c72ce3 Binary files /dev/null and b/static/images/tabbar/JD.png differ diff --git a/static/images/tabbar/PF.png b/static/images/tabbar/PF.png new file mode 100644 index 0000000..ebfb755 Binary files /dev/null and b/static/images/tabbar/PF.png differ diff --git a/static/images/tabbar/SCFW.png b/static/images/tabbar/SCFW.png new file mode 100644 index 0000000..6d2b508 Binary files /dev/null and b/static/images/tabbar/SCFW.png differ diff --git a/static/images/tabbar/SHFW.png b/static/images/tabbar/SHFW.png new file mode 100644 index 0000000..005ee11 Binary files /dev/null and b/static/images/tabbar/SHFW.png differ diff --git a/static/images/tabbar/SJ.png b/static/images/tabbar/SJ.png new file mode 100644 index 0000000..c682b08 Binary files /dev/null and b/static/images/tabbar/SJ.png differ diff --git a/static/images/tabbar/WD.png b/static/images/tabbar/WD.png new file mode 100644 index 0000000..9c23696 Binary files /dev/null and b/static/images/tabbar/WD.png differ diff --git a/static/images/tabbar/WD1.png b/static/images/tabbar/WD1.png new file mode 100644 index 0000000..1331fc6 Binary files /dev/null and b/static/images/tabbar/WD1.png differ diff --git a/static/images/tabbar/XX.png b/static/images/tabbar/XX.png new file mode 100644 index 0000000..e77d376 Binary files /dev/null and b/static/images/tabbar/XX.png differ diff --git a/static/images/tabbar/YCBG.png b/static/images/tabbar/YCBG.png new file mode 100644 index 0000000..2048994 Binary files /dev/null and b/static/images/tabbar/YCBG.png differ diff --git a/static/images/tabbar/YCGG.png b/static/images/tabbar/YCGG.png new file mode 100644 index 0000000..bfd24de Binary files /dev/null and b/static/images/tabbar/YCGG.png differ diff --git a/static/images/tabbar/ZY.png b/static/images/tabbar/ZY.png new file mode 100644 index 0000000..cef4a33 Binary files /dev/null and b/static/images/tabbar/ZY.png differ diff --git a/static/images/tabbar/ZY1.png b/static/images/tabbar/ZY1.png new file mode 100644 index 0000000..a41b859 Binary files /dev/null and b/static/images/tabbar/ZY1.png differ diff --git a/static/images/tabbar/a-a.png b/static/images/tabbar/a-a.png new file mode 100644 index 0000000..89b7e43 Binary files /dev/null and b/static/images/tabbar/a-a.png differ diff --git a/static/images/tabbar/a.png b/static/images/tabbar/a.png new file mode 100644 index 0000000..ae60e2c Binary files /dev/null and b/static/images/tabbar/a.png differ diff --git a/static/images/tabbar/b-a.png b/static/images/tabbar/b-a.png new file mode 100644 index 0000000..c477790 Binary files /dev/null and b/static/images/tabbar/b-a.png differ diff --git a/static/images/tabbar/b.png b/static/images/tabbar/b.png new file mode 100644 index 0000000..4fb3ab9 Binary files /dev/null and b/static/images/tabbar/b.png differ diff --git a/static/images/tabbar/c-a.png b/static/images/tabbar/c-a.png new file mode 100644 index 0000000..c3501e3 Binary files /dev/null and b/static/images/tabbar/c-a.png differ diff --git a/static/images/tabbar/c.png b/static/images/tabbar/c.png new file mode 100644 index 0000000..8d184d3 Binary files /dev/null and b/static/images/tabbar/c.png differ diff --git a/static/images/tabbar/d-2.png b/static/images/tabbar/d-2.png new file mode 100644 index 0000000..2609082 Binary files /dev/null and b/static/images/tabbar/d-2.png differ diff --git a/static/images/tabbar/d-a.png b/static/images/tabbar/d-a.png new file mode 100644 index 0000000..03e6599 Binary files /dev/null and b/static/images/tabbar/d-a.png differ diff --git a/static/images/tabbar/d.png b/static/images/tabbar/d.png new file mode 100644 index 0000000..0ad3e83 Binary files /dev/null and b/static/images/tabbar/d.png differ diff --git a/static/images/tabbar/e-a.png b/static/images/tabbar/e-a.png new file mode 100644 index 0000000..81392a2 Binary files /dev/null and b/static/images/tabbar/e-a.png differ diff --git a/static/images/tabbar/e.png b/static/images/tabbar/e.png new file mode 100644 index 0000000..2eb0788 Binary files /dev/null and b/static/images/tabbar/e.png differ diff --git a/static/images/tabbar/iconfont.css b/static/images/tabbar/iconfont.css new file mode 100644 index 0000000..01f51bf --- /dev/null +++ b/static/images/tabbar/iconfont.css @@ -0,0 +1,232 @@ +@font-face { + font-family: "iconfont2"; + /* Project id 3861260 */ + src: url('//at.alicdn.com/t/c/font_3861260_kcyv21x2z6e.woff2?t=1683356048406') format('woff2'), + url('//at.alicdn.com/t/c/font_3861260_kcyv21x2z6e.woff?t=1683356048406') format('woff'), + url('//at.alicdn.com/t/c/font_3861260_kcyv21x2z6e.ttf?t=1683356048406') format('truetype'), + url('//at.alicdn.com/t/c/font_3861260_kcyv21x2z6e.svg?t=1683356048406#iconfont2') format('svg'); +} + +.iconfont2 { + font-family: "iconfont2" !important; + font-size: 16px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.custom-icona-zu2901:before { + content: "\e648"; +} + +.custom-iconoasa1:before { + content: "\e649"; +} + +.custom-icongengduo:before { + content: "\e64a"; +} + +.custom-iconyijian:before { + content: "\e644"; +} + +.custom-icongongzi:before { + content: "\e645"; +} + +.custom-iconwendang:before { + content: "\e646"; +} + +.custom-iconweixin:before { + content: "\e647"; +} + +.custom-iconoaha:before { + content: "\e634"; +} + +.custom-iconoamy:before { + content: "\e635"; +} + +.custom-iconoamya:before { + content: "\e63e"; +} + +.custom-iconoasa:before { + content: "\e63f"; +} + +.custom-iconoara:before { + content: "\e640"; +} + +.custom-iconoar:before { + content: "\e641"; +} + +.custom-iconoah:before { + content: "\e642"; +} + +.custom-iconoas:before { + content: "\e643"; +} + +.custom-iconhangye:before { + content: "\e636"; +} + +.custom-iconhangye-a:before { + content: "\e637"; +} + +.custom-iconxinwen:before { + content: "\e638"; +} + +.custom-icongonying:before { + content: "\e639"; +} + +.custom-icongonying-a:before { + content: "\e63a"; +} + +.custom-iconmy-a:before { + content: "\e63b"; +} + +.custom-iconxiaoxi-a:before { + content: "\e63c"; +} + +.custom-iconmy:before { + content: "\e63d"; +} + +.custom-iconchuang:before { + content: "\e631"; +} + +.custom-iconyouhuiquan:before { + content: "\e632"; +} + +.custom-iconmeishi:before { + content: "\e633"; +} + +.custom-iconsmfw:before { + content: "\e62c"; +} + +.custom-iconzxyy:before { + content: "\e62d"; +} + +.custom-iconzxjd:before { + content: "\e62e"; +} + +.custom-iconhtqd:before { + content: "\e62f"; +} + +.custom-iconzxsg:before { + content: "\e630"; +} + +.custom-iconhbxs:before { + content: "\e622"; +} + +.custom-iconmsgy:before { + content: "\e623"; +} + +.custom-iconylbj:before { + content: "\e624"; +} + +.custom-iconfwzx:before { + content: "\e625"; +} + +.custom-iconjypx:before { + content: "\e626"; +} + +.custom-iconshfw:before { + content: "\e627"; +} + +.custom-iconnfcp:before { + content: "\e628"; +} + +.custom-iconsczl:before { + content: "\e629"; +} + +.custom-iconscfw:before { + content: "\e62a"; +} + +.custom-iconwyly:before { + content: "\e62b"; +} + +.custom-iconmdtj:before { + content: "\e615"; +} + +.custom-iconxjjb:before { + content: "\e616"; +} + +.custom-iconcmtxl:before { + content: "\e617"; +} + +.custom-iconcunwu:before { + content: "\e618"; +} + +.custom-iconysdt:before { + content: "\e619"; +} + +.custom-icongsrz:before { + content: "\e61a"; +} + +.custom-icongstz:before { + content: "\e61b"; +} + +.custom-iconxzcg:before { + content: "\e61c"; +} + +.custom-iconcaiwu:before { + content: "\e61d"; +} + +.custom-iconshce:before { + content: "\e61e"; +} + +.custom-iconsqhf:before { + content: "\e61f"; +} + +.custom-iconxxlr:before { + content: "\e620"; +} + +.custom-icondangwu:before { + content: "\e621"; +} \ No newline at end of file diff --git a/static/images/tj.png b/static/images/tj.png new file mode 100644 index 0000000..7e45c6d Binary files /dev/null and b/static/images/tj.png differ diff --git a/static/images/trad-add.png b/static/images/trad-add.png new file mode 100644 index 0000000..6a6d1ae Binary files /dev/null and b/static/images/trad-add.png differ diff --git a/static/images/trad-close.png b/static/images/trad-close.png new file mode 100644 index 0000000..88a1167 Binary files /dev/null and b/static/images/trad-close.png differ diff --git a/static/images/weituo.png b/static/images/weituo.png new file mode 100644 index 0000000..241aa0a Binary files /dev/null and b/static/images/weituo.png differ diff --git a/static/images/wenhao.png b/static/images/wenhao.png new file mode 100644 index 0000000..6ce5247 Binary files /dev/null and b/static/images/wenhao.png differ diff --git a/static/images/wt_close.png b/static/images/wt_close.png new file mode 100644 index 0000000..bbf3914 Binary files /dev/null and b/static/images/wt_close.png differ diff --git a/static/images/wtbg1.png b/static/images/wtbg1.png new file mode 100644 index 0000000..bc8848a Binary files /dev/null and b/static/images/wtbg1.png differ diff --git a/static/images/wtbg2.png b/static/images/wtbg2.png new file mode 100644 index 0000000..bb868ad Binary files /dev/null and b/static/images/wtbg2.png differ diff --git a/static/images/wtbg3.png b/static/images/wtbg3.png new file mode 100644 index 0000000..d47183a Binary files /dev/null and b/static/images/wtbg3.png differ diff --git a/static/images/wtbg4.png b/static/images/wtbg4.png new file mode 100644 index 0000000..24285e9 Binary files /dev/null and b/static/images/wtbg4.png differ diff --git a/static/images/wtbg5.png b/static/images/wtbg5.png new file mode 100644 index 0000000..c048ae0 Binary files /dev/null and b/static/images/wtbg5.png differ diff --git a/static/images/wtt1.png b/static/images/wtt1.png new file mode 100644 index 0000000..fdb0772 Binary files /dev/null and b/static/images/wtt1.png differ diff --git a/static/images/wtt2.png b/static/images/wtt2.png new file mode 100644 index 0000000..987b35b Binary files /dev/null and b/static/images/wtt2.png differ diff --git a/static/images/xianshang.png b/static/images/xianshang.png new file mode 100644 index 0000000..404b420 Binary files /dev/null and b/static/images/xianshang.png differ diff --git a/static/images/xianxia.png b/static/images/xianxia.png new file mode 100644 index 0000000..f5acbd5 Binary files /dev/null and b/static/images/xianxia.png differ diff --git a/static/images/xxsj.png b/static/images/xxsj.png new file mode 100644 index 0000000..55d8775 Binary files /dev/null and b/static/images/xxsj.png differ diff --git a/static/images/yuqi.png b/static/images/yuqi.png new file mode 100644 index 0000000..87ae36a Binary files /dev/null and b/static/images/yuqi.png differ diff --git a/static/tabbar_icon/组 17762.png b/static/tabbar_icon/组 17762.png new file mode 100644 index 0000000..a41b859 Binary files /dev/null and b/static/tabbar_icon/组 17762.png differ diff --git a/static/tabbar_icon/组 17763.png b/static/tabbar_icon/组 17763.png new file mode 100644 index 0000000..52f89d7 Binary files /dev/null and b/static/tabbar_icon/组 17763.png differ diff --git a/static/tabbar_icon/组 17764.png b/static/tabbar_icon/组 17764.png new file mode 100644 index 0000000..37560ad Binary files /dev/null and b/static/tabbar_icon/组 17764.png differ diff --git a/static/tabbar_icon/组 17765.png b/static/tabbar_icon/组 17765.png new file mode 100644 index 0000000..cef4a33 Binary files /dev/null and b/static/tabbar_icon/组 17765.png differ diff --git a/static/tabbar_icon/组 17766.png b/static/tabbar_icon/组 17766.png new file mode 100644 index 0000000..c3963ba Binary files /dev/null and b/static/tabbar_icon/组 17766.png differ diff --git a/static/tabbar_icon/组 17767.png b/static/tabbar_icon/组 17767.png new file mode 100644 index 0000000..852233f Binary files /dev/null and b/static/tabbar_icon/组 17767.png differ diff --git a/static/tabbar_icon/组 17768.png b/static/tabbar_icon/组 17768.png new file mode 100644 index 0000000..9c23696 Binary files /dev/null and b/static/tabbar_icon/组 17768.png differ diff --git a/static/tabbar_icon/组 17769.png b/static/tabbar_icon/组 17769.png new file mode 100644 index 0000000..1331fc6 Binary files /dev/null and b/static/tabbar_icon/组 17769.png differ diff --git a/static/test/DFH.png b/static/test/DFH.png new file mode 100644 index 0000000..5cd03c5 Binary files /dev/null and b/static/test/DFH.png differ diff --git a/static/test/DPJ.png b/static/test/DPJ.png new file mode 100644 index 0000000..3a9216d Binary files /dev/null and b/static/test/DPJ.png differ diff --git a/static/test/DSH.png b/static/test/DSH.png new file mode 100644 index 0000000..3949fce Binary files /dev/null and b/static/test/DSH.png differ diff --git a/static/test/DZGL.png b/static/test/DZGL.png new file mode 100644 index 0000000..016c3a8 Binary files /dev/null and b/static/test/DZGL.png differ diff --git a/static/test/FPGL.png b/static/test/FPGL.png new file mode 100644 index 0000000..10f4039 Binary files /dev/null and b/static/test/FPGL.png differ diff --git a/static/test/GZDP.png b/static/test/GZDP.png new file mode 100644 index 0000000..c6a5419 Binary files /dev/null and b/static/test/GZDP.png differ diff --git a/static/test/KH.png b/static/test/KH.png new file mode 100644 index 0000000..52772c2 Binary files /dev/null and b/static/test/KH.png differ diff --git a/static/test/LLJL.png b/static/test/LLJL.png new file mode 100644 index 0000000..702997c Binary files /dev/null and b/static/test/LLJL.png differ diff --git a/static/test/SH.png b/static/test/SH.png new file mode 100644 index 0000000..f191a19 Binary files /dev/null and b/static/test/SH.png differ diff --git a/static/test/SJRZ.png b/static/test/SJRZ.png new file mode 100644 index 0000000..e0f6e70 Binary files /dev/null and b/static/test/SJRZ.png differ diff --git a/static/test/SYS.png b/static/test/SYS.png new file mode 100644 index 0000000..29421cc Binary files /dev/null and b/static/test/SYS.png differ diff --git a/static/test/SZ.png b/static/test/SZ.png new file mode 100644 index 0000000..41579df Binary files /dev/null and b/static/test/SZ.png differ diff --git a/static/test/WDSC.png b/static/test/WDSC.png new file mode 100644 index 0000000..6a92d86 Binary files /dev/null and b/static/test/WDSC.png differ diff --git a/static/test/WTFK.png b/static/test/WTFK.png new file mode 100644 index 0000000..9a71bb3 Binary files /dev/null and b/static/test/WTFK.png differ diff --git a/uni_modules/rudon-rowMenuDotDotDot-left/changelog.md b/uni_modules/rudon-rowMenuDotDotDot-left/changelog.md new file mode 100644 index 0000000..62a754a --- /dev/null +++ b/uni_modules/rudon-rowMenuDotDotDot-left/changelog.md @@ -0,0 +1,2 @@ +## 1.0.0(2022-09-29) +无 diff --git a/uni_modules/rudon-rowMenuDotDotDot-left/components/rudon-rowMenuDotDotDot-left/rudon-rowMenuDotDotDot-left.vue b/uni_modules/rudon-rowMenuDotDotDot-left/components/rudon-rowMenuDotDotDot-left/rudon-rowMenuDotDotDot-left.vue new file mode 100644 index 0000000..4922103 --- /dev/null +++ b/uni_modules/rudon-rowMenuDotDotDot-left/components/rudon-rowMenuDotDotDot-left/rudon-rowMenuDotDotDot-left.vue @@ -0,0 +1,422 @@ + + + + + diff --git a/uni_modules/rudon-rowMenuDotDotDot-left/package.json b/uni_modules/rudon-rowMenuDotDotDot-left/package.json new file mode 100644 index 0000000..4bcc1dd --- /dev/null +++ b/uni_modules/rudon-rowMenuDotDotDot-left/package.json @@ -0,0 +1,82 @@ +{ + "id": "rudon-rowMenuDotDotDot-left", + "displayName": "行内三点式下拉菜单-左对齐-向下展开", + "version": "1.0.0", + "description": "行内三点式下拉菜单(左对齐)", + "keywords": [ + "select", + "picker", + "下拉菜单" +], + "repository": "", +"engines": { + }, + "dcloudext": { + "type": "component-vue", + "sale": { + "regular": { + "price": "0.00" + }, + "sourcecode": { + "price": "0.00" + } + }, + "contact": { + "qq": "" + }, + "declaration": { + "ads": "使用方法参考: https://ext.dcloud.net.cn/plugin?id=9350", + "data": "使用方法参考: https://ext.dcloud.net.cn/plugin?id=9350", + "permissions": "使用方法参考: https://ext.dcloud.net.cn/plugin?id=9350" + }, + "npmurl": "" + }, + "uni_modules": { + "dependencies": [], + "encrypt": [], + "platforms": { + "cloud": { + "tcb": "y", + "aliyun": "y" + }, + "client": { + "Vue": { + "vue2": "u", + "vue3": "u" + }, + "App": { + "app-vue": "u", + "app-nvue": "u" + }, + "H5-mobile": { + "Safari": "u", + "Android Browser": "u", + "微信浏览器(Android)": "u", + "QQ浏览器(Android)": "u" + }, + "H5-pc": { + "Chrome": "u", + "IE": "u", + "Edge": "u", + "Firefox": "u", + "Safari": "u" + }, + "小程序": { + "微信": "u", + "阿里": "u", + "百度": "u", + "字节跳动": "u", + "QQ": "u", + "钉钉": "u", + "快手": "u", + "飞书": "u", + "京东": "u" + }, + "快应用": { + "华为": "u", + "联盟": "u" + } + } + } + } +} \ No newline at end of file diff --git a/uni_modules/rudon-rowMenuDotDotDot-left/readme.md b/uni_modules/rudon-rowMenuDotDotDot-left/readme.md new file mode 100644 index 0000000..8011c51 --- /dev/null +++ b/uni_modules/rudon-rowMenuDotDotDot-left/readme.md @@ -0,0 +1 @@ +# rudon-rowMenuDotDotDot-left \ No newline at end of file diff --git a/uni_modules/rudon-rowMenuDotDotDot/changelog.md b/uni_modules/rudon-rowMenuDotDotDot/changelog.md new file mode 100644 index 0000000..0b50306 --- /dev/null +++ b/uni_modules/rudon-rowMenuDotDotDot/changelog.md @@ -0,0 +1,2 @@ +## 1.0.0(2022-09-05) +模仿并改进uniapp官方ui的组件uni-data-select,自定义显示插槽(允许变量),手册:https://uniapp.dcloud.net.cn/component/uniui/uni-data-select.html diff --git a/uni_modules/rudon-rowMenuDotDotDot/components/rudon-rowMenuDotDotDot/rudon-rowMenuDotDotDot.vue b/uni_modules/rudon-rowMenuDotDotDot/components/rudon-rowMenuDotDotDot/rudon-rowMenuDotDotDot.vue new file mode 100644 index 0000000..67fef69 --- /dev/null +++ b/uni_modules/rudon-rowMenuDotDotDot/components/rudon-rowMenuDotDotDot/rudon-rowMenuDotDotDot.vue @@ -0,0 +1,422 @@ + + + + + diff --git a/uni_modules/rudon-rowMenuDotDotDot/package.json b/uni_modules/rudon-rowMenuDotDotDot/package.json new file mode 100644 index 0000000..32fcd74 --- /dev/null +++ b/uni_modules/rudon-rowMenuDotDotDot/package.json @@ -0,0 +1,82 @@ +{ + "id": "rudon-rowMenuDotDotDot", + "displayName": "行内三点式下拉菜单-右对齐-向下展开", + "version": "1.0.0", + "description": "行内三点式下拉菜单", + "keywords": [ + "select", + "picker", + "下拉菜单" +], + "repository": "", +"engines": { + }, + "dcloudext": { + "type": "component-vue", + "sale": { + "regular": { + "price": "0.00" + }, + "sourcecode": { + "price": "0.00" + } + }, + "contact": { + "qq": "" + }, + "declaration": { + "ads": "【相关插件】\r\n行内三点式下拉菜单-左对齐-向下展开 https://ext.dcloud.net.cn/plugin?id=9651\r\n行内三点式下拉菜单-左对齐-向上展开 https://ext.dcloud.net.cn/plugin?id=9652\r\n行内三点式下拉菜单-右对齐-向下展开 https://ext.dcloud.net.cn/plugin?id=9350", + "data": "【相关插件】\r\n行内三点式下拉菜单-左对齐-向下展开 https://ext.dcloud.net.cn/plugin?id=9651\r\n行内三点式下拉菜单-左对齐-向上展开 https://ext.dcloud.net.cn/plugin?id=9652\r\n行内三点式下拉菜单-右对齐-向下展开 https://ext.dcloud.net.cn/plugin?id=9350", + "permissions": "【相关插件】\r\n行内三点式下拉菜单-左对齐-向下展开 https://ext.dcloud.net.cn/plugin?id=9651\r\n行内三点式下拉菜单-左对齐-向上展开 https://ext.dcloud.net.cn/plugin?id=9652\r\n行内三点式下拉菜单-右对齐-向下展开 https://ext.dcloud.net.cn/plugin?id=9350" + }, + "npmurl": "" + }, + "uni_modules": { + "dependencies": [], + "encrypt": [], + "platforms": { + "cloud": { + "tcb": "y", + "aliyun": "y" + }, + "client": { + "Vue": { + "vue2": "y", + "vue3": "y" + }, + "App": { + "app-vue": "y", + "app-nvue": "y" + }, + "H5-mobile": { + "Safari": "y", + "Android Browser": "y", + "微信浏览器(Android)": "y", + "QQ浏览器(Android)": "y" + }, + "H5-pc": { + "Chrome": "y", + "IE": "y", + "Edge": "y", + "Firefox": "y", + "Safari": "y" + }, + "小程序": { + "微信": "y", + "阿里": "y", + "百度": "y", + "字节跳动": "y", + "QQ": "y", + "钉钉": "y", + "快手": "y", + "飞书": "y", + "京东": "y" + }, + "快应用": { + "华为": "y", + "联盟": "y" + } + } + } + } +} \ No newline at end of file diff --git a/uni_modules/rudon-rowMenuDotDotDot/readme.md b/uni_modules/rudon-rowMenuDotDotDot/readme.md new file mode 100644 index 0000000..d2466ab --- /dev/null +++ b/uni_modules/rudon-rowMenuDotDotDot/readme.md @@ -0,0 +1 @@ +# rudon-rowMenuDotDotDot \ No newline at end of file diff --git a/uni_modules/uni-data-select/changelog.md b/uni_modules/uni-data-select/changelog.md new file mode 100644 index 0000000..eb3d1ce --- /dev/null +++ b/uni_modules/uni-data-select/changelog.md @@ -0,0 +1,35 @@ +## 1.0.6(2023-04-12) +- 修复 微信小程序点击时会改变背景颜色的 bug +## 1.0.5(2023-02-03) +- 修复 禁用时会显示清空按钮 +## 1.0.4(2023-02-02) +- 优化 查询条件短期内多次变更只查询最后一次变更后的结果 +- 调整 内部缓存键名调整为 uni-data-select-lastSelectedValue +## 1.0.3(2023-01-16) +- 修复 不关联服务空间报错的问题 +## 1.0.2(2023-01-14) +- 新增 属性 `format` 可用于格式化显示选项内容 +## 1.0.1(2022-12-06) +- 修复 当where变化时,数据不会自动更新的问题 +## 0.1.9(2022-09-05) +- 修复 微信小程序下拉框出现后选择会点击到蒙板后面的输入框 +## 0.1.8(2022-08-29) +- 修复 点击的位置不准确 +## 0.1.7(2022-08-12) +- 新增 支持 disabled 属性 +## 0.1.6(2022-07-06) +- 修复 pc端宽度异常的bug +## 0.1.5 +- 修复 pc端宽度异常的bug +## 0.1.4(2022-07-05) +- 优化 显示样式 +## 0.1.3(2022-06-02) +- 修复 localdata 赋值不生效的 bug +- 新增 支持 uni.scss 修改颜色 +- 新增 支持选项禁用(数据选项设置 disabled: true 即禁用) +## 0.1.2(2022-05-08) +- 修复 当 value 为 0 时选择不生效的 bug +## 0.1.1(2022-05-07) +- 新增 记住上次的选项(仅 collection 存在时有效) +## 0.1.0(2022-04-22) +- 初始化 diff --git a/uni_modules/uni-data-select/components/uni-data-select/uni-data-select.vue b/uni_modules/uni-data-select/components/uni-data-select/uni-data-select.vue new file mode 100644 index 0000000..9b32348 --- /dev/null +++ b/uni_modules/uni-data-select/components/uni-data-select/uni-data-select.vue @@ -0,0 +1,517 @@ + + + + + diff --git a/uni_modules/uni-data-select/package.json b/uni_modules/uni-data-select/package.json new file mode 100644 index 0000000..0187429 --- /dev/null +++ b/uni_modules/uni-data-select/package.json @@ -0,0 +1,85 @@ +{ + "id": "uni-data-select", + "displayName": "uni-data-select 下拉框选择器", + "version": "1.0.6", + "description": "通过数据驱动的下拉框选择器", + "keywords": [ + "uni-ui", + "select", + "uni-data-select", + "下拉框", + "下拉选" +], + "repository": "https://github.com/dcloudio/uni-ui", + "engines": { + "HBuilderX": "^3.1.1" + }, + "directories": { + "example": "../../temps/example_temps" + }, +"dcloudext": { + "sale": { + "regular": { + "price": "0.00" + }, + "sourcecode": { + "price": "0.00" + } + }, + "contact": { + "qq": "" + }, + "declaration": { + "ads": "无", + "data": "无", + "permissions": "无" + }, + "npmurl": "https://www.npmjs.com/package/@dcloudio/uni-ui", + "type": "component-vue" + }, + "uni_modules": { + "dependencies": ["uni-load-more"], + "encrypt": [], + "platforms": { + "cloud": { + "tcb": "y", + "aliyun": "y" + }, + "client": { + "App": { + "app-vue": "u", + "app-nvue": "n" + }, + "H5-mobile": { + "Safari": "y", + "Android Browser": "y", + "微信浏览器(Android)": "y", + "QQ浏览器(Android)": "y" + }, + "H5-pc": { + "Chrome": "y", + "IE": "y", + "Edge": "y", + "Firefox": "y", + "Safari": "y" + }, + "小程序": { + "微信": "y", + "阿里": "u", + "百度": "u", + "字节跳动": "u", + "QQ": "u", + "京东": "u" + }, + "快应用": { + "华为": "u", + "联盟": "u" + }, + "Vue": { + "vue2": "y", + "vue3": "y" + } + } + } + } +} diff --git a/uni_modules/uni-data-select/readme.md b/uni_modules/uni-data-select/readme.md new file mode 100644 index 0000000..eb58de3 --- /dev/null +++ b/uni_modules/uni-data-select/readme.md @@ -0,0 +1,8 @@ +## DataSelect 下拉框选择器 +> **组件名:uni-data-select** +> 代码块: `uDataSelect` + +当选项过多时,使用下拉菜单展示并选择内容 + +### [查看文档](https://uniapp.dcloud.io/component/uniui/uni-data-select) +#### 如使用过程中有任何问题,或者您对uni-ui有一些好的建议,欢迎加入 uni-ui 交流群:871950839 diff --git a/uni_modules/uni-share/changelog.md b/uni_modules/uni-share/changelog.md new file mode 100644 index 0000000..c858c67 --- /dev/null +++ b/uni_modules/uni-share/changelog.md @@ -0,0 +1,18 @@ +## 2.0.2(2021-12-16) +修复在某些情况下报:`Cannot read property 'hide' of undefined`的问题 +## 2.0.1(2021-11-29) +修改错误的scene值WXSenceTimeline(分享到朋友圈)更正为WXSceneTimeline +## 2.0.0(2021-10-14) +支持监听返回操作(如:物理返回,全面屏手机侧滑)关闭分享弹窗 +## 1.0.6(2021-08-25) +兼容vue3 +## 1.0.5(2021-08-05) +优化代码实现,修改原来用`eval()`函数实现的逻辑 +## 1.0.4(2021-06-07) +为符合苹果应用市场的审核,只显示存在对应的分享客户端的选项。如:配置包含微信分享,但是用户手机上并没有安装微信,就不显示微信分享。 +## 1.0.2(2021-05-06) +修复错误的提示:“打包时未添加oauth模块” +## 1.0.1(2021-04-30) +新增完整示例 +## 1.0.0(2021-04-28) +第1版发布 diff --git a/uni_modules/uni-share/js_sdk/uni-image-menu.js b/uni_modules/uni-share/js_sdk/uni-image-menu.js new file mode 100644 index 0000000..c03e51b --- /dev/null +++ b/uni_modules/uni-share/js_sdk/uni-image-menu.js @@ -0,0 +1,204 @@ +var nvMask, nvImageMenu; +class NvImageMenu { + constructor(arg) { + this.isShow = false + } + show({ + list, + cancelText + }, callback) { + if (!list) { + list = [{ + "img": "/static/sharemenu/wechatfriend.png", + "text": "图标文字" + }] + } + //以下为计算菜单的nview绘制布局,为固定算法,使用者无关关心 + var screenWidth = plus.screen.resolutionWidth + //以360px宽度屏幕为例,上下左右边距及2排按钮边距留25像素,图标宽度55像素,同行图标间的间距在360宽的屏幕是30px,但需要动态计算,以此原则计算4列图标分别的left位置 + //图标下的按钮文字距离图标5像素,文字大小12像素 + //底部取消按钮高度固定为44px + //TODO 未处理横屏和pad,这些情况6个图标应该一排即可 + var margin = 20, + iconWidth = 60, + icontextSpace = 5, + textHeight = 12 + var left1 = margin / 360 * screenWidth + var iconSpace = (screenWidth - (left1 * 2) - (iconWidth * 4)) / 3 //屏幕宽度减去左右留白间距,再减去4个图标的宽度,就是3个同行图标的间距 + if (iconSpace <= 5) { //屏幕过窄时,缩小边距和图标大小,再算一次 + margin = 15 + iconWidth = 40 + left1 = margin / 360 * screenWidth + iconSpace = (screenWidth - (left1 * 2) - (iconWidth * 4)) / 3 //屏幕宽度减去左右留白间距,再减去4个图标的宽度,就是3个同行图标的间距 + } + var left2 = left1 + iconWidth + iconSpace + var left3 = left1 + (iconWidth + iconSpace) * 2 + var left4 = left1 + (iconWidth + iconSpace) * 3 + var top1 = left1 + var top2 = top1 + iconWidth + icontextSpace + textHeight + left1 + + const TOP = { + top1, + top2 + }, + LEFT = { + left1, + left2, + left3, + left4 + }; + + nvMask = new plus.nativeObj.View("nvMask", { //先创建遮罩层 + top: '0px', + left: '0px', + height: '100%', + width: '100%', + backgroundColor: 'rgba(0,0,0,0.2)' + }); + nvImageMenu = new plus.nativeObj.View("nvImageMenu", { //创建底部图标菜单 + bottom: '0px', + left: '0px', + height: (iconWidth + textHeight + 2 * margin) * Math.ceil(list.length / 4) + 44 + + 'px', //'264px', + width: '100%', + backgroundColor: 'rgb(255,255,255)' + }); + nvMask.addEventListener("click", () => { //处理遮罩层点击 + // console.log('处理遮罩层点击'); + this.hide() + callback({ + event: "clickMask" + }) + }) + let myList = [] + list.forEach((item, i) => { + myList.push({ + tag: 'img', + src: item.img, + position: { + top: TOP['top' + (parseInt(i / 4) + 1)], + left: LEFT['left' + (1 + i % 4)], + width: iconWidth, + height: iconWidth + } + }) + myList.push({ + tag: 'font', + text: item.text, + textStyles: { + size: textHeight + }, + position: { + top: TOP['top' + (parseInt(i / 4) + 1)] + iconWidth + icontextSpace, + left: LEFT['left' + (1 + i % 4)], + width: iconWidth, + height: textHeight + } + }) + }) + + //绘制底部图标菜单的内容 + nvImageMenu.draw([{ + tag: 'rect', //菜单顶部的分割灰线 + color: '#e7e7e7', + position: { + top: '0px', + height: '1px' + } + }, + { + tag: 'font', + text: cancelText, //底部取消按钮的文字 + textStyles: { + size: '14px' + }, + position: { + bottom: '0px', + height: '44px' + } + }, + { + tag: 'rect', //底部取消按钮的顶部边线 + color: '#e7e7e7', + position: { + bottom: '45px', + height: '1px' + } + }, + ...myList + ]) + nvMask.show() + nvImageMenu.show() + // 开始动画 + /* + plus.nativeObj.View.startAnimation({ + type: 'slide-in-bottom', + duration: 300 + }, nvImageMenu, {}, function() { + console.log('plus.nativeObj.View.startAnimation动画结束'); + // 关闭原生动画 + plus.nativeObj.View.clearAnimation(); + nvImageMenu.show() + }); + */ + + + this.isShow = true + nvImageMenu.addEventListener("click", e => { //处理底部图标菜单的点击事件,根据点击位置触发不同的逻辑 + // console.log("click menu"+JSON.stringify(e)); + if (e.screenY > plus.screen.resolutionHeight - 44) { //点击了底部取消按钮 + // callback({event:"clickCancelButton"}) + this.hide() + } else if (e.clientX < 5 || e.clientX > screenWidth - 5 || e.clientY < 5) { + //屏幕左右边缘5像素及菜单顶部5像素不处理点击 + } else { //点击了图标按钮 + var iClickIndex = -1 //点击的图标按钮序号,第一个图标按钮的index为0 + var iRow = e.clientY < (top2 - (left1 / 2)) ? 0 : 1 + var iCol = -1 + if (e.clientX < (left2 - (iconSpace / 2))) { + iCol = 0 + } else if (e.clientX < (left3 - (iconSpace / 2))) { + iCol = 1 + } else if (e.clientX < (left4 - (iconSpace / 2))) { + iCol = 2 + } else { + iCol = 3 + } + if (iRow == 0) { + iClickIndex = iCol + } else { + iClickIndex = iCol + 4 + } + // console.log("点击按钮的序号: " + iClickIndex); + // if (iClickIndex >= 0 && iClickIndex <= 5) { //处理具体的点击逻辑,此处也可以自行定义逻辑。如果增减了按钮,此处也需要跟着修改 + // } + callback({ + event: "clickMenu", + index: iClickIndex + }) + } + }) + /* nvImageMenu.addEventListener("touchstart", function(e) { + if (e.screenY > (plus.screen.resolutionHeight - 44)) { + //TODO 这里可以处理按下背景变灰的效果 + } + }) + nvImageMenu.addEventListener("touchmove", function(e) { + //TODO 这里可以处理按下背景变灰的效果 + if (e.screenY > plus.screen.resolutionHeight - 44) {} + }) + nvImageMenu.addEventListener("touchend", function(e) { + //TODO 这里可以处理释放背景恢复的效果 + }) + */ + } + + hide() { + if (this.isShow) { + nvMask.hide() + nvImageMenu.hide() + this.isShow = false + } + } +} +export default NvImageMenu \ No newline at end of file diff --git a/uni_modules/uni-share/js_sdk/uni-share.js b/uni_modules/uni-share/js_sdk/uni-share.js new file mode 100644 index 0000000..8af8631 --- /dev/null +++ b/uni_modules/uni-share/js_sdk/uni-share.js @@ -0,0 +1,98 @@ +import UniImageMenu from './uni-image-menu.js'; +class UniShare extends UniImageMenu{ + constructor(arg) { + super() + this.isShow = super.isShow + } + async show(param, callback){ + var menus = [] + plus.share.getServices(services => { //只显示有服务的项目 + services = services.filter(item => item.nativeClient) + let servicesList = services.map(e => e.id) + param.menus.forEach(item => { + if (servicesList.includes(item.share.provider) || typeof(item.share) == 'string') { + menus.push(item) + } + }) + super.show({ + list: menus, + cancelText: param.cancelText + }, e => { + callback(e) + if(e.event == 'clickMenu'){ + if (typeof(menus[e.index]['share']) == 'string') { + this[menus[e.index]['share']](param) + } else { + uni.share({ + ...param.content, + ...menus[e.index].share, + success: res=> { + console.log("success:" + JSON.stringify(res)); + super.hide() + }, + fail: function(err) { + console.log("fail:" + JSON.stringify(err)); + uni.showModal({ + content: JSON.stringify(err), + showCancel: false, + confirmText: "知道了" + }); + } + }) + } + } + }) + }, err => { + uni.showModal({ + title: '获取服务供应商失败:' + JSON.stringify(err), + showCancel: false, + confirmText: '知道了' + }); + console.error('获取服务供应商失败:' + JSON.stringify(err)); + }) + } + hide(){ + super.hide() + } + copyurl(param) { + console.log('copyurl',param); + uni.setClipboardData({ + data: param.content.href, + success: ()=>{ + console.log('success'); + uni.hideToast() //关闭自带的toast + uni.showToast({ + title: '复制成功', + icon: 'none' + }); + super.hide(); + }, + fail: (err) => { + uni.showModal({ + content: JSON.stringify(err), + showCancel: false + }); + } + }); + } + // 使用系统分享发送分享消息 + shareSystem(param) { + console.log('shareSystem',param); + plus.share.sendWithSystem({ + type: 'text', + content: param.content.title + param.content.summary || '', + href: param.content.href, + }, (e)=> { + console.log('分享成功'); + super.hide() + }, (err)=> { + console.log('分享失败:' + JSON.stringify(err)); + uni.showModal({ + title: '获取服务供应商失败:' + JSON.stringify(err), + showCancel: false, + confirmText: '知道了' + }); + }); + } +} +export default UniShare \ No newline at end of file diff --git a/uni_modules/uni-share/package.json b/uni_modules/uni-share/package.json new file mode 100644 index 0000000..fa43a0e --- /dev/null +++ b/uni_modules/uni-share/package.json @@ -0,0 +1,80 @@ +{ + "id": "uni-share", + "displayName": "uni-share", + "version": "2.0.2", + "description": "底部弹出宫格图标式的分享菜单,可覆盖原生组件。", + "keywords": [ + "分享菜单" +], + "repository": "", + "engines": { + "HBuilderX": "^3.1.0" + }, + "dcloudext": { + "category": [ + "JS SDK", + "通用 SDK" + ], + "sale": { + "regular": { + "price": "0.00" + }, + "sourcecode": { + "price": "0.00" + } + }, + "contact": { + "qq": "" + }, + "declaration": { + "ads": "无", + "data": "无", + "permissions": "无" + }, + "npmurl": "" + }, + "uni_modules": { + "dependencies": [], + "encrypt": [], + "platforms": { + "cloud": { + "tcb": "y", + "aliyun": "y" + }, + "client": { + "App": { + "app-vue": "y", + "app-nvue": "y" + }, + "H5-mobile": { + "Safari": "n", + "Android Browser": "n", + "微信浏览器(Android)": "n", + "QQ浏览器(Android)": "n" + }, + "H5-pc": { + "Chrome": "n", + "IE": "n", + "Edge": "n", + "Firefox": "n", + "Safari": "n" + }, + "小程序": { + "微信": "n", + "阿里": "n", + "百度": "n", + "字节跳动": "n", + "QQ": "n" + }, + "快应用": { + "华为": "n", + "联盟": "n" + }, + "Vue": { + "vue2": "y", + "vue3": "y" + } + } + } + } +} \ No newline at end of file diff --git a/uni_modules/uni-share/readme.md b/uni_modules/uni-share/readme.md new file mode 100644 index 0000000..dced6d6 --- /dev/null +++ b/uni_modules/uni-share/readme.md @@ -0,0 +1,95 @@ +#### 本功能基于[底部图标菜单](https://ext.dcloud.net.cn/plugin?id=4858)封装而成。 +### 示例代码 +``` + + + +``` \ No newline at end of file