Bläddra i källkod

维修保养init-1

chao 4 år sedan
förälder
incheckning
6238340905

+ 17 - 0
src/main/resources/static/css/maintenance/form.css

@@ -0,0 +1,17 @@
+@charset "utf-8";
+li{list-style:none}
+/**
+ * PC端
+ */
+@media screen and (min-width:768px){
+
+
+}
+
+/**
+* 移动端
+*/
+@media screen and (max-width:768px){
+
+
+}

+ 17 - 0
src/main/resources/static/css/maintenance/index.css

@@ -0,0 +1,17 @@
+@charset "utf-8";
+li{list-style:none}
+/**
+ * PC端
+ */
+@media screen and (min-width:768px){
+
+
+}
+
+/**
+* 移动端
+*/
+@media screen and (max-width:768px){
+
+
+}

BIN
src/main/resources/static/img/base/icon.png


BIN
src/main/resources/static/img/base/icon_m.png


BIN
src/main/resources/static/img/maintenance/btn.png


+ 18 - 0
src/main/resources/static/js/maintenance/form.js

@@ -0,0 +1,18 @@
+var maintenanceForm = new Vue({
+    el: "#maintenanceForm",
+    data: {
+
+    },
+    computed: {
+
+    },
+    methods: {
+
+    },
+    created: function () {
+
+    },
+    mounted: function () {
+        var _self = this;
+    }
+});

+ 18 - 0
src/main/resources/static/js/maintenance/index.js

@@ -0,0 +1,18 @@
+var maintenance = new Vue({
+    el: "#maintenance",
+    data: {
+
+    },
+    computed: {
+
+    },
+    methods: {
+
+    },
+    created: function () {
+
+    },
+    mounted: function () {
+        var _self = this;
+    }
+});

+ 2 - 0
src/main/resources/templates/maintenance/form.html

@@ -4,6 +4,7 @@
 <head>
     <title>采美365网-维修申请</title>
     <template th:replace="components/headLink"></template>
+    <link th:href="@{/css/maintenance/form.css(v=${version})}" rel="stylesheet" type="text/css">
 </head>
 <body>
 <!-- 引用头部 -->
@@ -17,5 +18,6 @@
 <!-- 引入底部 -->
 <template th:replace="components/footer"></template>
 <template th:replace="components/footLink"></template>
+<script charset="utf-8" type="text/javascript" th:src="@{/js/maintenance/form.js(v=${version})}"></script>
 </body>
 </html>

+ 2 - 0
src/main/resources/templates/maintenance/index.html

@@ -4,6 +4,7 @@
 <head>
     <title>采美365网-中国美业全方位线上交易服务互动平台,做美业,上采美</title>
     <template th:replace="components/headLink"></template>
+    <link th:href="@{/css/maintenance/index.css(v=${version})}" rel="stylesheet" type="text/css">
 </head>
 <body>
 <!-- 引用头部 -->
@@ -26,5 +27,6 @@
 <!-- 引入底部 -->
 <template th:replace="components/footer"></template>
 <template th:replace="components/footLink"></template>
+<script charset="utf-8" type="text/javascript" th:src="@{/js/maintenance/index.js(v=${version})}"></script>
 </body>
 </html>