You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 lines
2.0 KiB

<template>
<view>
<ul class="tab">
<li v-for="(tab, i) in tabs" :class="{active: curTab === tab.id}" @click="tabChange(tab)">{{ tab.name }}</li>
</ul>
<view class="top">
<uni-search-bar class="search" radius="5" placeholder="请输入姓名、订单号" clearButton="auto" cancelButton="none" @confirm="search" />
<uni-icons class="icon" custom-prefix="iconfont" type="icon-filter" size="18" color="#007eff"></uni-icons>
</view>
<uni-card :is-shadow="false" :border="false" is-full>
<ul class="list">
<li @click="toPage('../clientDetail/clientDetail')">
<view class="name">中山大学</view>
<view class="info">
<view class="left">
<view class="text">客户名称海文</view>
<view class="text">订单金额海文</view>
<view class="text">订单内容海文</view>
<view class="text">下单日期海文</view>
</view>
<view class="type">
待审核发货
</view>
</view>
</li>
</ul>
</uni-card>
3 years ago
<uni-icons class="plus" type="plus-filled" size="60" color="#007eff" @click="toPage('../addOrder/addOrder')"></uni-icons>
</view>
</template>
<script>
export default {
data() {
return {
curTab: 0,
tabs: [
{
name: '我的订单',
id: 0
},
{
name: '团队全部订单',
id: 1
}
]
}
},
methods: {
search(res) {
uni.showToast({
title: '搜索:' + res.value,
icon: 'none'
})
},
toPage(path) {
this.$util.to(path)
}
}
}
</script>
<style lang="scss">
.top {
display: flex;
align-items: center;
padding: 5px 15px 5px 5px;
margin-bottom: 10px;
background-color: #fff;
.search {
flex: 1;
}
}
.list {
.name {
font-size: 16px;
color: #333;
}
.info {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 10px;
}
.text {
font-size: 13px;
color: #ccc;
}
.type {
font-size: 14px;
color: #ff7b2d;
}
}
.plus {
position: fixed;
bottom: 20px;
right: 20px;
}
</style>