日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > windows >内容正文

windows

红豆角源码--红豆角系统红豆角APP拼团系统源码分享

發布時間:2024/3/13 windows 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 红豆角源码--红豆角系统红豆角APP拼团系统源码分享 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

紅豆角拼團系統源碼分享:

<template><div class="CustomerList"><divclass="item acea-row row-between-wrapper"v-for="item in list":key="item.id"@click="$router.push('/customer/chat/' +item.uid +'/' +productId +(orderId ? '?orderId=' + orderId : ''))"><div class="pictrue"><img :src="item.avatar" /></div><div class="text line1">{{ item.nickname }}</div></div></div> </template> <script> import { serviceList } from "@api/user";export default {name: "CustomerList",data() {return {list: [],productId: 0,orderId: ""};},watch: {$route(n) {if (n.name === "CustomerList") {if (n.params.productId) this.productId = n.params.productId;else this.productId = 0;if (n.query.orderId) this.orderId = n.query.orderId;else this.orderId = "";}}},methods: {getList() {serviceList().then(res => {this.list = res.data;});}},mounted() {this.getList();if (this.$route.params.productId)this.productId = this.$route.params.productId;if (this.$route.query.orderId) this.orderId = this.$route.query.orderId;} }; </script> <style scoped> .CustomerList {margin-top: 0.13rem; } .CustomerList .item {height: 1.38rem;border-bottom: 1px solid #eee;padding: 0 0.24rem;background-color: #fff; } .CustomerList .item .pictrue {width: 0.9rem;height: 0.9rem;border-radius: 50%;border: 0.03rem solid #fff;box-shadow: 0 0 0.1rem 0.05rem #f3f3f3;-webkit-box-shadow: 0 0 0.1rem 0.05rem #f3f3f3;-moz-box-shadow: 0 0 0.1rem 0.05rem #f3f3f3; } .CustomerList .item .pictrue img {width: 100%;height: 100%;border-radius: 50%; } .CustomerList .item .text {width: 5.82rem;font-size: 0.32rem;color: #000; } </style>

總結

以上是生活随笔為你收集整理的红豆角源码--红豆角系统红豆角APP拼团系统源码分享的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。