Commit 4d0a73c057d62d1ae6315962a9356a03413fc100

Authored by liuqimichale
0 parents

项目初始化

favicon.ico 0 → 100644
No preview for this file type
src/assets/css/commonCss/minxin.scss 0 → 100644
  1 +++ a/src/assets/css/commonCss/minxin.scss
  1 +@mixin fonttextStyle($size){
  2 + font-size: $size;
  3 + font-weight:bold;
  4 + -webkit-background-clip: text;
  5 + -webkit-text-fill-color: transparent;
  6 +}
  7 +
  8 +$fontBlue: -webkit-gradient(linear, 0 0, 0 bottom, from(rgba(0,202,254, 1)), to(rgba(39,114,244, 1)));
  9 +
  10 +$fontOrange: -webkit-gradient(linear, 0 0, 0 bottom, from(rgba(255,186,0, 1)), to(rgba(255,129,0, 1)));
... ...
src/assets/css/commonCss/reset.css 0 → 100644
  1 +++ a/src/assets/css/commonCss/reset.css
  1 +/* http://meyerweb.com/eric/tools/css/reset/
  2 + v4.0 | 20180602
  3 + License: none (public domain)
  4 +*/
  5 +
  6 +html, body, div, span, applet, object, iframe,
  7 +h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  8 +a, abbr, acronym, address, big, cite, code,
  9 +del, dfn, em, img, ins, kbd, q, s, samp,
  10 +small, strike, strong, sub, sup, tt, var,
  11 +b, u, i, center,
  12 +dl, dt, dd, ol, ul, li,
  13 +fieldset, form, label, legend,
  14 +table, caption, tbody, tfoot, thead, tr, th, td,
  15 +article, aside, canvas, details, embed,
  16 +figure, figcaption, footer, header, hgroup,
  17 +main, menu, nav, output, ruby, section, summary,
  18 +time, mark, audio, video {
  19 + margin: 0;
  20 + padding: 0;
  21 + border: 0;
  22 + font-size: 100%;
  23 + font: inherit;
  24 + vertical-align: baseline;
  25 +}
  26 +
  27 +/* HTML5 display-role reset for older browsers */
  28 +article, aside, details, figcaption, figure,
  29 +footer, header, hgroup, main, menu, nav, section {
  30 + display: block;
  31 +}
  32 +
  33 +/* HTML5 hidden-attribute fix for newer browsers */
  34 +*[hidden] {
  35 + display: none;
  36 +}
  37 +
  38 +body {
  39 + line-height: 1;
  40 +}
  41 +
  42 +/*html, body {*/
  43 +/*width: 100%;*/
  44 +/*height: 100%;*/
  45 +/*background: url("../assets/img/bg.jpg") no-repeat;*/
  46 +/*background-size: 100% 100%;*/
  47 +/*overflow: hidden;*/
  48 +/*}*/
  49 +
  50 +html, body{
  51 + height: 100%;
  52 + width: 100%;
  53 + font-family: "Microsoft YaHei";
  54 +
  55 + user-select: none;
  56 + -webkit-user-select: none;
  57 + -ms-user-select: none;
  58 + -o-user-select: none;
  59 + -moz-user-select: none;
  60 +}
  61 +body{
  62 +
  63 +}
  64 +
  65 +html {
  66 + box-sizing: border-box;
  67 +}
  68 +*, *:before, *:after {
  69 + box-sizing: inherit;
  70 +}
  71 +
  72 +ol, ul {
  73 + list-style: none;
  74 +}
  75 +
  76 +blockquote, q {
  77 + quotes: none;
  78 +}
  79 +
  80 +blockquote:before, blockquote:after,
  81 +q:before, q:after {
  82 + content: '';
  83 + content: none;
  84 +}
  85 +
  86 +table {
  87 + border-collapse: collapse;
  88 + border-spacing: 0;
  89 +}
  90 +
  91 +/*清除浮动*/
  92 +.clearfix:before,
  93 +.clearfix:after {
  94 + content: " ";
  95 + display: inline-block;
  96 + height: 0;
  97 + clear: both;
  98 + visibility: hidden;
  99 +}
  100 +
  101 +.clearfix {
  102 + *zoom: 1;
  103 +}
  104 +
  105 +/*隐藏*/
  106 +.dn {
  107 + display: none;
  108 +}
  109 +
  110 +.margin0-12 {
  111 + margin: 0 12px;
  112 +}
  113 +
  114 +.margin12-0 {
  115 + margin: 12px 0;
  116 +}
  117 +.flexfm{
  118 + flex: 1;
  119 +}
  120 +
  121 +.pos-rel{
  122 + position: relative;
  123 +}
  124 +.pos-abs{
  125 + position: absolute;
  126 +}
  127 +
... ...
src/components/commonHeaderFooter/VFooter.vue 0 → 100644
  1 +++ a/src/components/commonHeaderFooter/VFooter.vue
  1 +<template>
  2 + <div>1</div>
  3 +</template>
  4 +
  5 +<script>
  6 +export default {
  7 + name: 'VFooter'
  8 +}
  9 +</script>
  10 +
  11 +<style scoped lang="scss">
  12 +
  13 +</style>
... ...
src/components/commonHeaderFooter/VHeader.vue 0 → 100644
  1 +++ a/src/components/commonHeaderFooter/VHeader.vue
  1 +<template>
  2 + <div>1</div>
  3 +</template>
  4 +
  5 +<script>
  6 +export default {
  7 + name: 'VHeader'
  8 +}
  9 +</script>
  10 +
  11 +<style scoped lang="scss">
  12 +
  13 +</style>
... ...
src/views/about/index.vue 0 → 100644
  1 +++ a/src/views/about/index.vue
  1 +<template>
  2 + <div>关于我们</div>
  3 +</template>
  4 +
  5 +<script>
  6 +export default {
  7 + name: 'index'
  8 +}
  9 +</script>
  10 +
  11 +<style scoped lang="scss">
  12 +
  13 +</style>
... ...
src/views/contact/index.vue 0 → 100644
  1 +++ a/src/views/contact/index.vue
  1 +<template>
  2 + <div></div>
  3 +</template>
  4 +
  5 +<script>
  6 +export default {
  7 + name: 'index'
  8 +}
  9 +</script>
  10 +
  11 +<style scoped lang="scss">
  12 +
  13 +</style>
... ...
src/views/home/index.vue 0 → 100644
  1 +++ a/src/views/home/index.vue
  1 +<template>
  2 + <div>首页</div>
  3 +</template>
  4 +
  5 +<script>
  6 +export default {
  7 + name: 'index'
  8 +}
  9 +</script>
  10 +
  11 +<style scoped lang="scss">
  12 +
  13 +</style>
... ...