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.
28 lines
528 B
28 lines
528 B
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
const script = document.createElement('script')
|
|
script.src = 'https://res2.wx.qq.com/open/js/jweixin-1.6.0.js'
|
|
document.head.appendChild(script)
|
|
},
|
|
// onShow: function() {
|
|
// console.log('App Show')
|
|
// },
|
|
// onHide: function() {
|
|
// console.log('App Hide')
|
|
// }
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
/*每个页面公共css */
|
|
body{
|
|
background-color: #f6f6f6;
|
|
}
|
|
.d-flex{
|
|
display: flex;
|
|
}
|
|
.jcontent-between{
|
|
justify-content: space-between;
|
|
}
|
|
</style>
|
|
|