123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <script>
- export default {
- onPageNotFound(){
- mpvue.reLaunch({
- url:'/pages/index/main'
- })
- },
-
- onShow(options){
- let query = options.query.other
- console.log('进入小程序了',options)
-
- if(query){
- console.log('外发给你')
- wx.setStorageSync("is_out", true);
- }else{
- wx.setStorageSync("is_out", false);
- }
-
- if(query == 1){
- console.log("外发其它券")
- wx.setStorageSync("is_other", true);
- }else{
- wx.setStorageSync("is_other", false);
- }
- },
- onHide(){
- wx.removeStorageSync("is_out");
- wx.removeStorageSync("is_other");
- },
- created() {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- },
- log() {
- console.log(`log at:${Date.now()}`)
- }
- }
- </script>
- <style>
- @import "../static/colorui/main.wxss";
- @import "../static/colorui/icon.wxss";
- .not_show{
- visibility: hidden;
- }
- .full_img {
- width: 100%;
- }
- .main_banner {
- height: 241px;
- }
- .title_color {
- color: #4C4C4C;
- }
- .cu-btn-primary {
- background-image: url("https://img.shuimuai.com/web/Rectangle.png");
- background-position: center;
- background-size: 100% 100%;
- width: 100%;
- }
- .under_line {
- text-decoration: underline;
- }
- .text-primary {
- color: #6858C4;
- }
- .bg-primary {
- background-color: #6858C4;
- }
- * {
- transition: width 2s;
- -moz-transition: width 2s;
- -webkit-transition: width 2s;
- -o-transition: width 2s;
- margin: 0px;
- padding: 0px;
- font-family: MicrosoftYaHei-Bold;
- }
- </style>
|