├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── app.json ├── app.wxss ├── github-image ├── qrcode.jpg └── qweather.png ├── image ├── email.png ├── github.png ├── icon │ ├── icon-arrow.png │ ├── icon-danger.png │ ├── icon-fixed-position.png │ ├── icon-question.png │ ├── icon-refresh.png │ ├── icon-search-grey.png │ └── icon-search.png ├── tab-icon │ ├── tool-hl.png │ ├── tool.png │ ├── weather-hl.png │ └── weather.png ├── weather-city │ ├── cloudy--day.png │ ├── haze--day.png │ ├── rain--day.png │ └── snow--day.png ├── weather-icon │ ├── 100.png │ ├── 101.png │ ├── 102.png │ ├── 103.png │ ├── 104.png │ ├── 150.png │ ├── 151.png │ ├── 152.png │ ├── 153.png │ ├── 154.png │ ├── 300.png │ ├── 301.png │ ├── 302.png │ ├── 303.png │ ├── 304.png │ ├── 305.png │ ├── 306.png │ ├── 307.png │ ├── 308.png │ ├── 309.png │ ├── 310.png │ ├── 311.png │ ├── 312.png │ ├── 313.png │ ├── 314.png │ ├── 315.png │ ├── 316.png │ ├── 317.png │ ├── 318.png │ ├── 350.png │ ├── 351.png │ ├── 399.png │ ├── 400.png │ ├── 401.png │ ├── 402.png │ ├── 403.png │ ├── 404.png │ ├── 405.png │ ├── 406.png │ ├── 407.png │ ├── 408.png │ ├── 409.png │ ├── 410.png │ ├── 499.png │ ├── 500.png │ ├── 501.png │ ├── 502.png │ ├── 503.png │ └── 504.png ├── weather.png ├── wechat-fill.png ├── wechat.jpg └── wechat.png ├── pages ├── components │ ├── add-tips-main │ │ ├── assets │ │ │ └── cancle.svg │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── ec-canvas │ │ ├── ec-canvas.js │ │ ├── ec-canvas.json │ │ ├── ec-canvas.wxml │ │ ├── ec-canvas.wxss │ │ ├── echarts.js │ │ └── wx-canvas.js │ ├── icon │ │ ├── index.js │ │ ├── index.json │ │ ├── index.wxml │ │ └── index.wxss │ ├── loading │ │ ├── loading.js │ │ ├── loading.json │ │ ├── loading.wxml │ │ └── loading.wxss │ └── tooltip │ │ ├── tooltip.js │ │ ├── tooltip.json │ │ ├── tooltip.wxml │ │ └── tooltip.wxss ├── finance │ ├── finance.js │ ├── finance.json │ ├── finance.wxml │ ├── finance.wxss │ └── func │ │ ├── func.js │ │ ├── func.json │ │ ├── func.wxml │ │ └── func.wxss ├── index.wxss ├── mortgage │ ├── detail │ │ ├── detail.js │ │ ├── detail.json │ │ ├── detail.wxml │ │ └── detail.wxss │ ├── mortgage.js │ ├── mortgage.json │ ├── mortgage.wxml │ └── mortgage.wxss ├── setting │ ├── about │ │ ├── about.js │ │ ├── about.json │ │ ├── about.wxml │ │ └── about.wxss │ ├── setting.js │ ├── setting.json │ ├── setting.wxml │ └── setting.wxss ├── weather │ ├── city │ │ ├── city.js │ │ ├── city.json │ │ ├── city.wxml │ │ └── city.wxss │ ├── components │ │ ├── daily7 │ │ │ ├── daily7.js │ │ │ ├── daily7.json │ │ │ ├── daily7.wxml │ │ │ └── daily7.wxss │ │ └── hourly24 │ │ │ ├── hourly24.js │ │ │ ├── hourly24.json │ │ │ ├── hourly24.wxml │ │ │ └── hourly24.wxss │ ├── days30 │ │ ├── data.js │ │ ├── days30.js │ │ ├── days30.json │ │ ├── days30.wxml │ │ └── days30.wxss │ ├── weather.js │ ├── weather.json │ ├── weather.wxml │ └── weather.wxss └── wuxian-yijin │ ├── wxyj.js │ ├── wxyj.json │ ├── wxyj.wxml │ └── wxyj.wxss ├── project.config.json ├── project.private.config.json ├── service └── request.js ├── style ├── base │ └── reset.wxss ├── weui.wxss └── widget │ ├── weui-agree │ └── weui-agree.wxss │ ├── weui-animate │ └── weui-animate.wxss │ ├── weui-button │ └── weui-button.wxss │ ├── weui-cell │ ├── weui-access.wxss │ ├── weui-cell.wxss │ ├── weui-check.wxss │ ├── weui-form.wxss │ ├── weui-form │ │ ├── weui-form-preview.wxss │ │ ├── weui-form_common.wxss │ │ ├── weui-select.wxss │ │ └── weui-vcode.wxss │ ├── weui-switch.wxss │ └── weui-uploader.wxss │ ├── weui-flex │ └── weui-flex.wxss │ ├── weui-footer │ └── weui-footer.wxss │ ├── weui-grid │ └── weui-grid.wxss │ ├── weui-loading │ └── weui-loading.wxss │ ├── weui-media-box │ └── weui-media-box.wxss │ ├── weui-page │ ├── weui-article.wxss │ └── weui-msg.wxss │ ├── weui-panel │ └── weui-panel.wxss │ ├── weui-progress │ └── weui-progress.wxss │ ├── weui-searchbar │ └── weui-searchbar.wxss │ ├── weui-tab │ ├── weui-navbar.wxss │ └── weui-tab.wxss │ └── weui-tips │ ├── weui-badge.wxss │ └── weui-loadmore.wxss └── utils ├── api.js ├── calculatorForHouseLoan.js ├── constant.js ├── finance.js ├── system.js ├── type.js └── util.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/app.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/app.json -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/app.wxss -------------------------------------------------------------------------------- /github-image/qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/github-image/qrcode.jpg -------------------------------------------------------------------------------- /github-image/qweather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/github-image/qweather.png -------------------------------------------------------------------------------- /image/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/email.png -------------------------------------------------------------------------------- /image/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/github.png -------------------------------------------------------------------------------- /image/icon/icon-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/icon/icon-arrow.png -------------------------------------------------------------------------------- /image/icon/icon-danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/icon/icon-danger.png -------------------------------------------------------------------------------- /image/icon/icon-fixed-position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/icon/icon-fixed-position.png -------------------------------------------------------------------------------- /image/icon/icon-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/icon/icon-question.png -------------------------------------------------------------------------------- /image/icon/icon-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/icon/icon-refresh.png -------------------------------------------------------------------------------- /image/icon/icon-search-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/icon/icon-search-grey.png -------------------------------------------------------------------------------- /image/icon/icon-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/icon/icon-search.png -------------------------------------------------------------------------------- /image/tab-icon/tool-hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/tab-icon/tool-hl.png -------------------------------------------------------------------------------- /image/tab-icon/tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/tab-icon/tool.png -------------------------------------------------------------------------------- /image/tab-icon/weather-hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/tab-icon/weather-hl.png -------------------------------------------------------------------------------- /image/tab-icon/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/tab-icon/weather.png -------------------------------------------------------------------------------- /image/weather-city/cloudy--day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-city/cloudy--day.png -------------------------------------------------------------------------------- /image/weather-city/haze--day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-city/haze--day.png -------------------------------------------------------------------------------- /image/weather-city/rain--day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-city/rain--day.png -------------------------------------------------------------------------------- /image/weather-city/snow--day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-city/snow--day.png -------------------------------------------------------------------------------- /image/weather-icon/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/100.png -------------------------------------------------------------------------------- /image/weather-icon/101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/101.png -------------------------------------------------------------------------------- /image/weather-icon/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/102.png -------------------------------------------------------------------------------- /image/weather-icon/103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/103.png -------------------------------------------------------------------------------- /image/weather-icon/104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/104.png -------------------------------------------------------------------------------- /image/weather-icon/150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/150.png -------------------------------------------------------------------------------- /image/weather-icon/151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/151.png -------------------------------------------------------------------------------- /image/weather-icon/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/152.png -------------------------------------------------------------------------------- /image/weather-icon/153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/153.png -------------------------------------------------------------------------------- /image/weather-icon/154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/154.png -------------------------------------------------------------------------------- /image/weather-icon/300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/300.png -------------------------------------------------------------------------------- /image/weather-icon/301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/301.png -------------------------------------------------------------------------------- /image/weather-icon/302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/302.png -------------------------------------------------------------------------------- /image/weather-icon/303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/303.png -------------------------------------------------------------------------------- /image/weather-icon/304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/304.png -------------------------------------------------------------------------------- /image/weather-icon/305.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/305.png -------------------------------------------------------------------------------- /image/weather-icon/306.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/306.png -------------------------------------------------------------------------------- /image/weather-icon/307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/307.png -------------------------------------------------------------------------------- /image/weather-icon/308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/308.png -------------------------------------------------------------------------------- /image/weather-icon/309.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/309.png -------------------------------------------------------------------------------- /image/weather-icon/310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/310.png -------------------------------------------------------------------------------- /image/weather-icon/311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/311.png -------------------------------------------------------------------------------- /image/weather-icon/312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/312.png -------------------------------------------------------------------------------- /image/weather-icon/313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/313.png -------------------------------------------------------------------------------- /image/weather-icon/314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/314.png -------------------------------------------------------------------------------- /image/weather-icon/315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/315.png -------------------------------------------------------------------------------- /image/weather-icon/316.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/316.png -------------------------------------------------------------------------------- /image/weather-icon/317.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/317.png -------------------------------------------------------------------------------- /image/weather-icon/318.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/318.png -------------------------------------------------------------------------------- /image/weather-icon/350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/350.png -------------------------------------------------------------------------------- /image/weather-icon/351.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/351.png -------------------------------------------------------------------------------- /image/weather-icon/399.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/399.png -------------------------------------------------------------------------------- /image/weather-icon/400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/400.png -------------------------------------------------------------------------------- /image/weather-icon/401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/401.png -------------------------------------------------------------------------------- /image/weather-icon/402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/402.png -------------------------------------------------------------------------------- /image/weather-icon/403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/403.png -------------------------------------------------------------------------------- /image/weather-icon/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/404.png -------------------------------------------------------------------------------- /image/weather-icon/405.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/405.png -------------------------------------------------------------------------------- /image/weather-icon/406.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/406.png -------------------------------------------------------------------------------- /image/weather-icon/407.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/407.png -------------------------------------------------------------------------------- /image/weather-icon/408.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/408.png -------------------------------------------------------------------------------- /image/weather-icon/409.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/409.png -------------------------------------------------------------------------------- /image/weather-icon/410.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/410.png -------------------------------------------------------------------------------- /image/weather-icon/499.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/499.png -------------------------------------------------------------------------------- /image/weather-icon/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/500.png -------------------------------------------------------------------------------- /image/weather-icon/501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/501.png -------------------------------------------------------------------------------- /image/weather-icon/502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/502.png -------------------------------------------------------------------------------- /image/weather-icon/503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/503.png -------------------------------------------------------------------------------- /image/weather-icon/504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather-icon/504.png -------------------------------------------------------------------------------- /image/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/weather.png -------------------------------------------------------------------------------- /image/wechat-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/wechat-fill.png -------------------------------------------------------------------------------- /image/wechat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/wechat.jpg -------------------------------------------------------------------------------- /image/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/image/wechat.png -------------------------------------------------------------------------------- /pages/components/add-tips-main/assets/cancle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/add-tips-main/assets/cancle.svg -------------------------------------------------------------------------------- /pages/components/add-tips-main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/add-tips-main/index.js -------------------------------------------------------------------------------- /pages/components/add-tips-main/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/add-tips-main/index.json -------------------------------------------------------------------------------- /pages/components/add-tips-main/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/add-tips-main/index.wxml -------------------------------------------------------------------------------- /pages/components/add-tips-main/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/add-tips-main/index.wxss -------------------------------------------------------------------------------- /pages/components/ec-canvas/ec-canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/ec-canvas/ec-canvas.js -------------------------------------------------------------------------------- /pages/components/ec-canvas/ec-canvas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/ec-canvas/ec-canvas.json -------------------------------------------------------------------------------- /pages/components/ec-canvas/ec-canvas.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/ec-canvas/ec-canvas.wxml -------------------------------------------------------------------------------- /pages/components/ec-canvas/ec-canvas.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/ec-canvas/ec-canvas.wxss -------------------------------------------------------------------------------- /pages/components/ec-canvas/echarts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/ec-canvas/echarts.js -------------------------------------------------------------------------------- /pages/components/ec-canvas/wx-canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/ec-canvas/wx-canvas.js -------------------------------------------------------------------------------- /pages/components/icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/icon/index.js -------------------------------------------------------------------------------- /pages/components/icon/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /pages/components/icon/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/icon/index.wxml -------------------------------------------------------------------------------- /pages/components/icon/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/icon/index.wxss -------------------------------------------------------------------------------- /pages/components/loading/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/loading/loading.js -------------------------------------------------------------------------------- /pages/components/loading/loading.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /pages/components/loading/loading.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/loading/loading.wxml -------------------------------------------------------------------------------- /pages/components/loading/loading.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/loading/loading.wxss -------------------------------------------------------------------------------- /pages/components/tooltip/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/tooltip/tooltip.js -------------------------------------------------------------------------------- /pages/components/tooltip/tooltip.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } 4 | -------------------------------------------------------------------------------- /pages/components/tooltip/tooltip.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/tooltip/tooltip.wxml -------------------------------------------------------------------------------- /pages/components/tooltip/tooltip.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/components/tooltip/tooltip.wxss -------------------------------------------------------------------------------- /pages/finance/finance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/finance/finance.js -------------------------------------------------------------------------------- /pages/finance/finance.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "金融公式" 3 | } -------------------------------------------------------------------------------- /pages/finance/finance.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/finance/finance.wxml -------------------------------------------------------------------------------- /pages/finance/finance.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/finance/finance.wxss -------------------------------------------------------------------------------- /pages/finance/func/func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/finance/func/func.js -------------------------------------------------------------------------------- /pages/finance/func/func.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /pages/finance/func/func.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/finance/func/func.wxml -------------------------------------------------------------------------------- /pages/finance/func/func.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/finance/func/func.wxss -------------------------------------------------------------------------------- /pages/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/index.wxss -------------------------------------------------------------------------------- /pages/mortgage/detail/detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/mortgage/detail/detail.js -------------------------------------------------------------------------------- /pages/mortgage/detail/detail.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "房贷详情" 3 | } -------------------------------------------------------------------------------- /pages/mortgage/detail/detail.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/mortgage/detail/detail.wxml -------------------------------------------------------------------------------- /pages/mortgage/detail/detail.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/mortgage/detail/detail.wxss -------------------------------------------------------------------------------- /pages/mortgage/mortgage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/mortgage/mortgage.js -------------------------------------------------------------------------------- /pages/mortgage/mortgage.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "房贷计算" 3 | } -------------------------------------------------------------------------------- /pages/mortgage/mortgage.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/mortgage/mortgage.wxml -------------------------------------------------------------------------------- /pages/mortgage/mortgage.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/mortgage/mortgage.wxss -------------------------------------------------------------------------------- /pages/setting/about/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/setting/about/about.js -------------------------------------------------------------------------------- /pages/setting/about/about.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "关于" 3 | } -------------------------------------------------------------------------------- /pages/setting/about/about.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/setting/about/about.wxml -------------------------------------------------------------------------------- /pages/setting/about/about.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/setting/about/about.wxss -------------------------------------------------------------------------------- /pages/setting/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/setting/setting.js -------------------------------------------------------------------------------- /pages/setting/setting.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "更多工具" 3 | } -------------------------------------------------------------------------------- /pages/setting/setting.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/setting/setting.wxml -------------------------------------------------------------------------------- /pages/setting/setting.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/setting/setting.wxss -------------------------------------------------------------------------------- /pages/weather/city/city.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/city/city.js -------------------------------------------------------------------------------- /pages/weather/city/city.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "选择城市" 3 | } -------------------------------------------------------------------------------- /pages/weather/city/city.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/city/city.wxml -------------------------------------------------------------------------------- /pages/weather/city/city.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/city/city.wxss -------------------------------------------------------------------------------- /pages/weather/components/daily7/daily7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/components/daily7/daily7.js -------------------------------------------------------------------------------- /pages/weather/components/daily7/daily7.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /pages/weather/components/daily7/daily7.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/components/daily7/daily7.wxml -------------------------------------------------------------------------------- /pages/weather/components/daily7/daily7.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/components/daily7/daily7.wxss -------------------------------------------------------------------------------- /pages/weather/components/hourly24/hourly24.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/components/hourly24/hourly24.js -------------------------------------------------------------------------------- /pages/weather/components/hourly24/hourly24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/components/hourly24/hourly24.json -------------------------------------------------------------------------------- /pages/weather/components/hourly24/hourly24.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/components/hourly24/hourly24.wxml -------------------------------------------------------------------------------- /pages/weather/components/hourly24/hourly24.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/components/hourly24/hourly24.wxss -------------------------------------------------------------------------------- /pages/weather/days30/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/days30/data.js -------------------------------------------------------------------------------- /pages/weather/days30/days30.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/days30/days30.js -------------------------------------------------------------------------------- /pages/weather/days30/days30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/days30/days30.json -------------------------------------------------------------------------------- /pages/weather/days30/days30.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/days30/days30.wxml -------------------------------------------------------------------------------- /pages/weather/days30/days30.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/days30/days30.wxss -------------------------------------------------------------------------------- /pages/weather/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/weather.js -------------------------------------------------------------------------------- /pages/weather/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/weather.json -------------------------------------------------------------------------------- /pages/weather/weather.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/weather.wxml -------------------------------------------------------------------------------- /pages/weather/weather.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/weather/weather.wxss -------------------------------------------------------------------------------- /pages/wuxian-yijin/wxyj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/wuxian-yijin/wxyj.js -------------------------------------------------------------------------------- /pages/wuxian-yijin/wxyj.json: -------------------------------------------------------------------------------- 1 | { 2 | "navigationBarTitleText": "五险一金" 3 | } -------------------------------------------------------------------------------- /pages/wuxian-yijin/wxyj.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/wuxian-yijin/wxyj.wxml -------------------------------------------------------------------------------- /pages/wuxian-yijin/wxyj.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/pages/wuxian-yijin/wxyj.wxss -------------------------------------------------------------------------------- /project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/project.config.json -------------------------------------------------------------------------------- /project.private.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/project.private.config.json -------------------------------------------------------------------------------- /service/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/service/request.js -------------------------------------------------------------------------------- /style/base/reset.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/base/reset.wxss -------------------------------------------------------------------------------- /style/weui.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/weui.wxss -------------------------------------------------------------------------------- /style/widget/weui-agree/weui-agree.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-agree/weui-agree.wxss -------------------------------------------------------------------------------- /style/widget/weui-animate/weui-animate.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-animate/weui-animate.wxss -------------------------------------------------------------------------------- /style/widget/weui-button/weui-button.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-button/weui-button.wxss -------------------------------------------------------------------------------- /style/widget/weui-cell/weui-access.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-cell/weui-access.wxss -------------------------------------------------------------------------------- /style/widget/weui-cell/weui-cell.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-cell/weui-cell.wxss -------------------------------------------------------------------------------- /style/widget/weui-cell/weui-check.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-cell/weui-check.wxss -------------------------------------------------------------------------------- /style/widget/weui-cell/weui-form.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-cell/weui-form.wxss -------------------------------------------------------------------------------- /style/widget/weui-cell/weui-form/weui-form-preview.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-cell/weui-form/weui-form-preview.wxss -------------------------------------------------------------------------------- /style/widget/weui-cell/weui-form/weui-form_common.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-cell/weui-form/weui-form_common.wxss -------------------------------------------------------------------------------- /style/widget/weui-cell/weui-form/weui-select.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-cell/weui-form/weui-select.wxss -------------------------------------------------------------------------------- /style/widget/weui-cell/weui-form/weui-vcode.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-cell/weui-form/weui-vcode.wxss -------------------------------------------------------------------------------- /style/widget/weui-cell/weui-switch.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-cell/weui-switch.wxss -------------------------------------------------------------------------------- /style/widget/weui-cell/weui-uploader.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-cell/weui-uploader.wxss -------------------------------------------------------------------------------- /style/widget/weui-flex/weui-flex.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-flex/weui-flex.wxss -------------------------------------------------------------------------------- /style/widget/weui-footer/weui-footer.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-footer/weui-footer.wxss -------------------------------------------------------------------------------- /style/widget/weui-grid/weui-grid.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-grid/weui-grid.wxss -------------------------------------------------------------------------------- /style/widget/weui-loading/weui-loading.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-loading/weui-loading.wxss -------------------------------------------------------------------------------- /style/widget/weui-media-box/weui-media-box.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-media-box/weui-media-box.wxss -------------------------------------------------------------------------------- /style/widget/weui-page/weui-article.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-page/weui-article.wxss -------------------------------------------------------------------------------- /style/widget/weui-page/weui-msg.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-page/weui-msg.wxss -------------------------------------------------------------------------------- /style/widget/weui-panel/weui-panel.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-panel/weui-panel.wxss -------------------------------------------------------------------------------- /style/widget/weui-progress/weui-progress.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-progress/weui-progress.wxss -------------------------------------------------------------------------------- /style/widget/weui-searchbar/weui-searchbar.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-searchbar/weui-searchbar.wxss -------------------------------------------------------------------------------- /style/widget/weui-tab/weui-navbar.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-tab/weui-navbar.wxss -------------------------------------------------------------------------------- /style/widget/weui-tab/weui-tab.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-tab/weui-tab.wxss -------------------------------------------------------------------------------- /style/widget/weui-tips/weui-badge.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-tips/weui-badge.wxss -------------------------------------------------------------------------------- /style/widget/weui-tips/weui-loadmore.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/style/widget/weui-tips/weui-loadmore.wxss -------------------------------------------------------------------------------- /utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/utils/api.js -------------------------------------------------------------------------------- /utils/calculatorForHouseLoan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/utils/calculatorForHouseLoan.js -------------------------------------------------------------------------------- /utils/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/utils/constant.js -------------------------------------------------------------------------------- /utils/finance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/utils/finance.js -------------------------------------------------------------------------------- /utils/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/utils/system.js -------------------------------------------------------------------------------- /utils/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/utils/type.js -------------------------------------------------------------------------------- /utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fxxqq/weather-and-house-loan/HEAD/utils/util.js --------------------------------------------------------------------------------