44 lines
801 B
Vue
44 lines
801 B
Vue
<template>
|
|
<view>
|
|
<view class="flex flex-center" style="padding: 30rpx 0;background-color: #f1f1f1;">
|
|
<view class="">
|
|
<u-line margin="20rpx 10rpx" length="100rpx"></u-line>
|
|
</view>
|
|
<view class="">
|
|
<u-text color="#999" :text="title+'·'" wordWrap="break-word"></u-text>
|
|
</view>
|
|
<view class="">
|
|
<u-text color="#31cf55" :bold="true" :text="enTitle"></u-text>
|
|
</view>
|
|
<view>
|
|
<u-line margin="20rpx 10rpx" length="100rpx"></u-line>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name:"fgTitle",
|
|
props:{
|
|
title:{
|
|
type:String,
|
|
default:'商品详情'
|
|
},
|
|
enTitle:{
|
|
type:String,
|
|
default:"DETAILS"
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|