diff --git a/api/apiRoute.js b/api/apiRoute.js index aa9bc1a..31c1436 100644 --- a/api/apiRoute.js +++ b/api/apiRoute.js @@ -98,6 +98,14 @@ export default { //公共端-获取配置项 common_getConfig(data = {}) { let url = '/common/getConfig' + return http.get(url, data).then(res => { + return res; + }) + }, + + //公共端-获取配置项 + common_getMiniWxOpenId(data = {}) { + let url = '/common/getMiniWxOpenId' return http.post(url, data).then(res => { return res; }) diff --git a/pages/student/login/login.vue b/pages/student/login/login.vue index f060373..4cc961f 100644 --- a/pages/student/login/login.vue +++ b/pages/student/login/login.vue @@ -98,7 +98,7 @@ export default { }, methods: { async init(){ - await this.getWxConfig() + await this.getMiNiWxOpenId() }, input(e) { console.log(e) @@ -149,6 +149,7 @@ export default { 'phone': this.user, 'password': this.password1, 'login_type': 1, + 'mini_wx_openid':this.mini_wx_openid,//微信小程序openid } res = await apiRoute.personnelLogin(params) }else if(this.loginType == 2){ @@ -158,11 +159,19 @@ export default { 'phone': this.user, 'password': this.password1, 'login_type': 2, + 'mini_wx_openid':this.mini_wx_openid,//微信小程序openid } res = await apiRoute.personnelLogin(params) console.log(123123,res) }else if (this.loginType == 3){ + //学生 + let params = { + 'phone': this.user, + 'password': this.password1, + 'login_type': 2, + 'mini_wx_openid':this.mini_wx_openid,//微信小程序openid + } } if(!res.code){ @@ -202,57 +211,35 @@ export default { }) }, - async getWxConfig(){ - let params = { - config_key: 'WECHAT' - } - let res = await apiRoute.common_getConfig(params) - if ( res.code != 1){ - uni.showToast({ - title: res.msg, - icon: 'none' - }) - return - } - let appid = res.data.app_id || '' - let secret = res.data.app_secret || '' - if(!appid || !secret){ - uni.showToast({ - title: '请配置微信小程序信息', - icon: 'none' - }) - } - await this.loginWx(appid, secret) - }, - - async loginWx(appid,secret) { + //获取微信小程序openid + // 获取微信登录 code 并请求 openid + async getMiNiWxOpenId() { uni.login({ provider: 'weixin', success: (res) => { - console.log(res.code); // 打印 code - - // 拿到 code 后请求后端接口换取 openid - uni.request({ - url: 'https://api.weixin.qq.com/sns/jscode2session', - data: { - appid: '你的AppID', // 替换为你的 AppID - secret: '你的AppSecret', // 替换为你的 AppSecret - js_code: res.code, - grant_type: 'authorization_code' - }, - success: (wxRes) => { - console.log('获取到的 openid:', wxRes.data.openid); // 只打印 openid - }, - fail: () => { - console.error('请求失败'); - } - }); + const code = res.code; + this.fetchOpenId(code); // 调用单独方法 }, fail: () => { - console.error('uni.login 失败'); + uni.showToast({ title: '微信登录失败', icon: 'none' }); } }); }, + // 获取微信登录 code 并请求 openid + async fetchOpenId(code){ + let params = { + code: code, + } + let res = await apiRoute.common_getMiniWxOpenId(params) + if (res.code != 1){ + uni.showToast({ + title: res.msg, + icon: 'none' + }) + return + } + this.mini_wx_openid = res.data.openid + }, //登录类型选择相关 changePicker_loginType(e){ diff --git a/static/images/common/black_arrow_right.png b/static/images/common/black_arrow_right.png deleted file mode 100644 index 79e6fe9..0000000 Binary files a/static/images/common/black_arrow_right.png and /dev/null differ diff --git a/static/images/common/closex.png b/static/images/common/closex.png deleted file mode 100644 index 3ecc7fc..0000000 Binary files a/static/images/common/closex.png and /dev/null differ diff --git a/static/images/common/clousex-big.png b/static/images/common/clousex-big.png deleted file mode 100644 index 95bea45..0000000 Binary files a/static/images/common/clousex-big.png and /dev/null differ diff --git a/static/images/common/common_icon_jump_gold.png b/static/images/common/common_icon_jump_gold.png deleted file mode 100644 index 0ac94f5..0000000 Binary files a/static/images/common/common_icon_jump_gold.png and /dev/null differ diff --git a/static/images/common/delete.png b/static/images/common/delete.png deleted file mode 100644 index 2fabdc8..0000000 Binary files a/static/images/common/delete.png and /dev/null differ diff --git a/static/images/common/edit.png b/static/images/common/edit.png deleted file mode 100644 index 235f432..0000000 Binary files a/static/images/common/edit.png and /dev/null differ diff --git a/static/images/common/fa_song.png b/static/images/common/fa_song.png deleted file mode 100644 index ea77704..0000000 Binary files a/static/images/common/fa_song.png and /dev/null differ diff --git a/static/images/common/gift_icon_close_new.png b/static/images/common/gift_icon_close_new.png deleted file mode 100644 index 1dcb46c..0000000 Binary files a/static/images/common/gift_icon_close_new.png and /dev/null differ diff --git a/static/images/common/gouxuankuang.png b/static/images/common/gouxuankuang.png deleted file mode 100644 index e05701f..0000000 Binary files a/static/images/common/gouxuankuang.png and /dev/null differ diff --git a/static/images/common/gray_arrow_down.png b/static/images/common/gray_arrow_down.png deleted file mode 100644 index 5aff232..0000000 Binary files a/static/images/common/gray_arrow_down.png and /dev/null differ diff --git a/static/images/common/icon-close.png b/static/images/common/icon-close.png deleted file mode 100644 index 331e65d..0000000 Binary files a/static/images/common/icon-close.png and /dev/null differ diff --git a/static/images/common/icon-drop-down.png b/static/images/common/icon-drop-down.png deleted file mode 100644 index 27fc8b7..0000000 Binary files a/static/images/common/icon-drop-down.png and /dev/null differ diff --git a/static/images/common/icon_about.png b/static/images/common/icon_about.png deleted file mode 100644 index 4dbd9e5..0000000 Binary files a/static/images/common/icon_about.png and /dev/null differ diff --git a/static/images/common/icon_black_back.png b/static/images/common/icon_black_back.png deleted file mode 100644 index 8955e1a..0000000 Binary files a/static/images/common/icon_black_back.png and /dev/null differ diff --git a/static/images/common/icon_jump_black3.png b/static/images/common/icon_jump_black3.png deleted file mode 100644 index 5b3dc42..0000000 Binary files a/static/images/common/icon_jump_black3.png and /dev/null differ diff --git a/static/images/common/image-delete.png b/static/images/common/image-delete.png deleted file mode 100644 index 4987c21..0000000 Binary files a/static/images/common/image-delete.png and /dev/null differ diff --git a/static/images/common/jia_hao.png b/static/images/common/jia_hao.png deleted file mode 100644 index 4416a11..0000000 Binary files a/static/images/common/jia_hao.png and /dev/null differ diff --git a/static/images/common/jump-r-arrow.png b/static/images/common/jump-r-arrow.png deleted file mode 100644 index c78d9c9..0000000 Binary files a/static/images/common/jump-r-arrow.png and /dev/null differ diff --git a/static/images/common/menu_icon_empty.png b/static/images/common/menu_icon_empty.png deleted file mode 100644 index e3c9fee..0000000 Binary files a/static/images/common/menu_icon_empty.png and /dev/null differ diff --git a/static/images/common/more-arrow-right.png b/static/images/common/more-arrow-right.png deleted file mode 100644 index da2003f..0000000 Binary files a/static/images/common/more-arrow-right.png and /dev/null differ diff --git a/static/images/common/round-black-selected.png b/static/images/common/round-black-selected.png deleted file mode 100644 index c278d8f..0000000 Binary files a/static/images/common/round-black-selected.png and /dev/null differ diff --git a/static/images/common/round_add_disabled.png b/static/images/common/round_add_disabled.png deleted file mode 100644 index ec3e343..0000000 Binary files a/static/images/common/round_add_disabled.png and /dev/null differ diff --git a/static/images/common/round_add_normal.png b/static/images/common/round_add_normal.png deleted file mode 100644 index 25df59e..0000000 Binary files a/static/images/common/round_add_normal.png and /dev/null differ diff --git a/static/images/common/round_minus.png b/static/images/common/round_minus.png deleted file mode 100644 index cf54b5d..0000000 Binary files a/static/images/common/round_minus.png and /dev/null differ diff --git a/static/images/common/search-icon.png b/static/images/common/search-icon.png deleted file mode 100644 index b3f8e51..0000000 Binary files a/static/images/common/search-icon.png and /dev/null differ diff --git a/static/images/common/star_normal.png b/static/images/common/star_normal.png deleted file mode 100644 index 3ee01ec..0000000 Binary files a/static/images/common/star_normal.png and /dev/null differ diff --git a/static/images/common/xi_tong_xiao_xi.png b/static/images/common/xi_tong_xiao_xi.png deleted file mode 100644 index 866b3b4..0000000 Binary files a/static/images/common/xi_tong_xiao_xi.png and /dev/null differ diff --git a/static/images/common/yong_hu.png b/static/images/common/yong_hu.png deleted file mode 100644 index 82a925a..0000000 Binary files a/static/images/common/yong_hu.png and /dev/null differ diff --git a/static/images/home/chaungjian.png b/static/images/home/chaungjian.png deleted file mode 100644 index 10c9c35..0000000 Binary files a/static/images/home/chaungjian.png and /dev/null differ diff --git a/static/images/home/tixing.png b/static/images/home/tixing.png deleted file mode 100644 index 53b564c..0000000 Binary files a/static/images/home/tixing.png and /dev/null differ diff --git a/static/images/home/wang.png b/static/images/home/wang.png deleted file mode 100644 index 4f423f4..0000000 Binary files a/static/images/home/wang.png and /dev/null differ diff --git a/static/images/home/yong.png b/static/images/home/yong.png deleted file mode 100644 index b5539d3..0000000 Binary files a/static/images/home/yong.png and /dev/null differ diff --git a/static/images/index/addto.png b/static/images/index/addto.png deleted file mode 100644 index 443d8af..0000000 Binary files a/static/images/index/addto.png and /dev/null differ diff --git a/static/images/index/check_mark.png b/static/images/index/check_mark.png deleted file mode 100644 index fd4a891..0000000 Binary files a/static/images/index/check_mark.png and /dev/null differ diff --git a/static/images/index/danlan.png b/static/images/index/danlan.png deleted file mode 100644 index b5c930d..0000000 Binary files a/static/images/index/danlan.png and /dev/null differ diff --git a/static/images/index/danlv.png b/static/images/index/danlv.png deleted file mode 100644 index 8410e51..0000000 Binary files a/static/images/index/danlv.png and /dev/null differ diff --git a/static/images/index/dian.png b/static/images/index/dian.png deleted file mode 100644 index 7bbab5e..0000000 Binary files a/static/images/index/dian.png and /dev/null differ diff --git a/static/images/index/hong.png b/static/images/index/hong.png deleted file mode 100644 index a75a3e1..0000000 Binary files a/static/images/index/hong.png and /dev/null differ diff --git a/static/images/index/huang.png b/static/images/index/huang.png deleted file mode 100644 index 9086256..0000000 Binary files a/static/images/index/huang.png and /dev/null differ diff --git a/static/images/index/icon_shopping_bag.png b/static/images/index/icon_shopping_bag.png deleted file mode 100644 index 05339ff..0000000 Binary files a/static/images/index/icon_shopping_bag.png and /dev/null differ diff --git a/static/images/index/img.jpg b/static/images/index/img.jpg deleted file mode 100644 index 0c6b62f..0000000 Binary files a/static/images/index/img.jpg and /dev/null differ diff --git a/static/images/index/intention1.png b/static/images/index/intention1.png deleted file mode 100644 index 5078950..0000000 Binary files a/static/images/index/intention1.png and /dev/null differ diff --git a/static/images/index/intention2.png b/static/images/index/intention2.png deleted file mode 100644 index 87af30b..0000000 Binary files a/static/images/index/intention2.png and /dev/null differ diff --git a/static/images/index/intention3.png b/static/images/index/intention3.png deleted file mode 100644 index 963ceb0..0000000 Binary files a/static/images/index/intention3.png and /dev/null differ diff --git a/static/images/index/lan.png b/static/images/index/lan.png deleted file mode 100644 index c757019..0000000 Binary files a/static/images/index/lan.png and /dev/null differ diff --git a/static/images/index/lv.png b/static/images/index/lv.png deleted file mode 100644 index f65c131..0000000 Binary files a/static/images/index/lv.png and /dev/null differ diff --git a/static/images/index/lvs.png b/static/images/index/lvs.png deleted file mode 100644 index 4f8d72d..0000000 Binary files a/static/images/index/lvs.png and /dev/null differ diff --git a/static/images/index/manjian.png b/static/images/index/manjian.png deleted file mode 100644 index 65ead2e..0000000 Binary files a/static/images/index/manjian.png and /dev/null differ diff --git a/static/images/index/me_icon_notification.png b/static/images/index/me_icon_notification.png deleted file mode 100644 index 05c6697..0000000 Binary files a/static/images/index/me_icon_notification.png and /dev/null differ diff --git a/static/images/index/menu_btn_close.png b/static/images/index/menu_btn_close.png deleted file mode 100644 index d1bf4c1..0000000 Binary files a/static/images/index/menu_btn_close.png and /dev/null differ diff --git a/static/images/index/menu_icon_popup_triangle_normal.png b/static/images/index/menu_icon_popup_triangle_normal.png deleted file mode 100644 index ec0e2f5..0000000 Binary files a/static/images/index/menu_icon_popup_triangle_normal.png and /dev/null differ diff --git a/static/images/index/menupopup_btn_share_normal.png b/static/images/index/menupopup_btn_share_normal.png deleted file mode 100644 index 2ba04d2..0000000 Binary files a/static/images/index/menupopup_btn_share_normal.png and /dev/null differ diff --git a/static/images/index/menupopup_btn_share_quanzi.png b/static/images/index/menupopup_btn_share_quanzi.png deleted file mode 100644 index d6256f4..0000000 Binary files a/static/images/index/menupopup_btn_share_quanzi.png and /dev/null differ diff --git a/static/images/index/menupopup_btn_share_wechat.png b/static/images/index/menupopup_btn_share_wechat.png deleted file mode 100644 index dd9b33d..0000000 Binary files a/static/images/index/menupopup_btn_share_wechat.png and /dev/null differ diff --git a/static/images/index/message.png b/static/images/index/message.png deleted file mode 100644 index 6540508..0000000 Binary files a/static/images/index/message.png and /dev/null differ diff --git a/static/images/index/myk.png b/static/images/index/myk.png deleted file mode 100644 index 405635f..0000000 Binary files a/static/images/index/myk.png and /dev/null differ diff --git a/static/images/index/phone.png b/static/images/index/phone.png deleted file mode 100644 index e7a21bf..0000000 Binary files a/static/images/index/phone.png and /dev/null differ diff --git a/static/images/index/rexiao.png b/static/images/index/rexiao.png deleted file mode 100644 index 194103a..0000000 Binary files a/static/images/index/rexiao.png and /dev/null differ diff --git a/static/images/index/round-cancel.png b/static/images/index/round-cancel.png deleted file mode 100644 index 79a10ec..0000000 Binary files a/static/images/index/round-cancel.png and /dev/null differ diff --git a/static/images/index/round.png b/static/images/index/round.png deleted file mode 100644 index 41f4e82..0000000 Binary files a/static/images/index/round.png and /dev/null differ diff --git a/static/images/index/round_close_btn.png b/static/images/index/round_close_btn.png deleted file mode 100644 index 87427cd..0000000 Binary files a/static/images/index/round_close_btn.png and /dev/null differ diff --git a/static/images/index/score.png b/static/images/index/score.png deleted file mode 100644 index 11acc04..0000000 Binary files a/static/images/index/score.png and /dev/null differ diff --git a/static/images/index/score1.png b/static/images/index/score1.png deleted file mode 100644 index ce0d1a4..0000000 Binary files a/static/images/index/score1.png and /dev/null differ diff --git a/static/images/index/setup.png b/static/images/index/setup.png deleted file mode 100644 index 0a7d37c..0000000 Binary files a/static/images/index/setup.png and /dev/null differ diff --git a/static/images/index/shadow_yellow_star.png b/static/images/index/shadow_yellow_star.png deleted file mode 100644 index 8f6593f..0000000 Binary files a/static/images/index/shadow_yellow_star.png and /dev/null differ diff --git a/static/images/index/shenlan.png b/static/images/index/shenlan.png deleted file mode 100644 index b419a0b..0000000 Binary files a/static/images/index/shenlan.png and /dev/null differ diff --git a/static/images/index/star.png b/static/images/index/star.png deleted file mode 100644 index 630f8f5..0000000 Binary files a/static/images/index/star.png and /dev/null differ diff --git a/static/images/index/task.png b/static/images/index/task.png deleted file mode 100644 index c44a6d3..0000000 Binary files a/static/images/index/task.png and /dev/null differ diff --git a/static/images/index/tuijian.png b/static/images/index/tuijian.png deleted file mode 100644 index 5e0eae3..0000000 Binary files a/static/images/index/tuijian.png and /dev/null differ diff --git a/static/images/index/work_details.png b/static/images/index/work_details.png deleted file mode 100644 index 562e866..0000000 Binary files a/static/images/index/work_details.png and /dev/null differ diff --git a/static/images/index/writing.png b/static/images/index/writing.png deleted file mode 100644 index 01504bc..0000000 Binary files a/static/images/index/writing.png and /dev/null differ diff --git a/static/images/index/xinpin.png b/static/images/index/xinpin.png deleted file mode 100644 index 87ab9dd..0000000 Binary files a/static/images/index/xinpin.png and /dev/null differ diff --git a/static/images/index/yellow_star.png b/static/images/index/yellow_star.png deleted file mode 100644 index 5406b46..0000000 Binary files a/static/images/index/yellow_star.png and /dev/null differ diff --git a/static/images/index/zan_wu.png b/static/images/index/zan_wu.png deleted file mode 100644 index e51c397..0000000 Binary files a/static/images/index/zan_wu.png and /dev/null differ diff --git a/static/images/login/login1.png b/static/images/login/login1.png deleted file mode 100644 index 79b4227..0000000 Binary files a/static/images/login/login1.png and /dev/null differ diff --git a/static/images/login/login2.png b/static/images/login/login2.png deleted file mode 100644 index ded11c3..0000000 Binary files a/static/images/login/login2.png and /dev/null differ diff --git a/static/images/login/wechat1.png b/static/images/login/wechat1.png deleted file mode 100644 index 75a208b..0000000 Binary files a/static/images/login/wechat1.png and /dev/null differ diff --git a/static/images/mall/b3d3a98e3c7f450aaa32fbec6aecdfaf.png b/static/images/mall/b3d3a98e3c7f450aaa32fbec6aecdfaf.png deleted file mode 100644 index 94e6191..0000000 Binary files a/static/images/mall/b3d3a98e3c7f450aaa32fbec6aecdfaf.png and /dev/null differ diff --git a/static/images/mall/img_pointmall_star.png b/static/images/mall/img_pointmall_star.png deleted file mode 100644 index 648f27e..0000000 Binary files a/static/images/mall/img_pointmall_star.png and /dev/null differ diff --git a/static/images/mall/me_img_banner_mall.png b/static/images/mall/me_img_banner_mall.png deleted file mode 100644 index 70f18d2..0000000 Binary files a/static/images/mall/me_img_banner_mall.png and /dev/null differ diff --git a/static/images/mall/me_pointmall_img_nogift.png b/static/images/mall/me_pointmall_img_nogift.png deleted file mode 100644 index 1d5bd4a..0000000 Binary files a/static/images/mall/me_pointmall_img_nogift.png and /dev/null differ diff --git a/static/images/mall/store_brh_home_page_normal.png b/static/images/mall/store_brh_home_page_normal.png deleted file mode 100644 index 058a717..0000000 Binary files a/static/images/mall/store_brh_home_page_normal.png and /dev/null differ diff --git a/static/images/mall/store_brh_service_normal.png b/static/images/mall/store_brh_service_normal.png deleted file mode 100644 index caa3844..0000000 Binary files a/static/images/mall/store_brh_service_normal.png and /dev/null differ diff --git a/static/images/member/me_club_task_img_done.png b/static/images/member/me_club_task_img_done.png deleted file mode 100644 index 4596aec..0000000 Binary files a/static/images/member/me_club_task_img_done.png and /dev/null differ diff --git a/static/images/my/b3d3a98e3c7f450aaa32fbec6aecdfaf.png b/static/images/my/b3d3a98e3c7f450aaa32fbec6aecdfaf.png deleted file mode 100644 index 62fc9b8..0000000 Binary files a/static/images/my/b3d3a98e3c7f450aaa32fbec6aecdfaf.png and /dev/null differ diff --git a/static/images/my/coupons-empty.png b/static/images/my/coupons-empty.png deleted file mode 100644 index 69dbf59..0000000 Binary files a/static/images/my/coupons-empty.png and /dev/null differ diff --git a/static/images/my/icon_arrow.png b/static/images/my/icon_arrow.png deleted file mode 100644 index 3cdb968..0000000 Binary files a/static/images/my/icon_arrow.png and /dev/null differ diff --git a/static/images/my/icon_attention.png b/static/images/my/icon_attention.png deleted file mode 100644 index 61af358..0000000 Binary files a/static/images/my/icon_attention.png and /dev/null differ diff --git a/static/images/my/icon_giftcard.png b/static/images/my/icon_giftcard.png deleted file mode 100644 index da4949e..0000000 Binary files a/static/images/my/icon_giftcard.png and /dev/null differ diff --git a/static/images/my/icon_rules.png b/static/images/my/icon_rules.png deleted file mode 100644 index 8993222..0000000 Binary files a/static/images/my/icon_rules.png and /dev/null differ diff --git a/static/images/my/img_giftcard_empty.png b/static/images/my/img_giftcard_empty.png deleted file mode 100644 index 7f59e14..0000000 Binary files a/static/images/my/img_giftcard_empty.png and /dev/null differ diff --git a/static/images/my/jf.png b/static/images/my/jf.png deleted file mode 100644 index 5d88ce1..0000000 Binary files a/static/images/my/jf.png and /dev/null differ diff --git a/static/images/my/me_icon_gift_card.png b/static/images/my/me_icon_gift_card.png deleted file mode 100644 index ac2fc17..0000000 Binary files a/static/images/my/me_icon_gift_card.png and /dev/null differ diff --git a/static/images/my/me_icon_points.png b/static/images/my/me_icon_points.png deleted file mode 100644 index 4488f80..0000000 Binary files a/static/images/my/me_icon_points.png and /dev/null differ diff --git a/static/images/my/me_icon_quan.png b/static/images/my/me_icon_quan.png deleted file mode 100644 index 65b10b6..0000000 Binary files a/static/images/my/me_icon_quan.png and /dev/null differ diff --git a/static/images/my/me_icon_wallet.png b/static/images/my/me_icon_wallet.png deleted file mode 100644 index 0a0cc59..0000000 Binary files a/static/images/my/me_icon_wallet.png and /dev/null differ diff --git a/static/images/my/member_benefits/me_rights_icon_1jia1.png b/static/images/my/member_benefits/me_rights_icon_1jia1.png deleted file mode 100644 index d084aba..0000000 Binary files a/static/images/my/member_benefits/me_rights_icon_1jia1.png and /dev/null differ diff --git a/static/images/my/member_benefits/me_rights_icon_1jia1_dis.png b/static/images/my/member_benefits/me_rights_icon_1jia1_dis.png deleted file mode 100644 index 7dde518..0000000 Binary files a/static/images/my/member_benefits/me_rights_icon_1jia1_dis.png and /dev/null differ diff --git a/static/images/my/member_benefits/me_rights_icon_2jia1.png b/static/images/my/member_benefits/me_rights_icon_2jia1.png deleted file mode 100644 index c16bdb0..0000000 Binary files a/static/images/my/member_benefits/me_rights_icon_2jia1.png and /dev/null differ diff --git a/static/images/my/member_benefits/me_rights_icon_2jia1_dis.png b/static/images/my/member_benefits/me_rights_icon_2jia1_dis.png deleted file mode 100644 index 0d6a62d..0000000 Binary files a/static/images/my/member_benefits/me_rights_icon_2jia1_dis.png and /dev/null differ diff --git a/static/images/my/member_benefits/me_rights_icon_free.png b/static/images/my/member_benefits/me_rights_icon_free.png deleted file mode 100644 index c0e476d..0000000 Binary files a/static/images/my/member_benefits/me_rights_icon_free.png and /dev/null differ diff --git a/static/images/my/member_benefits/me_rights_icon_free_dis.png b/static/images/my/member_benefits/me_rights_icon_free_dis.png deleted file mode 100644 index c99b796..0000000 Binary files a/static/images/my/member_benefits/me_rights_icon_free_dis.png and /dev/null differ diff --git a/static/images/my/member_benefits/me_rights_icon_qingshi.png b/static/images/my/member_benefits/me_rights_icon_qingshi.png deleted file mode 100644 index 11f55bc..0000000 Binary files a/static/images/my/member_benefits/me_rights_icon_qingshi.png and /dev/null differ diff --git a/static/images/my/member_benefits/me_rights_icon_qingshi_dis.png b/static/images/my/member_benefits/me_rights_icon_qingshi_dis.png deleted file mode 100644 index c3066cf..0000000 Binary files a/static/images/my/member_benefits/me_rights_icon_qingshi_dis.png and /dev/null differ diff --git a/static/images/my/member_benefits/me_rights_icon_waimai_new.png b/static/images/my/member_benefits/me_rights_icon_waimai_new.png deleted file mode 100644 index fcb4d33..0000000 Binary files a/static/images/my/member_benefits/me_rights_icon_waimai_new.png and /dev/null differ diff --git a/static/images/my/member_benefits/me_rights_icon_waimai_new_dis.png b/static/images/my/member_benefits/me_rights_icon_waimai_new_dis.png deleted file mode 100644 index 6383864..0000000 Binary files a/static/images/my/member_benefits/me_rights_icon_waimai_new_dis.png and /dev/null differ diff --git a/static/images/my/member_benefits/me_rights_icon_youxian_new.png b/static/images/my/member_benefits/me_rights_icon_youxian_new.png deleted file mode 100644 index 5753202..0000000 Binary files a/static/images/my/member_benefits/me_rights_icon_youxian_new.png and /dev/null differ diff --git a/static/images/my/member_benefits/me_rights_icon_youxian_new_dis.png b/static/images/my/member_benefits/me_rights_icon_youxian_new_dis.png deleted file mode 100644 index 9d14860..0000000 Binary files a/static/images/my/member_benefits/me_rights_icon_youxian_new_dis.png and /dev/null differ diff --git a/static/images/my/nocoupon.png b/static/images/my/nocoupon.png deleted file mode 100644 index fb3daa2..0000000 Binary files a/static/images/my/nocoupon.png and /dev/null differ diff --git a/static/images/my/scan-qrcode.png b/static/images/my/scan-qrcode.png deleted file mode 100644 index 46e1669..0000000 Binary files a/static/images/my/scan-qrcode.png and /dev/null differ diff --git a/static/images/my/ye.png b/static/images/my/ye.png deleted file mode 100644 index 0e044a2..0000000 Binary files a/static/images/my/ye.png and /dev/null differ diff --git a/static/images/my/yhq.png b/static/images/my/yhq.png deleted file mode 100644 index 6a6c691..0000000 Binary files a/static/images/my/yhq.png and /dev/null differ diff --git a/static/images/order/batch_invoice_icon.png b/static/images/order/batch_invoice_icon.png deleted file mode 100644 index 1226210..0000000 Binary files a/static/images/order/batch_invoice_icon.png and /dev/null differ diff --git a/static/images/order/default_img_order.png b/static/images/order/default_img_order.png deleted file mode 100644 index 83f1960..0000000 Binary files a/static/images/order/default_img_order.png and /dev/null differ diff --git a/static/images/order/icon_making.png b/static/images/order/icon_making.png deleted file mode 100644 index 44650f3..0000000 Binary files a/static/images/order/icon_making.png and /dev/null differ diff --git a/static/images/order/icon_map.png b/static/images/order/icon_map.png deleted file mode 100644 index b47c605..0000000 Binary files a/static/images/order/icon_map.png and /dev/null differ diff --git a/static/images/order/icon_phone.png b/static/images/order/icon_phone.png deleted file mode 100644 index 9520d6a..0000000 Binary files a/static/images/order/icon_phone.png and /dev/null differ diff --git a/static/images/order/index2.vue b/static/images/order/index2.vue deleted file mode 100644 index e69de29..0000000 diff --git a/static/images/order/order_cancelpay.png b/static/images/order/order_cancelpay.png deleted file mode 100644 index 323c698..0000000 Binary files a/static/images/order/order_cancelpay.png and /dev/null differ diff --git a/static/images/order/order_icon_address.png b/static/images/order/order_icon_address.png deleted file mode 100644 index 11529c6..0000000 Binary files a/static/images/order/order_icon_address.png and /dev/null differ diff --git a/static/images/order/order_icon_change.png b/static/images/order/order_icon_change.png deleted file mode 100644 index cc83810..0000000 Binary files a/static/images/order/order_icon_change.png and /dev/null differ diff --git a/static/images/order/order_icon_service.png b/static/images/order/order_icon_service.png deleted file mode 100644 index 684652b..0000000 Binary files a/static/images/order/order_icon_service.png and /dev/null differ diff --git a/static/images/order/order_icon_talk2.0.png b/static/images/order/order_icon_talk2.0.png deleted file mode 100644 index 828faf1..0000000 Binary files a/static/images/order/order_icon_talk2.0.png and /dev/null differ diff --git a/static/images/order/weixin-pay.png b/static/images/order/weixin-pay.png deleted file mode 100644 index ecaacf5..0000000 Binary files a/static/images/order/weixin-pay.png and /dev/null differ diff --git a/static/images/pay/error.png b/static/images/pay/error.png deleted file mode 100644 index 9238658..0000000 Binary files a/static/images/pay/error.png and /dev/null differ diff --git a/static/images/pay/success.png b/static/images/pay/success.png deleted file mode 100644 index 6c28a43..0000000 Binary files a/static/images/pay/success.png and /dev/null differ diff --git a/static/images/tabbar/banji.png b/static/images/tabbar/banji.png deleted file mode 100644 index 6a13370..0000000 Binary files a/static/images/tabbar/banji.png and /dev/null differ diff --git a/static/images/tabbar/banjis.png b/static/images/tabbar/banjis.png deleted file mode 100644 index 805c8e4..0000000 Binary files a/static/images/tabbar/banjis.png and /dev/null differ diff --git a/static/images/tabbar/clue.png b/static/images/tabbar/clue.png deleted file mode 100644 index 59fe157..0000000 Binary files a/static/images/tabbar/clue.png and /dev/null differ diff --git a/static/images/tabbar/clues.png b/static/images/tabbar/clues.png deleted file mode 100644 index 1996169..0000000 Binary files a/static/images/tabbar/clues.png and /dev/null differ diff --git a/static/images/tabbar/data.png b/static/images/tabbar/data.png deleted file mode 100644 index ff1a551..0000000 Binary files a/static/images/tabbar/data.png and /dev/null differ diff --git a/static/images/tabbar/datas.png b/static/images/tabbar/datas.png deleted file mode 100644 index 6394618..0000000 Binary files a/static/images/tabbar/datas.png and /dev/null differ diff --git a/static/images/tabbar/index.png b/static/images/tabbar/index.png deleted file mode 100644 index f236d73..0000000 Binary files a/static/images/tabbar/index.png and /dev/null differ diff --git a/static/images/tabbar/indexs.png b/static/images/tabbar/indexs.png deleted file mode 100644 index 10eae10..0000000 Binary files a/static/images/tabbar/indexs.png and /dev/null differ diff --git a/static/images/tabbar/my.png b/static/images/tabbar/my.png deleted file mode 100644 index 8d59279..0000000 Binary files a/static/images/tabbar/my.png and /dev/null differ diff --git a/static/images/tabbar/mys.png b/static/images/tabbar/mys.png deleted file mode 100644 index b68c932..0000000 Binary files a/static/images/tabbar/mys.png and /dev/null differ diff --git a/static/images/tabbar/plus.png b/static/images/tabbar/plus.png deleted file mode 100644 index bd18f23..0000000 Binary files a/static/images/tabbar/plus.png and /dev/null differ diff --git a/static/images/tabbar/timetable.png b/static/images/tabbar/timetable.png deleted file mode 100644 index 732683b..0000000 Binary files a/static/images/tabbar/timetable.png and /dev/null differ diff --git a/static/images/tabbar/timetables.png b/static/images/tabbar/timetables.png deleted file mode 100644 index 9532a82..0000000 Binary files a/static/images/tabbar/timetables.png and /dev/null differ