<template>
<div style="margin-top: 100px;">
<text class="text">感谢大家对我们的支持与关心,关于软件系统购买后次年功能升级和优化及客服售后服务说明!</text>
</div>
</template>
<style scoped>
.text{
font-size: 50px;
width:300px;
line-height:50px;
height:100px;
lines:2;
overflow: hidden;
text-overflow: ellipsis;
}
</style>
<script>
import wx from './../../common/wx'
export default {
data:function () {
return {
};
},
mixins: [require('./../../common/publish').publish],
methods:{
},
mounted:function () {
},
created:function () {
}
}
</script>