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

zan-sku-table

v6.0.0

Published

这是一个React组件

Downloads

84

Readme

zan-sku-table

NPM

这是一个规格表格组件

使用场景

选择规格后,生成对应的规格表格

代码演示

:::demo 基础用法

import SKUTable from 'zan-sku-table';
import SKU from 'zan-sku';
import { Input } from 'zent'; 

const columns = [
  {
    title: '价格',
    default: 0,
    bodyRender(item) {
      return <Input value={item.price} />;
    }
  },
  {
    title: '库存',
    default: 0,
    bodyRender(item) {
      return <Input value={item.stock_num} />;
    }
  },
  {
    title: '商家编码',
    name: 'code'
  }
];

const SKUTree = [
  {
    id: 10740,
    kdt_id: 18884150,
    text: '你好'
  },
  {
    id: 40732,
    kdt_id: 18884150,
    text: 'hhh'
  },
  {
    id: 512521,
    kdt_id: 18884150,
    text: 'nihao'
  },
  {
    id: 572390,
    kdt_id: 18884150,
    text: '会员期限'
  },
  {
    id: 18496487,
    kdt_id: 18884150,
    text: 'channel'
  },
  {
    id: 19610451,
    kdt_id: 18884150,
    text: '普通胶水'
  },
  {
    id: 19610484,
    kdt_id: 18884150,
    text: '高级胶水'
  }
];

const SKULeaf = [
  {
    id: 3,
    text: '蓝色'
  },
  {
    id: 10,
    text: '红色'
  },
  {
    id: 30,
    text: '土豪金'
  },
  {
    id: 137,
    text: '黑色'
  },
  {
    id: 138,
    text: '灰色'
  }
];


class Simple extends Component {
  state = {
    skuData: []
  };

  fetchSKUTree() {
    return new Promise(resolve => {
      resolve(SKUTree);
    });
  }

  fetchSKU() {
    return new Promise(resolve => {
      resolve(SKULeaf);
    });
  }

  handleSKUChange = data => {
    this.setState({
      skuData: [].concat(data)
    });
  };

  render() {
    let { skuData } = this.state;

    return (
      <div>
        <SKU
          value={skuData}
          onFetchGroup={this.fetchSKUTree}
          onFetchSKU={this.fetchSKU}
          onChange={this.handleSKUChange}
        />
        <SKUTable data={SKU.flatten(skuData)} columns={columns} />
      </div>
    );
  }
}

ReactDOM.render(
    <Simple />
    , mountNode
);

:::

API

| 参数 | 说明 | 类型 | 默认值 | 备选值 | |------|------|------|--------|--------| | className | 自定义额外类名 | string | '' | '' | | data | 表格数据 | array | [] | [] | | columns | 表头配置,基本上和zan-table类似,多一个default的属性 | array | [] | [] | | footerRender | 自定义footer | any | null | null | | prefix | 自定义前缀 | string | 'rc-sku-table' | null |