|
@@ -9,9 +9,9 @@
|
|
|
<span class="location">当前位置:</span>
|
|
|
<el-breadcrumb :separator-icon="ArrowRight">
|
|
|
<el-breadcrumb-item>
|
|
|
- <NuxtLink to="/">首页</NuxtLink>
|
|
|
+ <NuxtLink to="/">首页</NuxtLink>
|
|
|
</el-breadcrumb-item>
|
|
|
-
|
|
|
+
|
|
|
<el-breadcrumb-item> {{ title }}</el-breadcrumb-item>
|
|
|
</el-breadcrumb>
|
|
|
</div>
|
|
@@ -469,6 +469,7 @@ section {
|
|
|
@import url('@/assets/css/detail.less');
|
|
|
</style>
|
|
|
<script setup>
|
|
|
+import { ArrowRight } from '@element-plus/icons-vue'
|
|
|
//页面是否已经加载完毕
|
|
|
const pageLoading = ref(true)
|
|
|
const submitLoading = ref(false)
|
|
@@ -481,8 +482,8 @@ const remark = ref('nice')
|
|
|
//1.加载页面必备组件 start---------------------------------------->
|
|
|
import { ref, onMounted, reactive, nextTick, onBeforeUpdate } from 'vue';
|
|
|
import { useSeoMeta } from '#imports';
|
|
|
-import { ArrowRight } from '@element-plus/icons-vue'
|
|
|
-import { ElForm, ElFormItem, ElInput, ElRadioGroup, ElRadio,
|
|
|
+
|
|
|
+import {ElBreadcrumb, ElBreadcrumbItem, ElForm, ElFormItem, ElInput, ElRadioGroup, ElRadio,
|
|
|
ElCheckboxGroup, ElCheckbox, ElUpload, ElMessage,
|
|
|
ElSelect, ElOption, ElDatePicker, ElButton, genFileId,ElDialog } from 'element-plus'
|
|
|
|