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.
34 lines
554 B
34 lines
554 B
<template>
|
|
<div class="main-content12">
|
|
<div class="pageheader">
|
|
<span class="pagetitle">{{info.type_desc}}-价格设置</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
|
|
export default {
|
|
name: 'priceSet',
|
|
props:[],
|
|
components: {
|
|
|
|
},
|
|
data(){
|
|
return {
|
|
//添加按钮样式
|
|
saveBtnStyleObj: {
|
|
width: '144px',
|
|
height: '46px',
|
|
borderRadius: '4px',
|
|
background: '#006AFF',
|
|
},
|
|
}
|
|
},
|
|
methods:{
|
|
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss">
|
|
|
|
</style>
|