50 lines
708 B
Vue
50 lines
708 B
Vue
![]() |
<template>
|
|||
|
<view class="price-box">
|
|||
|
|
|||
|
|
|||
|
<table-list :tableList="clerk.goodsList"></table-list>
|
|||
|
|
|||
|
<view class="price-remark">
|
|||
|
<u-parse :html="content"></u-parse>
|
|||
|
</view>
|
|||
|
|
|||
|
</view>
|
|||
|
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
import TableList from '@/pages/clerk/detail/components/tableList.vue';
|
|||
|
export default {
|
|||
|
components: {
|
|||
|
TableList,
|
|||
|
},
|
|||
|
props: {
|
|||
|
clerk: {
|
|||
|
type: Object,
|
|||
|
default: {},
|
|||
|
},
|
|||
|
},
|
|||
|
data() {
|
|||
|
return {
|
|||
|
content: `
|
|||
|
<p>露从今夜白,月是故乡明</p>
|
|||
|
`
|
|||
|
}
|
|||
|
},
|
|||
|
methods: {
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style lang="scss" scoped>
|
|||
|
.price-box {
|
|||
|
padding: 30rpx 20rpx;
|
|||
|
padding-top: 0px;
|
|||
|
|
|||
|
.price-remark {
|
|||
|
padding: 5px 15px;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
</style>
|