diff --git a/api/order.js b/api/order.js index 6c8e3d7..8cc746e 100644 --- a/api/order.js +++ b/api/order.js @@ -326,4 +326,12 @@ export function applyInvoiceApi(id, data) { */ export function refundCancelApi(id) { return request.post(`refund/cancel/${id}`); +} + +/** + * 售后 + * @param object data + */ +export function refundlist(data) { + return request.get(`refund/list`,data); } \ No newline at end of file diff --git a/components/orderGoods/index.vue b/components/orderGoods/index.vue index 86242be..58c59a0 100644 --- a/components/orderGoods/index.vue +++ b/components/orderGoods/index.vue @@ -10,75 +10,114 @@ - + + - 预售{{item.cart_info.product.store_name}} - ¥{{item.cart_info.productPresellAttr.presell_price}}
x {{item.product_num}}
+ 预售{{item.cart_info.product.store_name}} + + ¥{{item.cart_info.productPresellAttr.presell_price}}
x + {{item.product_num}}
- {{item.cart_info.productAttr.sku}} - 发货时间: + + {{item.cart_info.productAttr.sku}} + 发货时间: - {{ item.cart_info.productPresell.delivery_type === 1 ? '支付成功后' : '预售结束后' }}{{ item.cart_info.productPresell.delivery_day }}天内 + {{ item.cart_info.productPresell.delivery_type === 1 ? '支付成功后' : '预售结束后' }}{{ item.cart_info.productPresell.delivery_day }}天内 - {{ item.cart_info.productPresell.delivery_type === 1 ? '支付尾款后' : '预售结束后' }}{{ item.cart_info.productPresell.delivery_day }}天内 - - - - 申请退款 - 退款中 x {{item.product_num - item.refund_num}} - 已退款 x {{item.product_num - item.refund_num}} - 去评价 + {{ item.cart_info.productPresell.delivery_type === 1 ? '支付尾款后' : '预售结束后' }}{{ item.cart_info.productPresell.delivery_day }}天内 + + + + 申请退款 + 退款中 x + {{item.product_num - item.refund_num}} + 已退款 x + {{item.product_num - item.refund_num}} + 去评价 已评价
- + 阶段一: 买家已付款 - 商品定金 ¥{{ orderData.pay_price }} - 定金实付款¥{{ orderData.pay_price }} + 商品定金 ¥{{ orderData.pay_price }} + 定金实付款¥{{ orderData.pay_price }} - 阶段二: - 未开始 - 等待买家付尾款 - 交易已关闭 + 阶段二: + 未开始 + 等待买家付尾款 + 交易已关闭 - 商品尾款 ¥{{ orderData.presellOrder.pay_price }} - 尾款需付款¥{{ orderData.presellOrder.pay_price }} + 商品尾款 ¥{{ orderData.presellOrder.pay_price }} + 尾款需付款¥{{ orderData.presellOrder.pay_price }} + - + + - - {{item.product_type == 1 ? "秒杀" : item.product_type == 2 ? "预售" : item.product_type == 3 ? "助力" : item.product_type == 4 ? "拼团" : ""}}{{item.cart_info.product.store_name}} - x {{item.product_num}} - - {{item.cart_info.productAttr.sku}} - ¥{{item.cart_info.productAssistAttr.assist_price}} - ¥{{item.cart_info.activeSku.active_price}} - - ¥{{item.cart_info.productAttr.price}} - + + {{item.product_type == 1 ? "秒杀" : item.product_type == 2 ? "预售" : item.product_type == 3 ? "助力" : item.product_type == 4 ? "拼团" : ""}}{{item.cart_info.product.store_name}} + x {{item.product_num}} + + + {{item.cart_info.productAttr.sku}} + + ¥{{item.cart_info.productAssistAttr.assist_price}} + + ¥{{item.cart_info.activeSku.active_price}} + + ¥{{item.cart_info.productAttr.price}} + + - - 退款中 x {{item.product_num - item.refund_num}} - 已退款 x {{item.product_num - item.refund_num}} - 申请退款 - 去评价 + + + 退款中 x + {{item.product_num - item.refund_num}} + 已退款 x {{item.product_num - item.refund_num}} + + + 申请退款 + 去评价 已评价 - +
@@ -94,10 +133,18 @@ // +---------------------------------------------------------------------- // | Author: CRMEB Team // +---------------------------------------------------------------------- - import { openOrderRefundSubscribe } from '@/utils/SubscribeMessage.js'; - import { goShopDetail } from '@/libs/order.js' - import { initiateAssistApi } from '@/api/activity.js'; - import { mapGetters } from "vuex"; + import { + openOrderRefundSubscribe + } from '@/utils/SubscribeMessage.js'; + import { + goShopDetail + } from '@/libs/order.js' + import { + initiateAssistApi + } from '@/api/activity.js'; + import { + mapGetters + } from "vuex"; export default { props: { evaluate: { @@ -132,14 +179,14 @@ computed: mapGetters(['viewColor']), data() { return { - totalNmu:'', + totalNmu: '', isTimePay: false, //是否到支付时间 }; }, - watch:{ - cartInfo:function(nVal,oVal){ + watch: { + cartInfo: function(nVal, oVal) { let num = 0 - nVal.forEach((item,index)=>{ + nVal.forEach((item, index) => { num += item.cart_num }) this.totalNmu = num @@ -150,52 +197,59 @@ }, mounted() {}, methods: { - evaluateTap:function(unique,orderId){ + evaluateTap: function(unique, orderId) { uni.navigateTo({ - url:`/pages/users/goods_comment_con/index?uni=${unique}&order_id=${orderId}` + url: `/pages/users/goods_comment_con/index?uni=${unique}&order_id=${orderId}` }) }, // 判断是否到支付尾款时间 - isPayBalance(){ + isPayBalance() { let that = this; - if(that.orderData.status === 10){ - if(new Date() < new Date(that.orderData.presellOrder.final_start_time)){ + if (that.orderData.status === 10) { + if (new Date() < new Date(that.orderData.presellOrder.final_start_time)) { that.isTimePay = false; //未开始 - }else if((new Date() >= new Date(that.orderData.presellOrder.final_start_time)) && (new Date() <= new Date(that.orderData.presellOrder.final_start_time)) ){ + } else if ((new Date() >= new Date(that.orderData.presellOrder.final_start_time)) && (new Date() <= + new Date(that.orderData.presellOrder.final_start_time))) { that.isTimePay = true; //立即支付 } } }, - jumpCon:function(item){ - if(item.product_type == 4)item.activity_id = item.cart_info && item.cart_info.activeSku.product_group_id - if(item.product_type == 3)item.activity_id = item.cart_info && item.cart_info.productAssistAttr.product_assist_id + jumpCon: function(item) { + if (item.product_type == 4) item.activity_id = item.cart_info && item.cart_info.activeSku + .product_group_id + if (item.product_type == 3) item.activity_id = item.cart_info && item.cart_info.productAssistAttr + .product_assist_id goShopDetail(item).then(res => { initiateAssistApi(item.activity_id).then(res => { let id = res.data.product_assist_set_id; - uni.hideLoading(); - uni.navigateTo({ - url: '/pages/activity/assist_detail/index?id=' + id - }); - }).catch((err) => { - uni.showToast({ - title: err, - icon: 'none' - }) + uni.hideLoading(); + uni.navigateTo({ + url: '/pages/activity/assist_detail/index?id=' + id + }); + }).catch((err) => { + uni.showToast({ + title: err, + icon: 'none' + }) }); - }) + }) }, // 退款 - refund(item){ + refund(item) { // #ifdef MP openOrderRefundSubscribe().then(() => { uni.hideLoading(); - if(this.evaluate == 0 || this.evaluate == 9 || this.orderData.is_virtual == 1){ + if (this.evaluate == 0 || this.evaluate == 9 || this.orderData.is_virtual == 1) { uni.navigateTo({ - url:'/pages/users/refund/confirm?order_id='+this.orderId+'&type=1'+'&ids='+item.order_product_id+'&refund_type=1&order_type='+this.orderData.order_type + url: '/pages/users/refund/confirm?order_id=' + this.orderId + '&type=1' + + '&ids=' + item.order_product_id + '&refund_type=1&order_type=' + this + .orderData.order_type }) - }else{ + } else { uni.navigateTo({ - url:'/pages/users/refund/select?order_id='+this.orderId+'&type=1&order_type='+this.orderData.order_type+'&ids='+item.order_product_id + url: '/pages/users/refund/select?order_id=' + this.orderId + + '&type=1&order_type=' + this.orderData.order_type + '&ids=' + item + .order_product_id }) } }).catch(() => { @@ -203,13 +257,15 @@ }) // #endif // #ifdef H5 || APP-PLUS - if(this.evaluate == 0 || this.evaluate == 9 || this.orderData.is_virtual == 1){ + if (this.evaluate == 0 || this.evaluate == 9 || this.orderData.is_virtual == 1) { uni.navigateTo({ - url:'/pages/users/refund/confirm?order_id='+this.orderId+'&type=1'+'&ids='+item.order_product_id+'&refund_type=1&order_type='+this.orderData.order_type + url: '/pages/users/refund/confirm?order_id=' + this.orderId + '&type=1' + '&ids=' + item + .order_product_id + '&refund_type=1&order_type=' + this.orderData.order_type }) - }else{ + } else { uni.navigateTo({ - url:'/pages/users/refund/select?order_id='+this.orderId+'&type=1&order_type='+this.orderData.order_type+'&ids='+item.order_product_id + url: '/pages/users/refund/select?order_id=' + this.orderId + '&type=1&order_type=' + this + .orderData.order_type + '&ids=' + item.order_product_id }) } // #endif @@ -222,83 +278,101 @@ .orderGoods { background-color: #fff; } + .p-color { color: var(--view-priceColor); } - .t-color{ + + .t-color { color: var(--view-theme); } - .svip-img{ + + .svip-img { width: 65rpx; height: 28rpx; margin: 4rpx 0 0 4rpx; } - .title{ + + .title { height: 86rpx; position: relative; padding: 0 30rpx; - &::after{ + + &::after { content: ""; width: 750rpx; - border-bottom: 2rpx dotted #D8D8D8; + border-bottom: 2rpx dotted #D8D8D8; position: absolute; bottom: 0; left: 0; } - .item-status{ + + .item-status { color: #999999; font-size: 30rpx; - &.status0{ + + &.status0 { color: #2291F8; } } - .item-date{ + + .item-date { color: #666666; font-size: 28rpx; } - } - .right-btn-box{ + } + + .right-btn-box { display: flex; align-items: center; justify-content: flex-end; - &.event_box{ + + &.event_box { position: static; } - .btn-item{ + + .btn-item { display: flex; align-items: center; justify-content: center; - width:140rpx; - height:46rpx; + width: 140rpx; + height: 46rpx; margin-left: 10rpx; - border:1px solid rgba(187,187,187,1); - border-radius:23rpx; + border: 1px solid rgba(187, 187, 187, 1); + border-radius: 23rpx; font-size: 24rpx; color: #282828; - &.on{ - background:rgba(220,220,220,1); - border-color: rgba(220,220,220,1); + + &.on { + background: rgba(220, 220, 220, 1); + border-color: rgba(220, 220, 220, 1); } - &.err{ - background:rgba(247,247,247,1); - border-color: rgba(247,247,247,1); + + &.err { + background: rgba(247, 247, 247, 1); + border-color: rgba(247, 247, 247, 1); color: #AAAAAA; } } } - .event_bg{ + + .event_bg { background: #FF7F00; } - .event_color{ + + .event_color { color: #FF7F00; } - .presell_item{ + + .presell_item { height: auto; padding-bottom: 15rpx; } - .event_progress{ + + .event_progress { margin-top: 20rpx; background: #fff; + .progress_name { padding-left: 30rpx; height: 60rpx; @@ -307,7 +381,8 @@ font-weight: bold; position: relative; color: var(--view-theme); - &::before{ + + &::before { content: ""; display: inline-block; width: 5rpx; @@ -318,43 +393,49 @@ left: 0; } } - .align_right{ + + .align_right { float: right; font-weight: bold; } - .progress_price{ + + .progress_price { padding: 20rpx 30rpx; color: #999999; font-size: 22rpx; } - .progress_pay{ + + .progress_pay { padding: 25rpx 30rpx; background: var(--view-minorColor); font-size: 26rpx; color: #282828; } } - .event_name{ + + .event_name { display: inline-block; margin-right: 9rpx; color: #fff; font-size: 20rpx; padding: 0 8rpx; - line-height: 30rpx; + line-height: 30rpx; text-align: center; - border-radius: 6rpx; + border-radius: 6rpx; } - .event_ship{ + + .event_ship { font-size: 20rpx; - margin-top: 10rpx; + margin-top: 10rpx; } - .goodWrapper.item1{ - &::after{ + + .goodWrapper.item1 { + &::after { content: ""; display: block; width: 750rpx; height: 14rpx; background: #F0F0F0; - } + } } - + \ No newline at end of file diff --git a/components/zbpSwiper.vue b/components/zbpSwiper.vue index 5dd9822..de31974 100644 --- a/components/zbpSwiper.vue +++ b/components/zbpSwiper.vue @@ -94,7 +94,10 @@ this.getBanner() this.Area() if (this.location.address_component?.street) this.street = this.location.address_component.street - }, + // this.street = Cache.get('LOCATION_DATA',true) + console.log( Cache.get('LOCATION_DATA')) + }, + methods: { swiperClick(item) { const url = item.info[1].value diff --git a/pages.json b/pages.json index 7a0f22d..471efbf 100644 --- a/pages.json +++ b/pages.json @@ -28,7 +28,7 @@ "style": { "navigationBarTitleText": "常用", "navigationStyle": "custom", - "enablePullDownRefresh": true + "enablePullDownRefresh": false } }, { diff --git a/pages/admin/orderDetail/index.vue b/pages/admin/orderDetail/index.vue index c51bfad..6c792e1 100644 --- a/pages/admin/orderDetail/index.vue +++ b/pages/admin/orderDetail/index.vue @@ -164,10 +164,11 @@ 确认付款 - + + 收件码 - 去发货 + 去发货 去核销 - + @@ -274,6 +274,7 @@ }, data() { return { + locationArr: ({}), emptyText: '暂无可用应用', jurisdiction: false, // 是否有权限 mer_id: '', @@ -306,6 +307,7 @@ uni.stopPullDownRefresh() }, methods: { + navigator(url, t) { // if (this.userInfoData.is_wsxx === 0 && t != '商户设置') return Toast("请完善商户信息"); uni.navigateTo({ diff --git a/pages/index/index.vue b/pages/index/index.vue index 9811249..d4e94ce 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -2,9 +2,9 @@ - + - + @@ -95,6 +95,7 @@ }, data() { return { + locationArr: ({}), status: 'loadmore', bgColor: '', showPicker: false, @@ -155,6 +156,16 @@ this.getGoods() }, methods: { + selectPlce(e) { + this.street_id = e.value[1].code + this.town = e.value[1].name + this.getCloudShopMerId(e.value[1].code) + }, + getCloudShopMerId(id) { + get_cloud_shop(id).then(res => { + res.data.length > 0 ? this.isYunCang = 1 : this.isYunCang = 0 + }) + }, confirm(e) { this.where.street_id = e.value[1].code this.showPicker = false diff --git a/pages/nongKe/supply_chain/goods_list.vue b/pages/nongKe/supply_chain/goods_list.vue index 9dc0c5b..85065f4 100644 --- a/pages/nongKe/supply_chain/goods_list.vue +++ b/pages/nongKe/supply_chain/goods_list.vue @@ -43,8 +43,8 @@ 订货价 - 库存量 - + 取消 保存 @@ -151,6 +151,7 @@ const res = await productUpdate(this.merId, this.product_id, this.particulars) // Toast(message) this.getGoodsList() + this.goodsList=[] this.popupShow = false this.goodsPrive = '' this.goodsNum = '' diff --git a/pages/plantGrass/plant_release/index.vue b/pages/plantGrass/plant_release/index.vue index b84512c..35dc1e9 100644 --- a/pages/plantGrass/plant_release/index.vue +++ b/pages/plantGrass/plant_release/index.vue @@ -4,7 +4,7 @@ - + {{item.name}} @@ -187,7 +187,7 @@ // #endif }, onLoad(options) { - console.log(this.community_app_switch); + console.log(options.type); this.id = options.id; this.order_id = options.order_id; this.tabActive = options.type || 1; @@ -247,9 +247,10 @@ }) }, /*切换tab*/ - changeTab(item) { - if(this.tabActive == item.value) return - this.tabActive = item.value + changeTab(index) { + + + this.tabActive =index this.formData.image = [] }, /*删除话题*/ diff --git a/pages/plantGrass/plant_user/index.vue b/pages/plantGrass/plant_user/index.vue index 30c3440..c0a2b21 100644 --- a/pages/plantGrass/plant_user/index.vue +++ b/pages/plantGrass/plant_user/index.vue @@ -17,7 +17,7 @@ {{userInfo.focus}}关注 - {{userInfo.fans}}粉丝 + {{userInfo.fans==null?0:userInfo.fans}}粉丝 {{userInfo.start}}获赞 @@ -37,6 +37,7 @@ + 作品 赞过 diff --git a/pages/plant_release/index.vue b/pages/plant_release/index.vue index 45d2a94..63885a5 100644 --- a/pages/plant_release/index.vue +++ b/pages/plant_release/index.vue @@ -252,6 +252,7 @@ // #endif }, onLoad(options) { + console.log(options) // uni.hideTabBar() this.id = options.id; this.order_id = options.order_id; diff --git a/pages/product/basicSet.vue b/pages/product/basicSet.vue index dac6331..7823fe0 100644 --- a/pages/product/basicSet.vue +++ b/pages/product/basicSet.vue @@ -2,35 +2,29 @@ - - - 店铺基本配置 - + 店铺基本配置 - 上传店铺背景图 + 上传店铺背景图 - - + 建议尺寸:710*220PX - 上传店铺头像 + 上传店铺头像 - - + + 建议尺寸:120*120px @@ -40,31 +34,15 @@ radius="4px" @click="delImg(3)"> - + 拍摄要求 - - - - - - 正确示范 - - - 请上传真实有效的图片信息 - - - - + @@ -74,64 +52,51 @@ - 店铺街背景图 + 店铺街背景图 - - - 建议尺寸:710*134px或710*460px(请根据平台要求选择尺寸,此图如未上传默认展示店铺背景图) + + 建议尺寸:710*134px或710*460px(请根据平台要求选择尺寸,此图如未上传默认展示店铺背景图) - - - 发货基本配置 + + 配送基本配置 配送方式: - - - 到店自提 - 快递配送 - + - *只选择一种配送方式时,会自动修改店铺所有商品配送方式 + *只选择一种配送方式时,会自动修改店铺所有商品的配送方式 - 详细地址: + 详细地址: - 经纬度 - - - + + 获取地址 - 提货点营业日期: + 提货点营业日期: @@ -140,44 +105,44 @@ - 提货点营业时间: + 店铺营业时间: - {{ mer_take_time[0] ? mer_take_time[0] : '选择开始时间' }} - + {{ mer_take_time[0] ? mer_take_time[0] : '选择开始时间' }} - {{ mer_take_time[1] ? mer_take_time[1] : '选择结束时间' }} - + {{ mer_take_time[1] ? mer_take_time[1] : '选择结束时间' }} - - 店铺基本配置 + 商户信息配置 - 商户简介: + 商户名称: + + + + 商户简介: - 客服电话: + 客服电话: - 开启先货后款: + 开启先货后款: - - 先货后款结算周期: + + 先货后款结算周期: *周期结算时间范围为:15~90 周期单位为:天 - 先货后款结算利率: + 先货后款结算利率: *利率结算范围为:0.01 ~ 0.1 利率单位为:% @@ -218,19 +183,19 @@ data() { return { shootAsk: [{ - url: '../../static/images/SHSZ/BZ1.png', + url: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/wyly/bzps.png', text: '标准拍摄' }, { - url: '../../static/images/SHSZ/BKQS.png', + url: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/wyly/bkqs.png', text: '边框缺失' }, { - url: '../../static/images/SHSZ/ZPMH.png', + url: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/wyly/zpmh.png', text: '照片模糊' }, { - url: '../../static/images/SHSZ/SGQL.png', + url: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/public/kk/wyly/sgql.png', text: '闪光强烈' } ], @@ -300,6 +265,7 @@ credit_buy: false, //开启信用购 interest_rate: '', //利率 settle_cycle: '', //周期 + mer_name:'' } }, onLoad(e) { @@ -332,6 +298,7 @@ this.mer_take_time = res.data.mer_take_time this.intro = res.data.mer_info this.cruxText = res.data.mer_keyword + this.mer_name= res.data.mer_name this.servicePhone = res.data.service_phone this.mer_address = res.data.mer_address this.merState = res.data.mer_state === 1 ? true : false @@ -436,7 +403,7 @@ uni.getLocation({ type: 'wgs84', success: (res) => { - console.log(res); + // console.log(res); this.latitude = res.latitude.toString(); this.longitude = res.longitude.toString(); this.longLati = `${res.latitude},${res.longitude}` @@ -491,39 +458,35 @@ - + \ No newline at end of file diff --git a/static/audio/order.mp3 b/static/audio/order.mp3 new file mode 100644 index 0000000..3cc3499 Binary files /dev/null and b/static/audio/order.mp3 differ diff --git a/static/images/bj.png b/static/images/bj.png new file mode 100644 index 0000000..eb0e103 Binary files /dev/null and b/static/images/bj.png differ diff --git a/static/images/cart.png b/static/images/cart.png new file mode 100644 index 0000000..83f6392 Binary files /dev/null and b/static/images/cart.png differ diff --git a/static/images/comment.png b/static/images/comment.png new file mode 100644 index 0000000..d90a7be Binary files /dev/null and b/static/images/comment.png differ diff --git a/static/images/delegation.png b/static/images/delegation.png new file mode 100644 index 0000000..5e3ac4f Binary files /dev/null and b/static/images/delegation.png differ diff --git a/static/images/dong.gif b/static/images/dong.gif new file mode 100644 index 0000000..3c5e939 Binary files /dev/null and b/static/images/dong.gif differ diff --git a/static/images/ifno.png b/static/images/ifno.png new file mode 100644 index 0000000..eba4de0 Binary files /dev/null and b/static/images/ifno.png differ diff --git a/static/images/like.png b/static/images/like.png new file mode 100644 index 0000000..dd4a496 Binary files /dev/null and b/static/images/like.png differ diff --git a/static/images/share.png b/static/images/share.png new file mode 100644 index 0000000..a6579bc Binary files /dev/null and b/static/images/share.png differ diff --git a/static/images/z1.png b/static/images/z1.png new file mode 100644 index 0000000..2ef9601 Binary files /dev/null and b/static/images/z1.png differ diff --git a/static/images/z2.png b/static/images/z2.png new file mode 100644 index 0000000..ced85d8 Binary files /dev/null and b/static/images/z2.png differ diff --git a/static/images/z3.png b/static/images/z3.png new file mode 100644 index 0000000..03945e4 Binary files /dev/null and b/static/images/z3.png differ diff --git a/static/tabbar_icon/组 17762.png b/static/tabbar_icon/组 17762.png deleted file mode 100644 index a41b859..0000000 Binary files a/static/tabbar_icon/组 17762.png and /dev/null differ diff --git a/static/tabbar_icon/组 17763.png b/static/tabbar_icon/组 17763.png deleted file mode 100644 index 52f89d7..0000000 Binary files a/static/tabbar_icon/组 17763.png and /dev/null differ diff --git a/static/tabbar_icon/组 17764.png b/static/tabbar_icon/组 17764.png deleted file mode 100644 index 37560ad..0000000 Binary files a/static/tabbar_icon/组 17764.png and /dev/null differ diff --git a/static/tabbar_icon/组 17765.png b/static/tabbar_icon/组 17765.png deleted file mode 100644 index cef4a33..0000000 Binary files a/static/tabbar_icon/组 17765.png and /dev/null differ diff --git a/static/tabbar_icon/组 17766.png b/static/tabbar_icon/组 17766.png deleted file mode 100644 index c3963ba..0000000 Binary files a/static/tabbar_icon/组 17766.png and /dev/null differ diff --git a/static/tabbar_icon/组 17767.png b/static/tabbar_icon/组 17767.png deleted file mode 100644 index 852233f..0000000 Binary files a/static/tabbar_icon/组 17767.png and /dev/null differ diff --git a/static/tabbar_icon/组 17768.png b/static/tabbar_icon/组 17768.png deleted file mode 100644 index 9c23696..0000000 Binary files a/static/tabbar_icon/组 17768.png and /dev/null differ diff --git a/static/tabbar_icon/组 17769.png b/static/tabbar_icon/组 17769.png deleted file mode 100644 index 1331fc6..0000000 Binary files a/static/tabbar_icon/组 17769.png and /dev/null differ