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.

44 lines
923 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: {
serviceInfo: {
type: Object,
required: true
}
},
components: {
},
data(){
return {
token: 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE3NTAwNTM3MjQsIm5iZiI6MTc1MDA1MzcyNCwiZXhwIjoxNzUyNjQ1NzI0LCJ1c2VyIjoic3VidXNlciIsImxvZ2luX3R5cGUiOjAsImFpZCI6IjEifQ.xyIqBLelB-k6jCifgRevBJTyg_Qrm6m1e4OcHhOpepU',
info:{},
//添加按钮样式
saveBtnStyleObj: {
width: '144px',
height: '46px',
borderRadius: '4px',
background: '#006AFF',
},
}
},
mounted() {
this.info = this.serviceInfo
},
methods:{
}
}
</script>
<style lang="scss">
</style>