12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <script>
- export default {
- onPageNotFound(){
- mpvue.reLaunch({
- url:'/pages/index/main'
- })
- },
- 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;
- }
- #container {
- }
- .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>
|