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 🙏

© 2026 – Pkg Stats / Ryan Hefner

idou-component

v0.2.43

Published

# idou组件的使用

Readme

idou-component

idou组件的使用

引入

 npm i idou-component -S 

注册

<template>
  <div>
    <idou-car-info 
      :areas="areas"
      @update="updateCarInfo"
      theme-color="green"
      :data="carInfo"
    >
    
    </idou-car-info>
    </div>
</template>

import { address, ocr, carInfo, loading } from 'idou-component'

export default {
  components: {
    [carInfo.name]: carInfo
  }

}

carInfo组件参数

|参数名|参数说明|是否必须| |:---:|:---:|:---:| |areas|省市区 [Array]|是| |theme-color|主题色默认值green [Sting]|否| |orc-icon|OCR iconfont 号 [String]|是| |isSupportBusinessCarFn| [Function] | callback '0' => 否| |data|车辆数据默认值{areaCode: '',licensePrefix: '',areaName: '',licenseNo: '',carOwner: '',businessCar: '0'}[Object]|否| |@update|接收车辆修改后的数据 [Object]|是| |@changeArea|修改地址的数据 [Object]{ areaCode, areaName }|是|


carInfo组件插槽

|名称|参数说明|是否必须| |:---:|:---:|:---:| |icon|ocr的图标,支持自定义|-|


loading组件参数

|参数名|参数说明|是否必须| |:---:|:---:|:---:| |v-model|是否显示|是| |size| 大小 默认24px|否| |color|主题色默认值 rgb(25, 137, 250) [Sting]|否|


address组件参数

|参数名|参数说明|是否必须| |:---:|:---:|:---:| |v-model|是否显示|是| |areas| 省市区 [Array]|否| |@changeArea|修改后的地址[{省}, {市}, {区}]|是|


ocr组件参数

|参数名|参数说明|是否必须| |:---:|:---:|:---:| |v-model|是否显示|是| |themeColor| 主题色 |否| |@update|修改后的数据|是|

  // 获取是否支持企业车
methods: {
  isSupportBusinessCarFn(callback) {
    /**
    * 参数
    * params = {
        payload: {
          cmd: "QueryCompanyCarmInfo",
          area_Code, //省市区编码
          channel,
          sourceCode,
          account,
          appid,
        },
        account,
        appid,

      }
    */

    axios.post('/mobile/basic', qs.stringify({ req: params }),).then(res => {
      callback('---参数---1 或者 0')
    })
  }
}