|
|
@@ -0,0 +1,28 @@
|
|
|
+<template>
|
|
|
+ <el-empty :image-size="300" description=" " />
|
|
|
+ <div style="text-align: center; font-size: 40px; color: #666">
|
|
|
+ 船舶安检正在建设中
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script setup>
|
|
|
+import { ref, h, reactive, toRefs, onMounted } from "vue";
|
|
|
+import { ElNotification, ElMessageBox, ElMessage } from "element-plus";
|
|
|
+import store from "../../store";
|
|
|
+import router from "../../router";
|
|
|
+import md5 from "md5";
|
|
|
+import api from "../../apis/fetch";
|
|
|
+import { useRoute } from "vue-router";
|
|
|
+import _ from "lodash";
|
|
|
+import { subTimeStr } from "../../utils/utils";
|
|
|
+
|
|
|
+const route = useRoute();
|
|
|
+onMounted(() => {});
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+.btn {
|
|
|
+ height: 50px;
|
|
|
+ width: 180px;
|
|
|
+ border-radius: 0;
|
|
|
+}
|
|
|
+</style>
|