This commit is contained in:
zmj 2024-05-17 15:42:34 +08:00
parent 22725d4d58
commit 8b1523c122
3 changed files with 1644 additions and 1658 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,105 @@
<template>
<view class="">
list
<view class="box">
<view class="top">
<view class="title">
<view>
</view>
报价订单
<text style="color: #20B128;" @click="navgo('/pages/quote/supplierFinancialy')">提现</text>
</view>
<view style="background-color: white;padding: 20rpx;">
<u-search :showAction="true" v-model="keyword" :actionStyle="{color:'#20B128'}" actionText="搜索"
placeholder="输入商品分类" :animation="true" @search="getLists" @custom='getLists'></u-search>
</view>
</view>
<view class="content">
<view class="li" v-for="(item,index) in lists" :key="index" @click="navgo('/pages/quote/index')">
<view>
PF171504442988969633
</view>
<view style="display: flex;justify-content: space-between;margin: 20rpx 0;">
<text>
水果 | 共4件
</text>
<view style="display: flex;align-items: center;" v-if="false">
<text style="margin-right: 10rpx;color: #20B128;">待报价</text>
<u--image src="https://lihai001.oss-cn-chengdu.aliyuncs.com/attach/fcc66202405171031441742.png"
width="32rpx" height="32rpx"></u--image>
</view>
<view style="display: flex;align-items: center;" v-else>
<text style="margin-right: 10rpx;color:#FC452F ;">已报价</text>
<u--image src="https://lihai001.oss-cn-chengdu.aliyuncs.com/attach/16ff3202405171032208362.png"
width="32rpx" height="32rpx"></u--image>
</view>
</view>
<view style="color: #777777;font-size: 24rpx;">
2024-05-16 18:00
</view>
</view>
</view>
</view>
</template>
<script>
import {
OpurchaseGoodsOfferListApi
} from "@/api/supplier.js"
export default {
data() {
return {
keyword: '',
lists: 10
}
},
methods: {
navgo(url) {
uni.navigateTo({
url
})
},
async getLists() {
let res = await OpurchaseGoodsOfferListApi({
keyword: this.keyword
})
this.lists = res.data.lists
}
},
onLoad() {
uni.showTabBar()
this.getLists()
}
}
</script>
<style>
<style lang="scss">
.box {
padding-top: 200rpx;
.top {
position: fixed;
width: 100vw;
top: 0;
z-index: 999;
}
}
.title {
padding: 20rpx;
display: flex;
justify-content: space-between;
background-color: white;
}
.content {
padding: 20rpx;
.li {
background-color: white;
padding: 20rpx;
margin-bottom: 20rpx;
border-radius: 16rpx;
}
}
</style>