├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .idea ├── YaoRenDangGui_Taro.iml ├── codeStyles │ └── Project.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── vcs.xml ├── watcherTasks.xml └── workspace.xml ├── README.md ├── config ├── dev.js ├── index.js └── prod.js ├── gh_2371cb04b4b6_258.jpg ├── mock └── index.js ├── package.json ├── project.config.json ├── src ├── actions │ ├── business_card.ts │ ├── customer.ts │ ├── dict.ts │ ├── distribution.ts │ ├── file.ts │ ├── goods.ts │ ├── login.ts │ ├── poster.ts │ ├── radar.ts │ ├── shop.ts │ ├── task_center.ts │ ├── tequan.ts │ └── visitor.ts ├── api │ ├── httpurl.ts │ └── request.ts ├── app.scss ├── app.tsx ├── assets │ ├── apply_success.png │ ├── create_your_card.png │ ├── guide_leida.png │ ├── guide_line1.png │ ├── guide_line2.png │ ├── guide_line3.png │ ├── guide_line4.png │ ├── guide_line5.png │ ├── guide_line_6.png │ ├── guide_line_7.png │ ├── guide_person.png │ ├── ico_ diamond.png │ ├── ico_ platinum.png │ ├── ico_back.png │ ├── ico_back_white.png │ ├── ico_business_card_bg1.png │ ├── ico_business_card_bg2.png │ ├── ico_business_card_bg3.png │ ├── ico_business_card_bg4.png │ ├── ico_business_card_bg5.png │ ├── ico_card_email_gray.png │ ├── ico_card_email_white.png │ ├── ico_card_location_gray.png │ ├── ico_card_location_white.png │ ├── ico_card_mobile_gray.png │ ├── ico_card_mobile_white.png │ ├── ico_card_template.png │ ├── ico_card_wechat_gray.png │ ├── ico_card_wechat_white.png │ ├── ico_checked.png │ ├── ico_choose_normal.png │ ├── ico_choosed.png │ ├── ico_close_white.png │ ├── ico_coin.png │ ├── ico_data_center.png │ ├── ico_down.png │ ├── ico_download_pic.png │ ├── ico_fenxiao.png │ ├── ico_gold.png │ ├── ico_haibao.png │ ├── ico_help_back.png │ ├── ico_home.png │ ├── ico_loading_bg.png │ ├── ico_location_gray.png │ ├── ico_logo.png │ ├── ico_mibile_gray.png │ ├── ico_mic.png │ ├── ico_mic_bg.png │ ├── ico_mine_bg.png │ ├── ico_mingpian_haibao.png │ ├── ico_mingpian_style_1.png │ ├── ico_mingpian_style_2.png │ ├── ico_mingpian_style_3.png │ ├── ico_mingpian_style_4.png │ ├── ico_mingpian_style_5.png │ ├── ico_mingpian_style_add.png │ ├── ico_mingpianma.png │ ├── ico_mingpianma_bg.png │ ├── ico_my_client.png │ ├── ico_my_shop.png │ ├── ico_next.png │ ├── ico_next_orange.png │ ├── ico_no_data.png │ ├── ico_no_goods.png │ ├── ico_nocheck.png │ ├── ico_partner.png │ ├── ico_record.png │ ├── ico_record_delete_normal.png │ ├── ico_record_delete_pressed.png │ ├── ico_record_done_normal.png │ ├── ico_record_done_pressed.png │ ├── ico_record_pause.png │ ├── ico_record_retry.png │ ├── ico_record_start.png │ ├── ico_sanjiao_down.png │ ├── ico_sanjiao_up.png │ ├── ico_search.png │ ├── ico_setting_choosed.png │ ├── ico_setting_nochoos.png │ ├── ico_shaixuan.png │ ├── ico_shaixuan_orange.png │ ├── ico_shop.png │ ├── ico_small_camera.png │ ├── ico_tabar_businesscard_normal.png │ ├── ico_tabar_businesscard_pressed.png │ ├── ico_tabar_customer_normal.png │ ├── ico_tabar_customer_pressed.png │ ├── ico_tabar_mine_normal.png │ ├── ico_tabar_mine_pressed.png │ ├── ico_tabar_radarscan_normal.png │ ├── ico_tabar_radarscan_pressed.png │ ├── ico_task.png │ ├── ico_tixian.png │ ├── ico_toolkit.png │ ├── ico_up.png │ ├── ico_up2.png │ ├── ico_wechat.png │ ├── ico_wechat_done.png │ ├── ico_wechat_friend.png │ ├── ico_wechat_gray.png │ ├── ico_wechat_tixian.png │ ├── ico_wenhou_bg.png │ ├── ico_wenhou_home_bg.png │ ├── ico_wenhouyu_bg2.png │ ├── ico_xianshi.png │ ├── ico_xiasanjiao_white.png │ ├── ico_xingqu_renmai.png │ ├── mic_play.gif │ ├── my_guide1_icon.png │ ├── open_tequan.png │ ├── open_tequan_bg.png │ ├── share_card.png │ ├── upload_and_wait.png │ └── view_card.png ├── compoments │ ├── bottom-buton │ │ └── index.tsx │ ├── businesscard-remove-notice │ │ └── index.tsx │ ├── card-style1 │ │ └── index.tsx │ ├── card-style2 │ │ └── index.tsx │ ├── card-style3 │ │ └── index.tsx │ ├── card-style4 │ │ └── index.tsx │ ├── card-style5 │ │ └── index.tsx │ ├── collect-item │ │ └── index.tsx │ ├── company_card │ │ └── index.tsx │ ├── custom-tag │ │ └── index.tsx │ ├── data-center-item │ │ └── index.tsx │ ├── date-time-picker │ │ ├── index.scss │ │ ├── index.tsx │ │ └── utils.ts │ ├── delete-notice │ │ └── index.tsx │ ├── goods-manage-item │ │ └── index.tsx │ ├── goods-remove-notice │ │ └── index.tsx │ ├── goods-shaixuan │ │ └── index.tsx │ ├── guanlian-customer │ │ └── index.tsx │ ├── help-list-item │ │ └── index.tsx │ ├── level-item │ │ └── index.tsx │ ├── linear-gradient-view │ │ ├── index.scss │ │ └── index.tsx │ ├── linear-gradient-view2 │ │ ├── index.scss │ │ └── index.tsx │ ├── list-item │ │ └── index.tsx │ ├── list-item2 │ │ └── index.tsx │ ├── mingpianjia-item │ │ └── index.tsx │ ├── mode-modal │ │ └── index.tsx │ ├── multi_line_text │ │ ├── index.scss │ │ ├── index.tsx │ │ └── index1.scss │ ├── my-modal │ │ ├── index.rn.tsx │ │ └── index.tsx │ ├── my-photo │ │ └── index.tsx │ ├── my_customer_item │ │ └── index.tsx │ ├── navigation_bar │ │ └── index.tsx │ ├── qiehuan-item │ │ └── index.tsx │ ├── safe-area-view │ │ └── index.tsx │ ├── sanjiao │ │ └── index.tsx │ ├── shai-xuan-modal │ │ └── index.tsx │ ├── share-modal │ │ └── index.tsx │ ├── singleline-text │ │ └── index.tsx │ ├── switch-item │ │ └── index.tsx │ ├── taocan-item │ │ └── index.tsx │ ├── task-item │ │ └── index.tsx │ ├── text │ │ ├── index.rn.tsx │ │ └── index.tsx │ ├── tixian-recorder-item │ │ └── index.tsx │ ├── top-header │ │ └── index.tsx │ ├── touchable-button │ │ ├── index.rn.tsx │ │ └── index.tsx │ ├── trace-item │ │ └── index.tsx │ ├── visitor-item │ │ └── index.tsx │ └── wenhou-modal │ │ └── index.tsx ├── const │ └── global.ts ├── index.html ├── pages │ ├── businesscard.tsx │ ├── businesscard │ │ ├── add_businesscard.tsx │ │ ├── choose_industry_tag.tsx │ │ ├── choose_renmai_tag.tsx │ │ ├── component │ │ │ ├── jizhi-card │ │ │ │ └── index.tsx │ │ │ ├── my-business │ │ │ │ └── index.tsx │ │ │ ├── my-goods │ │ │ │ └── index.tsx │ │ │ ├── other-business-card-guide │ │ │ │ └── index.tsx │ │ │ └── personal-info │ │ │ │ └── index.tsx │ │ ├── index.scss │ │ ├── ming_pian_ma.tsx │ │ ├── mingpian_haibao.tsx │ │ ├── mingpianjia.tsx │ │ ├── more_goods.tsx │ │ ├── my_collect.tsx │ │ ├── other_businesscard.tsx │ │ └── qiehuan_businesscard.tsx │ ├── component │ │ ├── business-card-guide1 │ │ │ └── index.tsx │ │ ├── business-card-guide2 │ │ │ └── index.tsx │ │ ├── business-card-guide3 │ │ │ └── index.tsx │ │ ├── business-card │ │ │ └── index.tsx │ │ ├── custom-item │ │ │ └── index.tsx │ │ ├── customer-guide │ │ │ └── index.tsx │ │ ├── leida-guide │ │ │ └── index.tsx │ │ ├── mine_guide1 │ │ │ └── index.tsx │ │ ├── mine_guide2 │ │ │ └── index.tsx │ │ ├── mode-modal │ │ │ └── index.tsx │ │ ├── my-person │ │ │ └── index.tsx │ │ ├── radar-item │ │ │ └── index.tsx │ │ ├── renmai-item │ │ │ └── index.tsx │ │ ├── shai-xuan-modal │ │ │ └── index.tsx │ │ ├── share-invite │ │ │ └── index.tsx │ │ └── share-modal │ │ │ └── index.tsx │ ├── customer.tsx │ ├── customer │ │ ├── LineChart.js │ │ ├── PieChart.js │ │ ├── add_customer.tsx │ │ ├── add_genjin.tsx │ │ ├── add_tags.tsx │ │ ├── ai_analysis.tsx │ │ ├── customer_detail.tsx │ │ ├── customer_remark.tsx │ │ ├── customer_ziliao.tsx │ │ ├── ec-canvas │ │ │ ├── ec-canvas.js │ │ │ ├── ec-canvas.json │ │ │ ├── ec-canvas.wxml │ │ │ ├── ec-canvas.wxss │ │ │ ├── echarts.js │ │ │ └── wx-canvas.js │ │ └── index.scss │ ├── mine.tsx │ ├── mine │ │ ├── about_us.tsx │ │ ├── add_goods.tsx │ │ ├── add_task.scss │ │ ├── add_task.tsx │ │ ├── apply_success.tsx │ │ ├── audio_recorder.tsx │ │ ├── choose_customer.tsx │ │ ├── company_info.tsx │ │ ├── component │ │ │ └── help-navigation-item │ │ │ │ └── index.tsx │ │ ├── contact_way.tsx │ │ ├── data_center.tsx │ │ ├── feedback.tsx │ │ ├── fenxiao_center.tsx │ │ ├── get_renmai.tsx │ │ ├── goods_detail.tsx │ │ ├── goods_manage.tsx │ │ ├── haibao.tsx │ │ ├── help.tsx │ │ ├── how_perform_card.tsx │ │ ├── how_share_card.tsx │ │ ├── index.scss │ │ ├── industry_list.tsx │ │ ├── introduce.tsx │ │ ├── jixu_open.tsx │ │ ├── mingpian_style.tsx │ │ ├── my_customer.tsx │ │ ├── my_edu.tsx │ │ ├── my_home.tsx │ │ ├── my_photo.tsx │ │ ├── my_tags.tsx │ │ ├── my_video.tsx │ │ ├── open_message_notice.tsx │ │ ├── open_shop.tsx │ │ ├── perform_info.tsx │ │ ├── personal_info.tsx │ │ ├── poster_share.tsx │ │ ├── radar_gongneng.tsx │ │ ├── renmai_taocan_detail.tsx │ │ ├── self_intro.tsx │ │ ├── setting_page.tsx │ │ ├── share_goods.tsx │ │ ├── shop_apply.tsx │ │ ├── task_center.tsx │ │ ├── task_detail.tsx │ │ ├── tequan.tsx │ │ ├── tixian.tsx │ │ ├── tixian_page.tsx │ │ ├── tixian_recorder.tsx │ │ ├── tool_box.tsx │ │ ├── update_card_style.tsx │ │ └── view_card.tsx │ ├── radar.tsx │ └── radar │ │ └── radar_detail.tsx ├── reducers │ └── index.ts ├── store │ └── index.ts ├── styles │ └── reset.scss └── utils │ ├── datatool.ts │ ├── redux.ts │ └── style.ts ├── tsconfig.json ├── wechat1.png ├── wechat2.png ├── wechat3.png ├── wechat4.png ├── wechat5.png ├── wechat6.png └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/YaoRenDangGui_Taro.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/.idea/YaoRenDangGui_Taro.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/README.md -------------------------------------------------------------------------------- /config/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/config/dev.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/config/index.js -------------------------------------------------------------------------------- /config/prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/config/prod.js -------------------------------------------------------------------------------- /gh_2371cb04b4b6_258.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/gh_2371cb04b4b6_258.jpg -------------------------------------------------------------------------------- /mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/mock/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/package.json -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/project.config.json -------------------------------------------------------------------------------- /src/actions/business_card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/actions/business_card.ts -------------------------------------------------------------------------------- /src/actions/customer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/actions/customer.ts -------------------------------------------------------------------------------- /src/actions/dict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/actions/dict.ts -------------------------------------------------------------------------------- /src/actions/distribution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/actions/distribution.ts -------------------------------------------------------------------------------- /src/actions/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/actions/file.ts -------------------------------------------------------------------------------- /src/actions/goods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/actions/goods.ts -------------------------------------------------------------------------------- /src/actions/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/actions/login.ts -------------------------------------------------------------------------------- /src/actions/poster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/actions/poster.ts -------------------------------------------------------------------------------- /src/actions/radar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/actions/radar.ts -------------------------------------------------------------------------------- /src/actions/shop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/actions/shop.ts -------------------------------------------------------------------------------- /src/actions/task_center.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/actions/task_center.ts -------------------------------------------------------------------------------- /src/actions/tequan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/actions/tequan.ts -------------------------------------------------------------------------------- /src/actions/visitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/actions/visitor.ts -------------------------------------------------------------------------------- /src/api/httpurl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/api/httpurl.ts -------------------------------------------------------------------------------- /src/api/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/api/request.ts -------------------------------------------------------------------------------- /src/app.scss: -------------------------------------------------------------------------------- 1 | @import 'styles/reset.scss'; 2 | -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/assets/apply_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/apply_success.png -------------------------------------------------------------------------------- /src/assets/create_your_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/create_your_card.png -------------------------------------------------------------------------------- /src/assets/guide_leida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/guide_leida.png -------------------------------------------------------------------------------- /src/assets/guide_line1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/guide_line1.png -------------------------------------------------------------------------------- /src/assets/guide_line2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/guide_line2.png -------------------------------------------------------------------------------- /src/assets/guide_line3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/guide_line3.png -------------------------------------------------------------------------------- /src/assets/guide_line4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/guide_line4.png -------------------------------------------------------------------------------- /src/assets/guide_line5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/guide_line5.png -------------------------------------------------------------------------------- /src/assets/guide_line_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/guide_line_6.png -------------------------------------------------------------------------------- /src/assets/guide_line_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/guide_line_7.png -------------------------------------------------------------------------------- /src/assets/guide_person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/guide_person.png -------------------------------------------------------------------------------- /src/assets/ico_ diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_ diamond.png -------------------------------------------------------------------------------- /src/assets/ico_ platinum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_ platinum.png -------------------------------------------------------------------------------- /src/assets/ico_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_back.png -------------------------------------------------------------------------------- /src/assets/ico_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_back_white.png -------------------------------------------------------------------------------- /src/assets/ico_business_card_bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_business_card_bg1.png -------------------------------------------------------------------------------- /src/assets/ico_business_card_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_business_card_bg2.png -------------------------------------------------------------------------------- /src/assets/ico_business_card_bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_business_card_bg3.png -------------------------------------------------------------------------------- /src/assets/ico_business_card_bg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_business_card_bg4.png -------------------------------------------------------------------------------- /src/assets/ico_business_card_bg5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_business_card_bg5.png -------------------------------------------------------------------------------- /src/assets/ico_card_email_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_card_email_gray.png -------------------------------------------------------------------------------- /src/assets/ico_card_email_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_card_email_white.png -------------------------------------------------------------------------------- /src/assets/ico_card_location_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_card_location_gray.png -------------------------------------------------------------------------------- /src/assets/ico_card_location_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_card_location_white.png -------------------------------------------------------------------------------- /src/assets/ico_card_mobile_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_card_mobile_gray.png -------------------------------------------------------------------------------- /src/assets/ico_card_mobile_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_card_mobile_white.png -------------------------------------------------------------------------------- /src/assets/ico_card_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_card_template.png -------------------------------------------------------------------------------- /src/assets/ico_card_wechat_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_card_wechat_gray.png -------------------------------------------------------------------------------- /src/assets/ico_card_wechat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_card_wechat_white.png -------------------------------------------------------------------------------- /src/assets/ico_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_checked.png -------------------------------------------------------------------------------- /src/assets/ico_choose_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_choose_normal.png -------------------------------------------------------------------------------- /src/assets/ico_choosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_choosed.png -------------------------------------------------------------------------------- /src/assets/ico_close_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_close_white.png -------------------------------------------------------------------------------- /src/assets/ico_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_coin.png -------------------------------------------------------------------------------- /src/assets/ico_data_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_data_center.png -------------------------------------------------------------------------------- /src/assets/ico_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_down.png -------------------------------------------------------------------------------- /src/assets/ico_download_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_download_pic.png -------------------------------------------------------------------------------- /src/assets/ico_fenxiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_fenxiao.png -------------------------------------------------------------------------------- /src/assets/ico_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_gold.png -------------------------------------------------------------------------------- /src/assets/ico_haibao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_haibao.png -------------------------------------------------------------------------------- /src/assets/ico_help_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_help_back.png -------------------------------------------------------------------------------- /src/assets/ico_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_home.png -------------------------------------------------------------------------------- /src/assets/ico_loading_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_loading_bg.png -------------------------------------------------------------------------------- /src/assets/ico_location_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_location_gray.png -------------------------------------------------------------------------------- /src/assets/ico_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_logo.png -------------------------------------------------------------------------------- /src/assets/ico_mibile_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_mibile_gray.png -------------------------------------------------------------------------------- /src/assets/ico_mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_mic.png -------------------------------------------------------------------------------- /src/assets/ico_mic_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_mic_bg.png -------------------------------------------------------------------------------- /src/assets/ico_mine_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_mine_bg.png -------------------------------------------------------------------------------- /src/assets/ico_mingpian_haibao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_mingpian_haibao.png -------------------------------------------------------------------------------- /src/assets/ico_mingpian_style_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_mingpian_style_1.png -------------------------------------------------------------------------------- /src/assets/ico_mingpian_style_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_mingpian_style_2.png -------------------------------------------------------------------------------- /src/assets/ico_mingpian_style_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_mingpian_style_3.png -------------------------------------------------------------------------------- /src/assets/ico_mingpian_style_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_mingpian_style_4.png -------------------------------------------------------------------------------- /src/assets/ico_mingpian_style_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_mingpian_style_5.png -------------------------------------------------------------------------------- /src/assets/ico_mingpian_style_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_mingpian_style_add.png -------------------------------------------------------------------------------- /src/assets/ico_mingpianma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_mingpianma.png -------------------------------------------------------------------------------- /src/assets/ico_mingpianma_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_mingpianma_bg.png -------------------------------------------------------------------------------- /src/assets/ico_my_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_my_client.png -------------------------------------------------------------------------------- /src/assets/ico_my_shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_my_shop.png -------------------------------------------------------------------------------- /src/assets/ico_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_next.png -------------------------------------------------------------------------------- /src/assets/ico_next_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_next_orange.png -------------------------------------------------------------------------------- /src/assets/ico_no_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_no_data.png -------------------------------------------------------------------------------- /src/assets/ico_no_goods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_no_goods.png -------------------------------------------------------------------------------- /src/assets/ico_nocheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_nocheck.png -------------------------------------------------------------------------------- /src/assets/ico_partner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_partner.png -------------------------------------------------------------------------------- /src/assets/ico_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_record.png -------------------------------------------------------------------------------- /src/assets/ico_record_delete_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_record_delete_normal.png -------------------------------------------------------------------------------- /src/assets/ico_record_delete_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_record_delete_pressed.png -------------------------------------------------------------------------------- /src/assets/ico_record_done_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_record_done_normal.png -------------------------------------------------------------------------------- /src/assets/ico_record_done_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_record_done_pressed.png -------------------------------------------------------------------------------- /src/assets/ico_record_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_record_pause.png -------------------------------------------------------------------------------- /src/assets/ico_record_retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_record_retry.png -------------------------------------------------------------------------------- /src/assets/ico_record_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_record_start.png -------------------------------------------------------------------------------- /src/assets/ico_sanjiao_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_sanjiao_down.png -------------------------------------------------------------------------------- /src/assets/ico_sanjiao_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_sanjiao_up.png -------------------------------------------------------------------------------- /src/assets/ico_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_search.png -------------------------------------------------------------------------------- /src/assets/ico_setting_choosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_setting_choosed.png -------------------------------------------------------------------------------- /src/assets/ico_setting_nochoos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_setting_nochoos.png -------------------------------------------------------------------------------- /src/assets/ico_shaixuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_shaixuan.png -------------------------------------------------------------------------------- /src/assets/ico_shaixuan_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_shaixuan_orange.png -------------------------------------------------------------------------------- /src/assets/ico_shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_shop.png -------------------------------------------------------------------------------- /src/assets/ico_small_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_small_camera.png -------------------------------------------------------------------------------- /src/assets/ico_tabar_businesscard_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_tabar_businesscard_normal.png -------------------------------------------------------------------------------- /src/assets/ico_tabar_businesscard_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_tabar_businesscard_pressed.png -------------------------------------------------------------------------------- /src/assets/ico_tabar_customer_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_tabar_customer_normal.png -------------------------------------------------------------------------------- /src/assets/ico_tabar_customer_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_tabar_customer_pressed.png -------------------------------------------------------------------------------- /src/assets/ico_tabar_mine_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_tabar_mine_normal.png -------------------------------------------------------------------------------- /src/assets/ico_tabar_mine_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_tabar_mine_pressed.png -------------------------------------------------------------------------------- /src/assets/ico_tabar_radarscan_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_tabar_radarscan_normal.png -------------------------------------------------------------------------------- /src/assets/ico_tabar_radarscan_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_tabar_radarscan_pressed.png -------------------------------------------------------------------------------- /src/assets/ico_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_task.png -------------------------------------------------------------------------------- /src/assets/ico_tixian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_tixian.png -------------------------------------------------------------------------------- /src/assets/ico_toolkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_toolkit.png -------------------------------------------------------------------------------- /src/assets/ico_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_up.png -------------------------------------------------------------------------------- /src/assets/ico_up2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_up2.png -------------------------------------------------------------------------------- /src/assets/ico_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_wechat.png -------------------------------------------------------------------------------- /src/assets/ico_wechat_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_wechat_done.png -------------------------------------------------------------------------------- /src/assets/ico_wechat_friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_wechat_friend.png -------------------------------------------------------------------------------- /src/assets/ico_wechat_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_wechat_gray.png -------------------------------------------------------------------------------- /src/assets/ico_wechat_tixian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_wechat_tixian.png -------------------------------------------------------------------------------- /src/assets/ico_wenhou_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_wenhou_bg.png -------------------------------------------------------------------------------- /src/assets/ico_wenhou_home_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_wenhou_home_bg.png -------------------------------------------------------------------------------- /src/assets/ico_wenhouyu_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_wenhouyu_bg2.png -------------------------------------------------------------------------------- /src/assets/ico_xianshi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_xianshi.png -------------------------------------------------------------------------------- /src/assets/ico_xiasanjiao_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_xiasanjiao_white.png -------------------------------------------------------------------------------- /src/assets/ico_xingqu_renmai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/ico_xingqu_renmai.png -------------------------------------------------------------------------------- /src/assets/mic_play.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/mic_play.gif -------------------------------------------------------------------------------- /src/assets/my_guide1_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/my_guide1_icon.png -------------------------------------------------------------------------------- /src/assets/open_tequan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/open_tequan.png -------------------------------------------------------------------------------- /src/assets/open_tequan_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/open_tequan_bg.png -------------------------------------------------------------------------------- /src/assets/share_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/share_card.png -------------------------------------------------------------------------------- /src/assets/upload_and_wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/upload_and_wait.png -------------------------------------------------------------------------------- /src/assets/view_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/assets/view_card.png -------------------------------------------------------------------------------- /src/compoments/bottom-buton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/bottom-buton/index.tsx -------------------------------------------------------------------------------- /src/compoments/businesscard-remove-notice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/businesscard-remove-notice/index.tsx -------------------------------------------------------------------------------- /src/compoments/card-style1/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/card-style1/index.tsx -------------------------------------------------------------------------------- /src/compoments/card-style2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/card-style2/index.tsx -------------------------------------------------------------------------------- /src/compoments/card-style3/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/card-style3/index.tsx -------------------------------------------------------------------------------- /src/compoments/card-style4/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/card-style4/index.tsx -------------------------------------------------------------------------------- /src/compoments/card-style5/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/card-style5/index.tsx -------------------------------------------------------------------------------- /src/compoments/collect-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/collect-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/company_card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/company_card/index.tsx -------------------------------------------------------------------------------- /src/compoments/custom-tag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/custom-tag/index.tsx -------------------------------------------------------------------------------- /src/compoments/data-center-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/data-center-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/date-time-picker/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/date-time-picker/index.scss -------------------------------------------------------------------------------- /src/compoments/date-time-picker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/date-time-picker/index.tsx -------------------------------------------------------------------------------- /src/compoments/date-time-picker/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/date-time-picker/utils.ts -------------------------------------------------------------------------------- /src/compoments/delete-notice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/delete-notice/index.tsx -------------------------------------------------------------------------------- /src/compoments/goods-manage-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/goods-manage-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/goods-remove-notice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/goods-remove-notice/index.tsx -------------------------------------------------------------------------------- /src/compoments/goods-shaixuan/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/goods-shaixuan/index.tsx -------------------------------------------------------------------------------- /src/compoments/guanlian-customer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/guanlian-customer/index.tsx -------------------------------------------------------------------------------- /src/compoments/help-list-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/help-list-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/level-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/level-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/linear-gradient-view/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/linear-gradient-view/index.scss -------------------------------------------------------------------------------- /src/compoments/linear-gradient-view/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/linear-gradient-view/index.tsx -------------------------------------------------------------------------------- /src/compoments/linear-gradient-view2/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/linear-gradient-view2/index.scss -------------------------------------------------------------------------------- /src/compoments/linear-gradient-view2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/linear-gradient-view2/index.tsx -------------------------------------------------------------------------------- /src/compoments/list-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/list-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/list-item2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/list-item2/index.tsx -------------------------------------------------------------------------------- /src/compoments/mingpianjia-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/mingpianjia-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/mode-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/mode-modal/index.tsx -------------------------------------------------------------------------------- /src/compoments/multi_line_text/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/multi_line_text/index.scss -------------------------------------------------------------------------------- /src/compoments/multi_line_text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/multi_line_text/index.tsx -------------------------------------------------------------------------------- /src/compoments/multi_line_text/index1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/multi_line_text/index1.scss -------------------------------------------------------------------------------- /src/compoments/my-modal/index.rn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/my-modal/index.rn.tsx -------------------------------------------------------------------------------- /src/compoments/my-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/my-modal/index.tsx -------------------------------------------------------------------------------- /src/compoments/my-photo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/my-photo/index.tsx -------------------------------------------------------------------------------- /src/compoments/my_customer_item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/my_customer_item/index.tsx -------------------------------------------------------------------------------- /src/compoments/navigation_bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/navigation_bar/index.tsx -------------------------------------------------------------------------------- /src/compoments/qiehuan-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/qiehuan-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/safe-area-view/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/safe-area-view/index.tsx -------------------------------------------------------------------------------- /src/compoments/sanjiao/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/sanjiao/index.tsx -------------------------------------------------------------------------------- /src/compoments/shai-xuan-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/shai-xuan-modal/index.tsx -------------------------------------------------------------------------------- /src/compoments/share-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/share-modal/index.tsx -------------------------------------------------------------------------------- /src/compoments/singleline-text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/singleline-text/index.tsx -------------------------------------------------------------------------------- /src/compoments/switch-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/switch-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/taocan-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/taocan-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/task-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/task-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/text/index.rn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/text/index.rn.tsx -------------------------------------------------------------------------------- /src/compoments/text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/text/index.tsx -------------------------------------------------------------------------------- /src/compoments/tixian-recorder-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/tixian-recorder-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/top-header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/top-header/index.tsx -------------------------------------------------------------------------------- /src/compoments/touchable-button/index.rn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/touchable-button/index.rn.tsx -------------------------------------------------------------------------------- /src/compoments/touchable-button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/touchable-button/index.tsx -------------------------------------------------------------------------------- /src/compoments/trace-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/trace-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/visitor-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/visitor-item/index.tsx -------------------------------------------------------------------------------- /src/compoments/wenhou-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/compoments/wenhou-modal/index.tsx -------------------------------------------------------------------------------- /src/const/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/const/global.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/index.html -------------------------------------------------------------------------------- /src/pages/businesscard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/add_businesscard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/add_businesscard.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/choose_industry_tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/choose_industry_tag.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/choose_renmai_tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/choose_renmai_tag.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/component/jizhi-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/component/jizhi-card/index.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/component/my-business/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/component/my-business/index.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/component/my-goods/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/component/my-goods/index.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/component/other-business-card-guide/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/component/other-business-card-guide/index.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/component/personal-info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/component/personal-info/index.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/index.scss -------------------------------------------------------------------------------- /src/pages/businesscard/ming_pian_ma.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/ming_pian_ma.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/mingpian_haibao.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/mingpian_haibao.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/mingpianjia.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/mingpianjia.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/more_goods.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/more_goods.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/my_collect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/my_collect.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/other_businesscard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/other_businesscard.tsx -------------------------------------------------------------------------------- /src/pages/businesscard/qiehuan_businesscard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/businesscard/qiehuan_businesscard.tsx -------------------------------------------------------------------------------- /src/pages/component/business-card-guide1/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/business-card-guide1/index.tsx -------------------------------------------------------------------------------- /src/pages/component/business-card-guide2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/business-card-guide2/index.tsx -------------------------------------------------------------------------------- /src/pages/component/business-card-guide3/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/business-card-guide3/index.tsx -------------------------------------------------------------------------------- /src/pages/component/business-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/business-card/index.tsx -------------------------------------------------------------------------------- /src/pages/component/custom-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/custom-item/index.tsx -------------------------------------------------------------------------------- /src/pages/component/customer-guide/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/customer-guide/index.tsx -------------------------------------------------------------------------------- /src/pages/component/leida-guide/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/leida-guide/index.tsx -------------------------------------------------------------------------------- /src/pages/component/mine_guide1/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/mine_guide1/index.tsx -------------------------------------------------------------------------------- /src/pages/component/mine_guide2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/mine_guide2/index.tsx -------------------------------------------------------------------------------- /src/pages/component/mode-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/mode-modal/index.tsx -------------------------------------------------------------------------------- /src/pages/component/my-person/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/my-person/index.tsx -------------------------------------------------------------------------------- /src/pages/component/radar-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/radar-item/index.tsx -------------------------------------------------------------------------------- /src/pages/component/renmai-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/renmai-item/index.tsx -------------------------------------------------------------------------------- /src/pages/component/shai-xuan-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/shai-xuan-modal/index.tsx -------------------------------------------------------------------------------- /src/pages/component/share-invite/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/share-invite/index.tsx -------------------------------------------------------------------------------- /src/pages/component/share-modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/component/share-modal/index.tsx -------------------------------------------------------------------------------- /src/pages/customer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer.tsx -------------------------------------------------------------------------------- /src/pages/customer/LineChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/LineChart.js -------------------------------------------------------------------------------- /src/pages/customer/PieChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/PieChart.js -------------------------------------------------------------------------------- /src/pages/customer/add_customer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/add_customer.tsx -------------------------------------------------------------------------------- /src/pages/customer/add_genjin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/add_genjin.tsx -------------------------------------------------------------------------------- /src/pages/customer/add_tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/add_tags.tsx -------------------------------------------------------------------------------- /src/pages/customer/ai_analysis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/ai_analysis.tsx -------------------------------------------------------------------------------- /src/pages/customer/customer_detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/customer_detail.tsx -------------------------------------------------------------------------------- /src/pages/customer/customer_remark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/customer_remark.tsx -------------------------------------------------------------------------------- /src/pages/customer/customer_ziliao.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/customer_ziliao.tsx -------------------------------------------------------------------------------- /src/pages/customer/ec-canvas/ec-canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/ec-canvas/ec-canvas.js -------------------------------------------------------------------------------- /src/pages/customer/ec-canvas/ec-canvas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/ec-canvas/ec-canvas.json -------------------------------------------------------------------------------- /src/pages/customer/ec-canvas/ec-canvas.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/ec-canvas/ec-canvas.wxml -------------------------------------------------------------------------------- /src/pages/customer/ec-canvas/ec-canvas.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/ec-canvas/ec-canvas.wxss -------------------------------------------------------------------------------- /src/pages/customer/ec-canvas/echarts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/ec-canvas/echarts.js -------------------------------------------------------------------------------- /src/pages/customer/ec-canvas/wx-canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/ec-canvas/wx-canvas.js -------------------------------------------------------------------------------- /src/pages/customer/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/customer/index.scss -------------------------------------------------------------------------------- /src/pages/mine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine.tsx -------------------------------------------------------------------------------- /src/pages/mine/about_us.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/about_us.tsx -------------------------------------------------------------------------------- /src/pages/mine/add_goods.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/add_goods.tsx -------------------------------------------------------------------------------- /src/pages/mine/add_task.scss: -------------------------------------------------------------------------------- 1 | .my-class{ 2 | width: 100%; 3 | background: white; 4 | } 5 | -------------------------------------------------------------------------------- /src/pages/mine/add_task.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/add_task.tsx -------------------------------------------------------------------------------- /src/pages/mine/apply_success.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/apply_success.tsx -------------------------------------------------------------------------------- /src/pages/mine/audio_recorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/audio_recorder.tsx -------------------------------------------------------------------------------- /src/pages/mine/choose_customer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/choose_customer.tsx -------------------------------------------------------------------------------- /src/pages/mine/company_info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/company_info.tsx -------------------------------------------------------------------------------- /src/pages/mine/component/help-navigation-item/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/component/help-navigation-item/index.tsx -------------------------------------------------------------------------------- /src/pages/mine/contact_way.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/contact_way.tsx -------------------------------------------------------------------------------- /src/pages/mine/data_center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/data_center.tsx -------------------------------------------------------------------------------- /src/pages/mine/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/feedback.tsx -------------------------------------------------------------------------------- /src/pages/mine/fenxiao_center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/fenxiao_center.tsx -------------------------------------------------------------------------------- /src/pages/mine/get_renmai.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/get_renmai.tsx -------------------------------------------------------------------------------- /src/pages/mine/goods_detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/goods_detail.tsx -------------------------------------------------------------------------------- /src/pages/mine/goods_manage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/goods_manage.tsx -------------------------------------------------------------------------------- /src/pages/mine/haibao.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/haibao.tsx -------------------------------------------------------------------------------- /src/pages/mine/help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/help.tsx -------------------------------------------------------------------------------- /src/pages/mine/how_perform_card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/how_perform_card.tsx -------------------------------------------------------------------------------- /src/pages/mine/how_share_card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/how_share_card.tsx -------------------------------------------------------------------------------- /src/pages/mine/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/index.scss -------------------------------------------------------------------------------- /src/pages/mine/industry_list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/industry_list.tsx -------------------------------------------------------------------------------- /src/pages/mine/introduce.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/introduce.tsx -------------------------------------------------------------------------------- /src/pages/mine/jixu_open.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/jixu_open.tsx -------------------------------------------------------------------------------- /src/pages/mine/mingpian_style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/mingpian_style.tsx -------------------------------------------------------------------------------- /src/pages/mine/my_customer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/my_customer.tsx -------------------------------------------------------------------------------- /src/pages/mine/my_edu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/my_edu.tsx -------------------------------------------------------------------------------- /src/pages/mine/my_home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/my_home.tsx -------------------------------------------------------------------------------- /src/pages/mine/my_photo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/my_photo.tsx -------------------------------------------------------------------------------- /src/pages/mine/my_tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/my_tags.tsx -------------------------------------------------------------------------------- /src/pages/mine/my_video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/my_video.tsx -------------------------------------------------------------------------------- /src/pages/mine/open_message_notice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/open_message_notice.tsx -------------------------------------------------------------------------------- /src/pages/mine/open_shop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/open_shop.tsx -------------------------------------------------------------------------------- /src/pages/mine/perform_info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/perform_info.tsx -------------------------------------------------------------------------------- /src/pages/mine/personal_info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/personal_info.tsx -------------------------------------------------------------------------------- /src/pages/mine/poster_share.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/poster_share.tsx -------------------------------------------------------------------------------- /src/pages/mine/radar_gongneng.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/radar_gongneng.tsx -------------------------------------------------------------------------------- /src/pages/mine/renmai_taocan_detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/renmai_taocan_detail.tsx -------------------------------------------------------------------------------- /src/pages/mine/self_intro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/self_intro.tsx -------------------------------------------------------------------------------- /src/pages/mine/setting_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/setting_page.tsx -------------------------------------------------------------------------------- /src/pages/mine/share_goods.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/share_goods.tsx -------------------------------------------------------------------------------- /src/pages/mine/shop_apply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/shop_apply.tsx -------------------------------------------------------------------------------- /src/pages/mine/task_center.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/task_center.tsx -------------------------------------------------------------------------------- /src/pages/mine/task_detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/task_detail.tsx -------------------------------------------------------------------------------- /src/pages/mine/tequan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/tequan.tsx -------------------------------------------------------------------------------- /src/pages/mine/tixian.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/tixian.tsx -------------------------------------------------------------------------------- /src/pages/mine/tixian_page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/tixian_page.tsx -------------------------------------------------------------------------------- /src/pages/mine/tixian_recorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/tixian_recorder.tsx -------------------------------------------------------------------------------- /src/pages/mine/tool_box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/tool_box.tsx -------------------------------------------------------------------------------- /src/pages/mine/update_card_style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/update_card_style.tsx -------------------------------------------------------------------------------- /src/pages/mine/view_card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/mine/view_card.tsx -------------------------------------------------------------------------------- /src/pages/radar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/radar.tsx -------------------------------------------------------------------------------- /src/pages/radar/radar_detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/pages/radar/radar_detail.tsx -------------------------------------------------------------------------------- /src/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/reducers/index.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/styles/reset.scss -------------------------------------------------------------------------------- /src/utils/datatool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/utils/datatool.ts -------------------------------------------------------------------------------- /src/utils/redux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/utils/redux.ts -------------------------------------------------------------------------------- /src/utils/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/src/utils/style.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wechat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/wechat1.png -------------------------------------------------------------------------------- /wechat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/wechat2.png -------------------------------------------------------------------------------- /wechat3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/wechat3.png -------------------------------------------------------------------------------- /wechat4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/wechat4.png -------------------------------------------------------------------------------- /wechat5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/wechat5.png -------------------------------------------------------------------------------- /wechat6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/wechat6.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bozaigao/BusinessCard/HEAD/yarn.lock --------------------------------------------------------------------------------