123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <template>
- <view>
- <view class="top-tab-search">
- <view class="search">
- <u--input placeholder="搜索商品名称" shape="circle" prefixIcon="search"
- prefixIconStyle="font-size: 22px;color: #909399"></u--input>
- <view class="screen" @click="openPopup">
- 筛选
- <image class="screen-icon" src="../../static/mine/334.png" mode=""></image>
- </view>
- </view>
- <view class="tab">
- <view class="top-tab">
- <view :class="{commodity:follow==1}" class="tab" @click="tabSwitch(1)">
- 全部
- </view>
- <view :class="{commodity:follow==2}" class="tab" @click="tabSwitch(2)">
- 已上架
- </view>
- <view :class="{commodity:follow==3}" class="tab" @click="tabSwitch(3)">
- 已下架
- </view>
- </view>
- </view>
- </view>
- <view class="page">
- <GoodsInformation productAndCommodity="commodity" :status="status" @toDetail="toDetail" />
- </view>
- <view class="footer">
- <view class="batch">
- 批量打折
- </view>
- <button class="btn-1">上架平台商品</button>
- </view>
-
- <ScreenPopup :show="show" @close="close" :follow='follow' />
- </view>
- </template>
- <script>
- import GoodsInformation from '../components/goodsInformation.vue'
- import ScreenPopup from './component/screenPopup.vue'
- export default {
- components: {
- GoodsInformation,
- ScreenPopup
- },
- data() {
- return {
- follow: 1,
- status: "1",
- show:false
- }
- },
- computed: {
- i18n() {
- return this.$t("index")
- },
- },
- methods: {
- tabSwitch(num) {
- this.follow = num
- },
- openPopup(){
- this.show = true
- },
- close(num) {
- this.show = false
- this.follow = num
- },
- toDetail() {
- uni.navigateTo({
- url: "/pageD/productDetails/productDetails"
- })
- },
- },
- mounted() {
- uni.setNavigationBarTitle({
- title: "我的供应链商品"
- })
- }
- }
- </script>
- <style lang="scss" scoped>
- .top-tab-search {
- background-color: #fff;
- padding: 10rpx 24rpx;
- z-index: 20174;
- .search{
- display: flex;
- align-items: center;
- .screen{
- display: flex;
- align-items: center;
- font-size: 26rpx;
- color: #333;
- margin-left: 20rpx;
- .screen-icon{
- width: 24rpx;
- height: 24rpx;
- margin-left: 5rpx;
- }
- }
- }
- .top-tab {
- margin-top: 10rpx;
- padding: 0 20rpx;
- display: flex;
- justify-content: space-between;
- .tab {
- font-size: 26rpx;
- color: rgba(34, 34, 34, .8);
- flex-shrink: 0;
- height: 44rpx;
- display: flex;
- align-items: flex-end;
- padding-bottom: 12rpx;
- }
- .commodity {
- position: relative;
- font-weight: 600;
- }
- .commodity::before {
- content: '';
- display: block;
- height: 4rpx;
- width: 50%;
- background: #f83224;
- position: absolute;
- bottom: -10rpx;
- opacity: 0.8;
- left: 50%;
- transform: translate(-50%, 50%);
- }
- }
- }
- .page {
- padding: 20rpx 24rpx;
- }
- .footer {
- position: fixed;
- display: flex;
- align-items: center;
- justify-content: space-between;
- bottom: 0;
- background-color: #fff;
- width: 93%;
- padding: 16rpx 24rpx 70rpx 24rpx;
- .batch{
- color: #333;
- font-size: 28rpx;
- margin-right: 50rpx;
- }
- .btn-1 {
- width: 236rpx;
- height: 76rpx;
- border-radius: 52rpx;
- background-color: #fff;
- color: #f83224;
- border: 2rpx solid #f83224;
- padding: 0;
- margin: 0;
- font-size: 30rpx;
- }
- .btn {
- width: 236rpx;
- height: 76rpx;
- border-radius: 52rpx;
- background-color: #f83224;
- color: #fff;
- border: none;
- padding: 0;
- margin: 0;
- font-size: 30rpx;
- }
- }
- </style>
|