<!--
 * @Description:
 * @Author: jiass
 * @Date: 2022-03-02 14:37:49
 * @LastEditTime: 2022-03-02 16:10:30
 * @LastEditors: jiass
-->

## SearchContentItem 股票池列表数据

![Alt](../../assets/searchContentItem.jpg)

```tsx
import React, { useState, useEffect, useCallback } from "react";
import SearchContentItem from "taro-mini-ui";

export default () => {
  return (
    <view>
      <SearchContentItem
        dataItem={searchContentItemData}
        onClick={() => console.log("SearchContentItemSearchContentItem")}
        updateSelfStock={() => console.log("更改自选状态")}
        type={1}
      ></SearchContentItem>

      <SearchContentItem
        dataItem={searchContentItemData}
        onClick={() => console.log("SearchContentItemSearchContentItem")}
        updateSelfStock={() => console.log("更改自选状态")}
        type={2}
      ></SearchContentItem>
    </view>
  );
};
```

| 属性名          | 描述           | 类型     | 默认值 |
| --------------- | -------------- | -------- | ------ |
| dataItem        | 数据详情       | object   |        |
| updateSelfStock | 点击加自选事件 | function |        |
| onClick         | 点击股票事件   | function |        |
| type            | 状态           | any      |        |
