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.
194 lines
5.4 KiB
194 lines
5.4 KiB
<template>
|
|
<view class="paper-detail">
|
|
<view>
|
|
<uni-nav-bar left-icon="back" @clickLeft="back" statusBar fixed title="">
|
|
<view class="paper-detail-title">纸品详情</view>
|
|
<view slot="left"></view>
|
|
<view slot="right" class="paper-detail-right-title">分享</view>
|
|
</uni-nav-bar>
|
|
</view>
|
|
<view class="paper-detail-info">
|
|
<view class="">
|
|
<text class="paper-detail-info-text">纸品名称:</text>
|
|
<text class="paper-detail-info-subtext">博汇朱雀白卡纸</text>
|
|
</view>
|
|
<view class="">
|
|
<text class="paper-detail-info-text">纸厂信息:</text>
|
|
<text class="paper-detail-info-subtext">博汇</text>
|
|
</view>
|
|
<view class="">
|
|
<text class="paper-detail-info-text">品牌信息:</text>
|
|
<text class="paper-detail-info-subtext">朱雀</text>
|
|
</view>
|
|
<view class="">
|
|
<text class="paper-detail-info-text">纸种信息:</text>
|
|
<text class="paper-detail-info-subtext">白卡纸</text>
|
|
</view>
|
|
</view>
|
|
<uGap></uGap>
|
|
<view class="paper-datail-list">
|
|
<view class="paper-datail-list-title paper-bottom-border">纸品售价</view>
|
|
<view class="">
|
|
<uni-table emptyText="暂无更多数据">
|
|
<!-- 表头行 -->
|
|
<uni-tr class="paper-table-title">
|
|
<uni-th align="left" width="65">克重</uni-th>
|
|
<uni-th align="left" width="65">规格</uni-th>
|
|
<uni-th align="left" width="65">售价</uni-th>
|
|
<uni-th align="left" width="65">库存</uni-th>
|
|
<uni-th align="left" width="65">是否特价</uni-th>
|
|
</uni-tr>
|
|
<!-- 表格数据行 -->
|
|
<uni-tr>
|
|
<uni-td>2500g</uni-td>
|
|
<uni-td>779*1092</uni-td>
|
|
<uni-td>4400.00元</uni-td>
|
|
<uni-td>8900张</uni-td>
|
|
<uni-td>是</uni-td>
|
|
</uni-tr>
|
|
</uni-table>
|
|
</view>
|
|
</view>
|
|
<uGap></uGap>
|
|
<view class="paper-datail-list ">
|
|
<view class="paper-datail-list-title">纸品图片</view>
|
|
<view class="paper-list-view">
|
|
<image class="paper-datail-list-image" src="../../static/imgs/client-credit-list/client-default.png" mode=""></image>
|
|
<image class="paper-datail-list-image" src="../../static/imgs/client-credit-list/client-default.png" mode=""></image>
|
|
<image class="paper-datail-list-image" src="../../static/imgs/client-credit-list/client-default.png" mode=""></image>
|
|
<image class="paper-datail-list-image" src="../../static/imgs/client-credit-list/client-default.png" mode=""></image>
|
|
</view>
|
|
</view>
|
|
<uGap></uGap>
|
|
<view class="paper-datail-list paper-bottom-border">
|
|
<view class="paper-datail-list-title ">商品买点</view>
|
|
<view class="paper-datail-list-text"><text>月结30天价格,不加服务费!</text></view>
|
|
</view>
|
|
<view class="paper-datail-list paper-bottom-border">
|
|
<view class="paper-datail-list-title ">商品描述</view>
|
|
<view class="paper-datail-list-text"><text>售价全部为含税价,支持先用后付,欢迎来电查询!近期价格波动较大,请下单前先咨询价格。</text></view>
|
|
</view>
|
|
<view class="paper-datail-list paper-bottom-border">
|
|
<view class="paper-datail-list-title ">送货说明</view>
|
|
<view class="paper-datail-list-text"><text>分切纸不足重量的,另加调机费;低于送货重量或超出送货范围的,运费另计。</text></view>
|
|
</view>
|
|
<view class="paper-datail-list paper-bottom-border">
|
|
<view class="paper-datail-list-title ">其他说明</view>
|
|
<view class="paper-datail-list-text"><text>无其他说明。</text></view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { back, go2 } from '@/utils/hook.js'
|
|
import uGap from '@/components/u-gap/u-gap.vue'
|
|
import { getSupplierDteail } from '@/apis/add-paper.js'
|
|
export default {
|
|
components: {
|
|
uGap
|
|
},
|
|
data() {
|
|
return {
|
|
form:{},
|
|
skuList:[],
|
|
imgList:[]
|
|
}
|
|
},
|
|
methods: {
|
|
back,
|
|
//获取详情
|
|
getDteailList(res) {
|
|
var params = {
|
|
mallSupplierIds : null,
|
|
productId : null
|
|
}
|
|
this.getSupplierDteail(params).then(res => {
|
|
if (res) {
|
|
this.form = res
|
|
this.skuList = res.skuList
|
|
this.imgList = res.imgList
|
|
}
|
|
})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.paper-detail {
|
|
.paper-detail-title {
|
|
width: 100%;
|
|
font-size: 36rpx;
|
|
color: #000000;
|
|
letter-spacing: 0;
|
|
text-align: center;
|
|
font-weight: 500;
|
|
}
|
|
.paper-detail-right-title {
|
|
font-size: 28rpx;
|
|
color: #007aff;
|
|
text-align: right;
|
|
line-height: 40rpx;
|
|
font-weight: 500;
|
|
}
|
|
.paper-detail-info {
|
|
height: 260rpx;
|
|
background: #ffffff;
|
|
padding: 24rpx 32rpx;
|
|
line-height: 56rpx;
|
|
}
|
|
.paper-detail-info-text {
|
|
font-size: 28rrpx;
|
|
color: #888888;
|
|
letter-spacing: 0;
|
|
font-weight: 400;
|
|
}
|
|
.paper-detail-info-subtext {
|
|
font-size: 28rpx;
|
|
color: #333333;
|
|
letter-spacing: 0;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.paper-datail-list {
|
|
background: #ffffff;
|
|
.paper-datail-list-title {
|
|
font-size: 28rpx;
|
|
color: #000000;
|
|
letter-spacing: 0;
|
|
font-weight: 600;
|
|
height: 80rpx;
|
|
align-items: center;
|
|
display: flex;
|
|
padding-left: 32rpx;
|
|
}
|
|
.paper-datail-list-text {
|
|
font-size: 28rpx;
|
|
color: #333333;
|
|
letter-spacing: 0;
|
|
font-weight: 400;
|
|
align-items: center;
|
|
line-height: 50rpx;
|
|
padding: 0rpx 32rpx 20rpx 32rpx;
|
|
}
|
|
.paper-table-title {
|
|
font-size: 24rpx;
|
|
color: rgba(0, 0, 0, 0.5);
|
|
letter-spacing: 0;
|
|
font-weight: 400;
|
|
background: #f7f8fa;
|
|
}
|
|
.paper-list-view {
|
|
line-height: 40rpx;
|
|
}
|
|
.paper-datail-list-image {
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
padding: 32rpx 32rpx;
|
|
}
|
|
}
|
|
.paper-bottom-border {
|
|
border-bottom: 2rpx solid #d8d8d8;
|
|
}
|
|
}
|
|
</style>
|