jiuyiUniapp/jiuyi2/pages/index/hashOrder.vue

26 lines
555 B
Vue

<script>
// 哈希订单
</script>
<template>
<view class="app">
<!-- 搜索 -->
<view class="searchBox rows mtb30 mlr30 ptb10 bfff br20">
<uni-icons class="ml20" type="search" size="40rpx" />
<input class="mlr20" placeholder="请输入哈希号" />
<view class="btn sm black mlr20 plr20">搜索</view>
</view>
<!-- 订单列表 -->
<view class="listBox">
<view class="item" v-for="(item,index) in 3" :key="index"></view>
</view>
</view>
</template>
<style lang="scss" scoped>
// 搜索盒子
.searchBox {
//
}
</style>