GithubHelp home page GithubHelp logo

couponstrade's Introduction

优惠券交易平台

项目介绍

概述

优惠券交易平台项目是一个买卖电子优惠券的一个平台

优惠券平台组件

  • 文件夹:src/components
  • 包括订单组件、优惠券组件、用户登陆、注册、用户中心组件

优惠券容器

  • 文件夹:src/containers

样式

  • 文件夹:src/css

reducers

  • 文件夹:src/reducers

couponstrade's People

Contributors

jpf0318 avatar kongli123 avatar snowes avatar upmiss avatar yukaiyang avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

couponstrade's Issues

Uncaught TypeError: Cannot set property 'checked' of null

暂时的解决方案是将node_modules下onsenui中的js/onsenui.js中的

var radio = util.findChild(this, 'input');
radio.checked = true;
this.classList.add('active');

修改为

var radio = util.findChild(this, 'input');
if(radio != null){
     radio.checked = true;
}
this.classList.add('active');

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.