2023-09-20 18:16:59 +08:00
|
|
|
<template>
|
|
|
|
<view class="conent">
|
2023-12-14 12:03:38 +08:00
|
|
|
<!-- <view class="con_kuo"
|
2023-10-24 15:02:42 +08:00
|
|
|
@click="navigator(`/pages/nongKe/supply_chain/supplierA?tit=1&type_id=12&isDetail=1&product_type=98&cate_id=${id}`)">
|
2023-09-20 18:16:59 +08:00
|
|
|
<image class="con_img" src="@/static/images/bg1.png" mode=""></image>
|
|
|
|
<image class="con_ico" src="@/static/images/bgic1.png" mode=""></image>
|
|
|
|
<view class="con_text">
|
|
|
|
<h3>先款后货</h3>
|
|
|
|
<span>先付款后发货</span>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="con_kuo"
|
|
|
|
@click="navigator(`/pages/nongKe/supply_chain/supplierA?tit=2&type_id=12&isDetail=1&credit_buy=1&product_type=98&cate_id=${id}`)">
|
2023-10-09 11:55:47 +08:00
|
|
|
<image class="con_img" src="@/static/images/bg3.png" mode=""></image>
|
2023-09-20 18:16:59 +08:00
|
|
|
<image class="con_ico" src="@/static/images/bgic2.png" mode=""></image>
|
|
|
|
<view class="con_text">
|
|
|
|
<h3>先货后款</h3>
|
|
|
|
<span>先发货后付款</span>
|
|
|
|
</view>
|
2023-12-14 12:03:38 +08:00
|
|
|
</view> -->
|
|
|
|
<view class="con_kuo"
|
|
|
|
v-for="(item, index) in list"
|
|
|
|
:key="item.value"
|
|
|
|
@click="navigator(`/pages/nongKe/supply_chain/supplierA?tit=1&type_id=12&isDetail=1&product_type=98&cate_id=${id}`)">
|
|
|
|
<image class="con_img" src="@/static/images/bg1.png" mode=""></image>
|
|
|
|
<image class="con_ico" src="@/static/images/bgic1.png" mode=""></image>
|
|
|
|
<view class="con_text">
|
|
|
|
<h3>{{item.name}}</h3>
|
|
|
|
<span>先付款后发货</span>
|
|
|
|
</view>
|
|
|
|
</view>
|
2023-09-20 18:16:59 +08:00
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-12-14 12:03:38 +08:00
|
|
|
import { systemGroupValue } from "@/api/public.js"
|
2023-09-20 18:16:59 +08:00
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2023-12-14 12:03:38 +08:00
|
|
|
id: '',
|
|
|
|
list: []
|
2023-09-20 18:16:59 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
onLoad(option) {
|
2023-12-14 12:03:38 +08:00
|
|
|
this.id = option.cate_id;
|
|
|
|
this.initList();
|
2023-09-20 18:16:59 +08:00
|
|
|
},
|
|
|
|
methods: {
|
2023-12-14 12:03:38 +08:00
|
|
|
initList(){
|
|
|
|
systemGroupValue({
|
|
|
|
name: 'purchasing_navigation'
|
|
|
|
}).then(res=>{
|
|
|
|
console.log(res);
|
|
|
|
this.list = res.data;
|
|
|
|
console.log(this.list);
|
|
|
|
})
|
|
|
|
},
|
2023-09-20 18:16:59 +08:00
|
|
|
navigator(url, t) {
|
|
|
|
uni.navigateTo({
|
|
|
|
url: url
|
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
* {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conent {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
2023-12-14 12:03:38 +08:00
|
|
|
flex-wrap: wrap;
|
2023-09-20 18:16:59 +08:00
|
|
|
margin-top: 20px;
|
|
|
|
|
|
|
|
.con_kuo {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.con_img {
|
|
|
|
width: 192px;
|
|
|
|
height: 92px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.con_ico {
|
|
|
|
position: absolute;
|
|
|
|
left: 25px;
|
|
|
|
top: 32px;
|
|
|
|
width: 31px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.con_text {
|
|
|
|
position: absolute;
|
|
|
|
left: 66px;
|
|
|
|
top: 20px;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|