npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

yoopayjs

v1.1.6

Published

``` npm install element-ui npm install less npm install axios ``` #安装yoopayjs ``` npm install yoopayjs ``` #更新 yoopayjs ``` npm update yoopayjs ``` #使用yoopayjs ``` //main.js //elementUi import elementUi from 'element-ui' import 'element-ui/

Downloads

7

Readme

yoopayjs

#安装依赖

npm install element-ui 
npm install  less
npm install axios

#安装yoopayjs

npm install yoopayjs

#更新 yoopayjs

npm update yoopayjs

#使用yoopayjs

//main.js
    //elementUi
    import elementUi from 'element-ui'
    import 'element-ui/lib/theme-chalk/index.css'
    // 语言选择 这里选择英文
    import locale from 'element-ui/lib/locale/lang/en' 
    Vue.use(elementUi,{locale})
    
    // 引入组件结构
    import yoopayjs from "yoopayjs";
    // 引入组件样式
    import 'yoopayjs/yoopay-js.css'
    // 注册组件到全局
    Vue.use(yoopayjs);
    
//组建中使用
    <yoopay-js ref="yoopayjs" @subCallback='subCallback'></yoopay-js>
    //methods 初始化 yoopayjs
    methods:{
        initYoopayJS(){
            this.$refs.yoopayjs.inintYoopayJS({
                width:100, // 组件整体宽度百分比宽度  选填
                paddingTop:20, // 组件内边距  选填
                paddingBottom:20, // 组件内边距  选填
                paddingRight:20, // 组件内边距  选填
                paddingLeft:20, // 组件内边距  选填
                url:'https://xxxxxx.xxx', //提交URL 必填
                billingCountry:'US', // 国家或地区代码(C2代表中国 US代表美国) 必填
                billingAddr:'xxx 街道', //街道 必填
                billingCity:'xxx 市', //城市 必填
                billingState:'xxx 州', // 州 必填
                billingZip:'033300', //邮编 必填
                billingApartment:'xxx号楼 xx单元 xxxx' //具体房间号  必填
            })
        },
        //表单 校验通过
        validateSuccess(form){
            console.log(form)
        },
        //提交之后 处理函数
        subCallback(data){
            console.log(data)
        }
    },
    mounted(){
        this.initYoopayJS()
    }

#提交参数说明

    cardType:卡类型 四种 PayPal Visa MasterCard Amex
    cardNumber:卡号
    cardName:姓名
    cardExpdate:卡有效期 
    cardCvv2:安全码
    billingCountry: 卡所属国家
    billingAddr: 街道
    billingApartment: 具体房间号
    billingCity: 城市
    billingState: 州
    billingZip:邮编

#提交方式

infoForm(){
  let obj = {
    cardType:this.cardType,
    cardNumber:this.cardInfo.cardNumber,
    cardName:this.cardInfo.cardName,
    cardExpdate:this.cardInfo.cardExpdate,
    cardCvv2:this.cardInfo.cardCvv2,
    billingCountry:this.cardInfo.billingCountry,
    billingAddr:this.cardInfo.billingAddr, // 街道
    billingApartment:this.cardInfo.billingApartment, // 具体房间号
    billingCity:this.cardInfo.billingCity,// 城市
    billingState:this.cardInfo.billingState, // 州
    billingZip:this.cardInfo.billingZip // 邮编
  }
  return obj
},
submitForm(formName) {
  if(this.cardType === 'PayPal'){
    this.$http.post(this.url,{cardType:this.cardType}).then(res => {
      console.log(res,'============')
    })
  }else{
    this.$refs[formName].validate((valid) => {
      if(valid){
        this.$emit('validateSuccess',this.infoForm())
        this.$http.post(this.url,this.infoForm()).then(res => {
          this.$emit('subCallback',res)
          console.log(res,'============')
        })
      } else {
        console.log('error submit!!');
        return false;
      }
    });
  }
},