import { Text, View } from "@tarojs/components" import classnames from "classnames"; import { useEffect, useState } from "react"; import EstimatedAmount from "./components/estimatedAmount"; import KindList from "./components/kindList"; import styles from './index.module.scss' export default () => { const [price, setPrice] = useState(123000.33) return ( 收货方式 物流 上门自提 请选择收货地址及信息 订单备注 点击填写 2种面料,6种颜色,共6条 提交订单 ) }