留言模块

This commit is contained in:
熊丽君
2022-01-25 09:30:32 +08:00
parent edb9b580cd
commit 52a068bf7d
3 changed files with 120 additions and 2 deletions

View File

@ -1,4 +1,4 @@
<template>
<template>
<div class="innovate">
<div class="box conter1000" v-loading="loading">
<div class="head">
@ -26,7 +26,9 @@
<div class="_l">
<div class="html" v-html="state.data.content"></div>
</div>
<div class="_r">联系我</div>
<div class="_r">
<webContact />
</div>
</div>
</div>
<webFooter></webFooter>
@ -36,6 +38,7 @@
<script setup>
import webFooter from "@/components/webFooter/index.vue";
import webBreadcrumb from "@/components/webBreadcrumb/index.vue";
import webContact from "@/components/webContact/index.vue";
import request from '@/utils/request'
// to do 创新服务详情
function detail (id) {
@ -143,6 +146,7 @@ function getData () {
._r {
flex: 1;
background-color: #fff;
padding: 15px;
}
}
}