@ -0,0 +1,13 @@
|
|||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
end_of_line = crlf
|
||||||
|
indent_size = 4
|
||||||
|
indent_style = space
|
||||||
|
insert_final_newline = false
|
||||||
|
tab_width = 4
|
||||||
|
|
||||||
|
|
||||||
|
[*.vue]
|
||||||
|
indent_size = 2
|
||||||
|
tab_width = 2
|
||||||
|
ij_vue_indent_children_of_top_level = template, script, style
|
@ -1,30 +1,23 @@
|
|||||||
# Logs
|
.DS_Store
|
||||||
logs
|
node_modules
|
||||||
*.log
|
/dist
|
||||||
|
|
||||||
|
|
||||||
|
# local env files
|
||||||
|
.env.local
|
||||||
|
.env.*.local
|
||||||
|
|
||||||
|
# Log files
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
pnpm-debug.log*
|
pnpm-debug.log*
|
||||||
lerna-debug.log*
|
|
||||||
|
|
||||||
node_modules
|
|
||||||
.DS_Store
|
|
||||||
dist
|
|
||||||
dist-ssr
|
|
||||||
coverage
|
|
||||||
*.local
|
|
||||||
|
|
||||||
/cypress/videos/
|
|
||||||
/cypress/screenshots/
|
|
||||||
|
|
||||||
# Editor directories and files
|
# Editor directories and files
|
||||||
.vscode/*
|
|
||||||
!.vscode/extensions.json
|
|
||||||
.idea
|
.idea
|
||||||
|
.vscode
|
||||||
*.suo
|
*.suo
|
||||||
*.ntvs*
|
*.ntvs*
|
||||||
*.njsproj
|
*.njsproj
|
||||||
*.sln
|
*.sln
|
||||||
*.sw?
|
*.sw?
|
||||||
|
|
||||||
*.tsbuildinfo
|
|
@ -0,0 +1,5 @@
|
|||||||
|
module.exports = {
|
||||||
|
presets: [
|
||||||
|
'@vue/cli-plugin-babel/preset'
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "es5",
|
||||||
|
"module": "esnext",
|
||||||
|
"baseUrl": "./",
|
||||||
|
"moduleResolution": "node",
|
||||||
|
"paths": {
|
||||||
|
"@/*": [
|
||||||
|
"src/*"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"lib": [
|
||||||
|
"esnext",
|
||||||
|
"dom",
|
||||||
|
"dom.iterable",
|
||||||
|
"scripthost"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"name": "web",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"serve": "vue-cli-service serve",
|
||||||
|
"build": "vue-cli-service build"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"core-js": "^3.8.3",
|
||||||
|
"goeasy": "^2.12.4",
|
||||||
|
"vue": "^3.2.13",
|
||||||
|
"vue-router": "^4.0.3"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@vue/cli-plugin-babel": "~5.0.0",
|
||||||
|
"@vue/cli-service": "~5.0.0"
|
||||||
|
},
|
||||||
|
"browserslist": [
|
||||||
|
"> 1%",
|
||||||
|
"last 2 versions",
|
||||||
|
"not dead",
|
||||||
|
"not ie 11"
|
||||||
|
]
|
||||||
|
}
|
After Width: | Height: | Size: 4.9 KiB |
@ -0,0 +1,17 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||||
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||||
|
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<noscript>
|
||||||
|
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
||||||
|
</noscript>
|
||||||
|
<div id="app"></div>
|
||||||
|
<!-- built files will be auto injected -->
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -1,6 +1,6 @@
|
|||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
|
||||||
const baseURL = '192.168.254.35:8080'
|
const baseURL = 'http://192.168.243.35:9000'
|
||||||
|
|
||||||
export const login = (data) => {
|
export const login = (data) => {
|
||||||
return axios.post(`${baseURL}/Login/login`, data)
|
return axios.post(`${baseURL}/Login/login`, data)
|
Before Width: | Height: | Size: 276 B After Width: | Height: | Size: 276 B |
@ -0,0 +1,32 @@
|
|||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'return',
|
||||||
|
methods: {
|
||||||
|
gotohome() {
|
||||||
|
this.$router.push('/home');
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<div class="return">
|
||||||
|
<button class="return-button" @click="gotohome()">返回</button>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<style>.return-button {
|
||||||
|
/* 定义返回按钮的样式 */
|
||||||
|
position: fixed; /* 使按钮位置固定 */
|
||||||
|
top: 10px;
|
||||||
|
left: 10px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: #ccc;
|
||||||
|
color: #333;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
.return-button:hover {
|
||||||
|
background-color: #aaaaaa;
|
||||||
|
}
|
||||||
|
} </style>
|
Before Width: | Height: | Size: 787 KiB After Width: | Height: | Size: 787 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 4.4 MiB |
After Width: | Height: | Size: 1.4 MiB |
@ -0,0 +1,75 @@
|
|||||||
|
<template>
|
||||||
|
<div class="return">
|
||||||
|
<button class="returnList" @click="returnList()">返回</button>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h1>订单列表</h1>
|
||||||
|
<div
|
||||||
|
v-for="(list, index) in lists"
|
||||||
|
:key="lists.orderId"
|
||||||
|
class="order-box"
|
||||||
|
@click="goToOrderDetails(list.did)"
|
||||||
|
>
|
||||||
|
<p>目的地: {{ list.city }}</p>
|
||||||
|
<p>开始时间: {{ list.departureDate }}</p>
|
||||||
|
<p>结束时间: {{ list.endDate }}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
phone: sessionStorage.getItem('phone') || '',
|
||||||
|
lists: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
async created() {
|
||||||
|
// 在组件创建后立即发送请求
|
||||||
|
axios.get(`http://192.168.243.35:9000/SendDemand/sendAllDemands?phone=${this.phone}`)
|
||||||
|
.then(response => {
|
||||||
|
this.lists = response.data
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
goToOrderDetails(orderId) {
|
||||||
|
this.$router.push({ name: 'OrderDetails', params: { orderId } });
|
||||||
|
},
|
||||||
|
returnList() {
|
||||||
|
this.$router.push('/mine');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.order-box {
|
||||||
|
/* 样式代码,用于美化订单盒子 */
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
padding: 10px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.returnList {
|
||||||
|
/* 定义返回按钮的样式 */
|
||||||
|
position: fixed; /* 使按钮位置固定 */
|
||||||
|
top: 10px;
|
||||||
|
left: 10px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: #ccc;
|
||||||
|
color: #333;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.returnList:hover {
|
||||||
|
background-color: #aaaaaa;
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,93 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<h2>订单号: {{ orderId }}</h2>
|
||||||
|
<div v-for="(service, index) in services" :key="service.gid" class="service-box">
|
||||||
|
<div class="service-info">
|
||||||
|
<p class="nickname">{{ service.nickname }}</p>
|
||||||
|
<p class="end-date">{{ service.endDate }}</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button class="send-button" @click="sendServiceId(service.gid)">点击发送</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
/* 为按钮添加一些样式 */
|
||||||
|
.send-button {
|
||||||
|
display: block;
|
||||||
|
margin-left: auto; /* 将按钮推到右侧 */
|
||||||
|
margin-top: 10px; /* 顶部添加一些间距 */
|
||||||
|
padding: 5px 10px; /* 内边距 */
|
||||||
|
border: none; /* 移除边框 */
|
||||||
|
border-radius: 4px; /* 添加圆角 */
|
||||||
|
background-color: #4CAF50; /* 背景色 */
|
||||||
|
color: white; /* 文字颜色 */
|
||||||
|
cursor: pointer; /* 鼠标悬停时显示小手 */
|
||||||
|
transition: background-color 0.3s ease; /* 添加背景色过渡效果 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.send-button:hover {
|
||||||
|
background-color: #45a049; /* 鼠标悬停时改变背景色 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 为服务信息盒子添加样式 */
|
||||||
|
.service-box {
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
padding: 15px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
background-color: #fff; /* 添加背景色 */
|
||||||
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
|
||||||
|
border-radius: 5px; /* 添加圆角 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 为昵称和结束日期添加样式 */
|
||||||
|
.service-info {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between; /* 内容两端对齐 */
|
||||||
|
align-items: center; /* 内容垂直居中 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.nickname, .end-date {
|
||||||
|
margin: 0; /* 移除默认的外边距 */
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props: ['orderId'],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
services: []
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
async sendServiceId(gid) {
|
||||||
|
try {
|
||||||
|
// 假设后端API接受gid和did作为POST请求体
|
||||||
|
const orderIdAsInt = parseInt(this.orderId, 10);
|
||||||
|
const gidAsInt = parseInt(gid, 10);
|
||||||
|
const response = await axios.post('http://192.168.243.35:9000/DemandMatch/match', { did:orderIdAsInt,gid:gidAsInt});
|
||||||
|
alert('已向导游发送确认信息');
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error sending service ID and order ID:', error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async created() {
|
||||||
|
// 在组件创建后立即发送请求
|
||||||
|
axios.get(`http://192.168.243.35:9000/DemandMatch/register?did=${this.orderId}`)
|
||||||
|
.then(response => {
|
||||||
|
this.services = response.data
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
@ -0,0 +1,161 @@
|
|||||||
|
<template>
|
||||||
|
<div class="item-manager">
|
||||||
|
<el-button type="primary" @click="add">Add Item</el-button>
|
||||||
|
<el-button type="danger" @click="onDelete">Delete Item</el-button>
|
||||||
|
<el-scrollbar class="custom-scrollbar" max-height="800px">
|
||||||
|
<div v-for="(item, index) in count" :key="index" class="item-container">
|
||||||
|
<p class="scrollbar-demo-item">{{ item }}</p>
|
||||||
|
</div>
|
||||||
|
<div v-for="review in reviews" :key="review.id" class="review-container">
|
||||||
|
<p class="scrollbar-demo-item">{{ review.content }}</p>
|
||||||
|
</div>
|
||||||
|
</el-scrollbar>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.item-manager {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-scrollbar {
|
||||||
|
width: 100%; /* 根据需要调整滚动条容器的宽度 */
|
||||||
|
border-radius: 8px; /* 添加圆角 */
|
||||||
|
overflow: auto; /* 确保滚动条出现 */
|
||||||
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 添加阴影 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.scrollbar-demo-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 50px;
|
||||||
|
margin: 10px;
|
||||||
|
padding: 0 15px; /* 添加内边距 */
|
||||||
|
border-radius: 4px;
|
||||||
|
background: var(--el-color-primary-light-9);
|
||||||
|
color: var(--el-color-primary);
|
||||||
|
transition: background-color 0.3s ease; /* 添加背景色过渡效果 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-container,
|
||||||
|
.review-container {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.custom-scrollbar::-webkit-scrollbar {
|
||||||
|
width: 10px;
|
||||||
|
}
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-track {
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-thumb {
|
||||||
|
background: #888;
|
||||||
|
}
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props: ['orderId'],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
ebody: '',
|
||||||
|
satisfaction:'',
|
||||||
|
did:'',
|
||||||
|
evaluation: {}, // 添加一个用于存储评价信息的变量
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
send() {
|
||||||
|
axios.post('http://192.168.243.35:9000/evaluate/addEvaluation', {
|
||||||
|
did: this.orderId,
|
||||||
|
satisfaction: this.evaluation.satisfaction,
|
||||||
|
ebody: this.evaluation.ebody,
|
||||||
|
}, {
|
||||||
|
withCredentials: true,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
}
|
||||||
|
}).then(response => {
|
||||||
|
// 处理成功发送评价的情况
|
||||||
|
location.reload();
|
||||||
|
}).catch(error => {
|
||||||
|
// 处理发送评价失败的情况
|
||||||
|
console.error('评价发送失败', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
fetchEvaluation() {
|
||||||
|
axios.get(`http://192.168.243.35:9000/evaluate/getEvaluation?eid=${this.orderId}`)
|
||||||
|
.then(response => {
|
||||||
|
this.evaluation = response.data;// 将获取到的评价信息存储到 evaluation 变量中
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('获取评价信息失败', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
handleRateChange(satisfaction) {
|
||||||
|
this.evaluation.satisfaction = satisfaction; // 更新星级值
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.fetchEvaluation(); // 在组件挂载时调用 fetchEvaluation 方法获取评价信息
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.user-feedback {
|
||||||
|
max-width: 600px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.feedback-input {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
width: 100%;
|
||||||
|
padding: 8px;
|
||||||
|
font-size: 16px;
|
||||||
|
border: 1px solid #28a7a3;
|
||||||
|
border-radius: 4px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
padding: 8px 16px;
|
||||||
|
font-size: 16px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 4px;
|
||||||
|
background-color: #007bff;
|
||||||
|
color: #003f3f;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.submitted-feedback {
|
||||||
|
border-top: 1px solid #a6cfee;
|
||||||
|
padding-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.feedback-item {
|
||||||
|
background-color: #abd4ee;
|
||||||
|
border: 1px solid #c2f1fb;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.feedback-item p {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,94 @@
|
|||||||
|
<template>
|
||||||
|
<div class="item-manager">
|
||||||
|
<el-button type="primary" @click="add">Add Item</el-button>
|
||||||
|
<el-button type="danger" @click="onDelete">Delete Item</el-button>
|
||||||
|
<el-scrollbar class="custom-scrollbar" max-height="800px">
|
||||||
|
<div v-for="(item, index) in count" :key="index" class="item-container">
|
||||||
|
<p class="scrollbar-demo-item">{{ item }}</p>
|
||||||
|
</div>
|
||||||
|
<div v-for="review in reviews" :key="review.id" class="review-container">
|
||||||
|
<p class="scrollbar-demo-item">{{ review.content }}</p>
|
||||||
|
</div>
|
||||||
|
</el-scrollbar>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.scrollbar-demo-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 50px;
|
||||||
|
margin: 10px;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 4px;
|
||||||
|
background: var(--el-color-primary-light-9);
|
||||||
|
color: var(--el-color-primary);
|
||||||
|
}
|
||||||
|
.item-manager {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.custom-scrollbar {
|
||||||
|
width: 100%; /* 根据需要调整滚动条容器的宽度 */
|
||||||
|
border-radius: 8px; /* 添加圆角 */
|
||||||
|
overflow: auto; /* 确保滚动条出现 */
|
||||||
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 添加阴影 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.scrollbar-demo-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 50px;
|
||||||
|
margin: 10px;
|
||||||
|
padding: 0 15px; /* 添加内边距 */
|
||||||
|
border-radius: 4px;
|
||||||
|
background: var(--el-color-primary-light-9);
|
||||||
|
color: var(--el-color-primary);
|
||||||
|
transition: background-color 0.3s ease; /* 添加背景色过渡效果 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-container,
|
||||||
|
.review-container {
|
||||||
|
|
||||||
|
}
|
||||||
|
.custom-scrollbar::-webkit-scrollbar {
|
||||||
|
width: 10px;
|
||||||
|
}
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-track {
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-thumb {
|
||||||
|
background: #888;
|
||||||
|
}
|
||||||
|
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { ref } from 'vue'
|
||||||
|
|
||||||
|
|
||||||
|
const count = ref(3)
|
||||||
|
const reviews = ref([
|
||||||
|
{ id: 1, content: 'Great product!' },
|
||||||
|
{ id: 2, content: 'Fast shipping!' },
|
||||||
|
{ id: 3, content: 'Excellent customer service!' }
|
||||||
|
])
|
||||||
|
|
||||||
|
const add = () => {
|
||||||
|
count.value++
|
||||||
|
}
|
||||||
|
const onDelete = () => {
|
||||||
|
if (count.value > 0) {
|
||||||
|
count.value--
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
@ -0,0 +1,146 @@
|
|||||||
|
<template>
|
||||||
|
<div class="home-page">
|
||||||
|
<div class="page-header">
|
||||||
|
<h1 class="page-title">首页</h1>
|
||||||
|
</div>
|
||||||
|
<div class="carousel-container">
|
||||||
|
<el-carousel :interval="4000" arrow="always" type="card">
|
||||||
|
<el-carousel-item
|
||||||
|
v-for="(item, index) in imagePaths"
|
||||||
|
:key="index"
|
||||||
|
:class="['carousel-item', index === Math.floor(imagePaths.length / 2) ? 'center-item' : '']"
|
||||||
|
>
|
||||||
|
<img :src="item" :alt="`Image ${index + 1}`" class="carousel-image">
|
||||||
|
</el-carousel-item>
|
||||||
|
</el-carousel>
|
||||||
|
</div>
|
||||||
|
<div class="search-container">
|
||||||
|
<input type="text" class="search-input" placeholder="世界这么大出去看看吧">
|
||||||
|
<button class="search-button" @click="gotoSearchPage()">搜索</button>
|
||||||
|
</div>
|
||||||
|
<div class="return">
|
||||||
|
<button class="addDemand-button" @click="gotoAddDemandPage()">我要出行</button>
|
||||||
|
<isRegisterGuide />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div><NavigationBar /></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useRouter } from 'vue-router';
|
||||||
|
import NavigationBar from '../components/NavigationBar.vue';
|
||||||
|
import isRegisterGuide from '../components/isRegisterGuide.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
NavigationBar,
|
||||||
|
isRegisterGuide
|
||||||
|
},
|
||||||
|
setup() {
|
||||||
|
const imagePaths = ref([
|
||||||
|
'https://dimg04.c-ctrip.com/images/0102p12000828jmogCF2E_C_1600_1200.jpg',
|
||||||
|
'https://pic.kuaizhan.com/g3/b7/18/7a16-bad5-4d28-b5aa-571710c674cb36',
|
||||||
|
'https://img.shetu66.com/2023/07/11/1689058469100908.png'
|
||||||
|
]);
|
||||||
|
const router = useRouter();
|
||||||
|
// 假设你有一个跳转到搜索页面的方法
|
||||||
|
function gotoSearchPage() {
|
||||||
|
router.push('/searchPage');
|
||||||
|
}
|
||||||
|
function gotoAddDemandPage() {
|
||||||
|
router.push('/addDemandPage');
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
imagePaths,
|
||||||
|
gotoSearchPage,
|
||||||
|
gotoAddDemandPage
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.home-page {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100vh; /* 设置页面高度为视口高度 */
|
||||||
|
padding: 20px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-title {
|
||||||
|
margin: 0 0 20px; /* 为标题添加下边距,与轮播图分隔开 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.carousel-container {
|
||||||
|
width: 100%;
|
||||||
|
/* 根据需要添加其他样式 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.carousel-item {
|
||||||
|
/* 默认的轮播项样式 */
|
||||||
|
width: 80%; /* 假设默认宽度是80% */
|
||||||
|
margin: 0 auto; /* 水平居中 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.center-item {
|
||||||
|
/* 居中的轮播项样式 */
|
||||||
|
width: 100%; /* 居中的项宽度为100% */
|
||||||
|
/* 可以添加其他样式,如高度、边框等 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.carousel-image {
|
||||||
|
width: 100%; /* 图片宽度与轮播项宽度一致 */
|
||||||
|
height: auto; /* 保持图片比例 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-container {
|
||||||
|
margin-top: 20px;
|
||||||
|
text-align: center; /* 让搜索框和按钮居中 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-input {
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 4px;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
width: 300px; /* 可选,设置输入框宽度 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-button {
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-radius: 4px;
|
||||||
|
background-color: #4CAF50; /* 绿色背景 */
|
||||||
|
border: none;
|
||||||
|
color: white; /* 白色文字 */
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 16px;
|
||||||
|
margin: 4px 2px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.addDemand-button {
|
||||||
|
/* 定义返回按钮的样式 */
|
||||||
|
position: fixed; /* 使按钮位置固定 */
|
||||||
|
top: 10px;
|
||||||
|
left: 10px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: #ccc;
|
||||||
|
color: #333;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.addDemand-button:hover {
|
||||||
|
background-color: #aaaaaa;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* 可以添加更多样式来进一步美化 */
|
||||||
|
</style>
|
@ -0,0 +1,188 @@
|
|||||||
|
<template>
|
||||||
|
<div class="return">
|
||||||
|
<button class="returnList" @click="returnList()">返回</button>
|
||||||
|
</div>
|
||||||
|
<h1>订单</h1>
|
||||||
|
<div class="order-details">
|
||||||
|
<h2>订单详情</h2>
|
||||||
|
<p>目的地: {{ list.city }}</p>
|
||||||
|
<p>开始时间: {{ list.departureDate }}</p>
|
||||||
|
<p>结束时间: {{ list.endDate }}</p>
|
||||||
|
<p>创建时间: {{ list.createTime }}</p>
|
||||||
|
<p>备注: {{ list.message }}</p>
|
||||||
|
<p>当前状态:
|
||||||
|
<span v-if="list.status === 0">匹配中</span>
|
||||||
|
<span v-else-if="list.status === 1">匹配中</span>
|
||||||
|
<span v-else-if="list.status === 2">匹配成功</span>
|
||||||
|
<span v-else-if="list.status === 3">已完成</span>
|
||||||
|
<span v-else>未知状态</span>
|
||||||
|
</p>
|
||||||
|
<div v-if="list.status === 0">
|
||||||
|
<div><button @click="goToMatchDetail(orderId)">查看详情</button></div>
|
||||||
|
<div><button @click="goToDemandMatched(orderId)">查看申请</button></div>
|
||||||
|
<div><button @click="cancelTrip(orderId)">取消行程</button></div>
|
||||||
|
</div>
|
||||||
|
<div v-if="list.status === 1">
|
||||||
|
<div><button @click="goToMatchDetail(orderId)">查看详情</button></div>
|
||||||
|
<div><button @click="goToDemandMatched(orderId)">查看申请</button></div>
|
||||||
|
<div><button @click="cancelTrip(orderId)">取消行程</button></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="list.status === 2">
|
||||||
|
<div><button @click="cancel(orderId)">取消出行</button></div>
|
||||||
|
<div><button @click="over(orderId)">行程完成</button></div>
|
||||||
|
</div>
|
||||||
|
<div><button v-if="list.status === 3" @click="goToEvaluateTrip(orderId)">行程评价</button></div>
|
||||||
|
<div><button v-if="list.status === 3" @click="deleteOrder(orderId)">删除订单</button></div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.returnList {
|
||||||
|
/* 定义返回按钮的样式 */
|
||||||
|
position: fixed; /* 使按钮位置固定 */
|
||||||
|
top: 10px;
|
||||||
|
left: 10px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: #ccc;
|
||||||
|
color: #333;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.returnList:hover {
|
||||||
|
background-color: #aaaaaa;
|
||||||
|
}
|
||||||
|
|
||||||
|
.order-details {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
padding: 20px;
|
||||||
|
background-color: #f5f5f5; /* 浅灰色背景 */
|
||||||
|
border-radius: 10px;
|
||||||
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 阴影效果 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.order-details h2 {
|
||||||
|
margin-bottom: 20px; /* 增加标题与内容之间的间距 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.order-details p {
|
||||||
|
margin-bottom: 10px; /* 增加段落之间的间距 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.order-details button {
|
||||||
|
margin-right: 10px; /* 增加按钮之间的间距 */
|
||||||
|
padding: 10px 20px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.order-details button:hover {
|
||||||
|
background-color: #ddd; /* 按钮点击时的背景色 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 根据状态为按钮添加不同的样式 */
|
||||||
|
.order-details button.cancel {
|
||||||
|
background-color: #f44336; /* 红色背景,表示取消操作 */
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.order-details button.over {
|
||||||
|
background-color: #4CAF50; /* 绿色背景,表示完成操作 */
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props: ['orderId'],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
phone: sessionStorage.getItem('phone') || '',
|
||||||
|
list: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
async created() {
|
||||||
|
// 在组件创建后立即发送请求
|
||||||
|
axios.get(`http://192.168.243.35:9000/SendDemand/demand?did=${this.orderId}`)
|
||||||
|
.then(response => {
|
||||||
|
this.list = response.data
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
goToMatchDetail(orderId) {
|
||||||
|
this.$router.push({ name: 'MatchDetail', params: { orderId } });
|
||||||
|
},
|
||||||
|
goToDemandMatched(orderId) {
|
||||||
|
this.$router.push({ name: 'DemandMatched', params: { orderId } });
|
||||||
|
},
|
||||||
|
goToEvaluateTrip(orderId) {
|
||||||
|
this.$router.push({ name: 'Evaluation', params: { orderId } });
|
||||||
|
},
|
||||||
|
cancel(orderId) {
|
||||||
|
const did = parseInt(this.orderId, 10);
|
||||||
|
axios.post(`http://192.168.243.35:9000/DemandMatch/refuse`,{did:did})
|
||||||
|
.then(response => {
|
||||||
|
if(response.data == 1){
|
||||||
|
alert('取消成功');
|
||||||
|
location.reload();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
cancelTrip(orderId) {
|
||||||
|
const did = parseInt(this.orderId, 10);
|
||||||
|
axios.post(`http://192.168.243.35:9000/demands/delbyid`,{did:did})
|
||||||
|
.then(response => {
|
||||||
|
if(response.data == 1){
|
||||||
|
alert('取消成功');
|
||||||
|
this.$router.push('/demandlist');
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
over(orderId) {
|
||||||
|
const did = parseInt(this.orderId, 10);
|
||||||
|
axios.post(`http://192.168.243.35:9000/DemandMatch/finish`,{did:did})
|
||||||
|
.then(response => {
|
||||||
|
if(response.data == 1){
|
||||||
|
location.reload();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
deleteOrder(orderId) {
|
||||||
|
const did = parseInt(this.orderId, 10);
|
||||||
|
axios.post(`http://192.168.243.35:9000/DemandMatch/delete`,{did:did})
|
||||||
|
.then(response => {
|
||||||
|
if(response.data == 1){
|
||||||
|
alert('删除成功');
|
||||||
|
this.$router.push('/demandlist');
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
returnList() {
|
||||||
|
this.$router.push('/demandlist');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,79 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<Return></Return>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h1>平台导游资格申请</h1>
|
||||||
|
<form @submit.prevent="submitForm">
|
||||||
|
<div>
|
||||||
|
<label for="experience">有无相关经历:</label>
|
||||||
|
<input type="radio" id="has-experience-yes" value="true" v-model="registerToGuide.re" required>
|
||||||
|
<label for="has-experience-yes">有</label>
|
||||||
|
<input type="radio" id="has-experience-no" value="false" v-model="registerToGuide.re">
|
||||||
|
<label for="has-experience-no">无</label>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label for="rsd">居住地区:</label>
|
||||||
|
<input type="text" id="rsd" v-model="registerToGuide.rsd">
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label for="familiar-area">熟悉区域:</label>
|
||||||
|
<textarea id="familiar-area" v-model="registerToGuide.fa"></textarea>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<label for="syns">个人简介:</label>
|
||||||
|
<textarea id="syns" v-model="registerToGuide.syns"></textarea>
|
||||||
|
</div>
|
||||||
|
<button @click="Submit()">提交申请</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import axios from 'axios';
|
||||||
|
import Return from '../components/return.vue'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return{
|
||||||
|
registerToGuide:{
|
||||||
|
uid:0,
|
||||||
|
re: '',
|
||||||
|
rsd: '',
|
||||||
|
fa: '',
|
||||||
|
syns: '',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods:{
|
||||||
|
Submit(){
|
||||||
|
axios.get(`http://192.168.243.35:9000/users/getUid?phone=${sessionStorage.getItem('phone')}`)
|
||||||
|
.then(response => {
|
||||||
|
this.registerToGuide.uid = response.data
|
||||||
|
axios.post(`http://192.168.243.35:9000/users/registerToGuide`,{registerToGuide:this.registerToGuide})
|
||||||
|
.then(response => {
|
||||||
|
if(response.data == 1){
|
||||||
|
alert("申请成功!")
|
||||||
|
this.$router.push('/addServe')
|
||||||
|
}else{
|
||||||
|
alert("申请未通过!")
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
components:{
|
||||||
|
Return,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
/* 添加你的样式 */
|
||||||
|
</style>
|
@ -0,0 +1,133 @@
|
|||||||
|
<template>
|
||||||
|
<div class="return">
|
||||||
|
<button class="returnList" @click="returnList()">返回</button>
|
||||||
|
</div>
|
||||||
|
<h1>订单</h1>
|
||||||
|
<div class="server-details">
|
||||||
|
<h2>订单详情</h2>
|
||||||
|
<p>目的地: {{ list.city }}</p>
|
||||||
|
<p>开始时间: {{ list.departureDate }}</p>
|
||||||
|
<p>结束时间: {{ list.endDate }}</p>
|
||||||
|
<p>创建时间: {{ list.createTime }}</p>
|
||||||
|
<p>备注: {{ list.message }}</p>
|
||||||
|
<p>当前状态:
|
||||||
|
<span v-if="list.status === 0">匹配中</span>
|
||||||
|
<span v-else-if="list.status === 1">匹配中</span>
|
||||||
|
<span v-else-if="list.status === 2">匹配成功</span>
|
||||||
|
<span v-else-if="list.status === 3">已完成</span>
|
||||||
|
<span v-else>未知状态</span>
|
||||||
|
</p>
|
||||||
|
<div>
|
||||||
|
<button v-if="list.status === 0" @click="goToServerMatch(serverId)">查看详情</button>
|
||||||
|
<button v-if="list.status === 1" @click="goToServerMatch(serverId)">查看详情</button>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<button v-if="list.status === 0" @click="goToServerMatched(serverId)">查看申请</button>
|
||||||
|
<button v-if="list.status === 1" @click="goToServerMatched(serverId)">查看申请</button>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<button v-if="list.status === 0" @click="cancelTrip(serverId)">取消服务</button>
|
||||||
|
<button v-if="list.status === 1" @click="cancelTrip(serverId)">取消服务</button>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<button v-if="list.status === 2" @click="cancel(serverId)">取消服务</button>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<button v-if="list.status === 3" @click="deleteOrder(serverId)">删除订单</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.returnList {
|
||||||
|
/* 定义返回按钮的样式 */
|
||||||
|
position: fixed; /* 使按钮位置固定 */
|
||||||
|
top: 10px;
|
||||||
|
left: 10px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: #ccc;
|
||||||
|
color: #333;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.returnList:hover {
|
||||||
|
background-color: #aaaaaa;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props: ['serverId'],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
phone: sessionStorage.getItem('phone') || '',
|
||||||
|
list: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
async created() {
|
||||||
|
// 在组件创建后立即发送请求
|
||||||
|
axios.get(`http://192.168.243.35:9000/guideService/findbyid?gid=${this.serverId}`)
|
||||||
|
.then(response => {
|
||||||
|
this.list = response.data
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
goToServerMatch(serverId) {
|
||||||
|
this.$router.push({ name: 'ServerMatch', params: { serverId } });
|
||||||
|
},
|
||||||
|
goToServerMatched(serverId) {
|
||||||
|
this.$router.push({ name: 'ServerMatched', params: { serverId } });
|
||||||
|
},
|
||||||
|
cancel(serverId) {
|
||||||
|
const gid = parseInt(this.serverId, 10);
|
||||||
|
axios.post(`http://192.168.243.35:9000/GuideMatch/refuse`,{gid:gid})
|
||||||
|
.then(response => {
|
||||||
|
if(response.data == 1){
|
||||||
|
alert('取消成功');
|
||||||
|
location.reload();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
cancelTrip(serverId) {
|
||||||
|
const gid = parseInt(this.serverId, 10);
|
||||||
|
axios.post(`http://192.168.243.35:9000/guideService/delbyid`,{gid:gid})
|
||||||
|
.then(response => {
|
||||||
|
if(response.data == 1){
|
||||||
|
alert('取消成功');
|
||||||
|
this.$router.push('/serverList')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
deleteOrder(serverId) {
|
||||||
|
const gid = parseInt(this.serverId, 10);
|
||||||
|
axios.post(`http://192.168.243.35:9000/GuideMatch/delete`,{gid:gid})
|
||||||
|
.then(response => {
|
||||||
|
if(response.data == 1){
|
||||||
|
alert('删除成功');
|
||||||
|
this.$router.push('/serverList')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
returnList() {
|
||||||
|
this.$router.push('/serverList');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,75 @@
|
|||||||
|
<template>
|
||||||
|
<div class="return">
|
||||||
|
<button class="returnList" @click="returnList()">返回</button>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h1>订单列表</h1>
|
||||||
|
<div
|
||||||
|
v-for="(list, index) in lists"
|
||||||
|
:key="list.gid"
|
||||||
|
class="order-box"
|
||||||
|
@click="goToServerDetails(list.gid)"
|
||||||
|
>
|
||||||
|
<p>目的地: {{ list.city }}</p>
|
||||||
|
<p>开始时间: {{ list.departureDate }}</p>
|
||||||
|
<p>结束时间: {{ list.endDate }}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
phone: sessionStorage.getItem('phone') || '',
|
||||||
|
lists: [],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
async created() {
|
||||||
|
// 在组件创建后立即发送请求
|
||||||
|
axios.get(`http://192.168.243.35:9000/SendGuideService/sendAllGuideService?phone=${this.phone}`)
|
||||||
|
.then(response => {
|
||||||
|
this.lists = response.data
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error fetching user:', error);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
goToServerDetails(serverId) {
|
||||||
|
this.$router.push({ name: 'ServerDetail', params: { serverId } });
|
||||||
|
},
|
||||||
|
returnList() {
|
||||||
|
this.$router.push('/mine');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.order-box {
|
||||||
|
/* 样式代码,用于美化订单盒子 */
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
padding: 10px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.returnList {
|
||||||
|
/* 定义返回按钮的样式 */
|
||||||
|
position: fixed; /* 使按钮位置固定 */
|
||||||
|
top: 10px;
|
||||||
|
left: 10px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: #ccc;
|
||||||
|
color: #333;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.returnList:hover {
|
||||||
|
background-color: #aaaaaa;
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,146 @@
|
|||||||
|
<template>
|
||||||
|
<div class="home-page">
|
||||||
|
<div class="page-header">
|
||||||
|
<h1 class="page-title">首页</h1>
|
||||||
|
</div>
|
||||||
|
<div class="carousel-container">
|
||||||
|
<el-carousel :interval="4000" arrow="always" type="card">
|
||||||
|
<el-carousel-item
|
||||||
|
v-for="(item, index) in imagePaths"
|
||||||
|
:key="index"
|
||||||
|
:class="['carousel-item', index === Math.floor(imagePaths.length / 2) ? 'center-item' : '']"
|
||||||
|
>
|
||||||
|
<img :src="item" :alt="`Image ${index + 1}`" class="carousel-image">
|
||||||
|
</el-carousel-item>
|
||||||
|
</el-carousel>
|
||||||
|
</div>
|
||||||
|
<div class="search-container">
|
||||||
|
<input type="text" class="search-input" placeholder="世界这么大出去看看吧">
|
||||||
|
<button class="search-button" @click="gotoSearchPage()">搜索</button>
|
||||||
|
</div>
|
||||||
|
<div class="return">
|
||||||
|
<button class="addDemand-button" @click="gotoAddDemandPage()">我要出行</button>
|
||||||
|
<isRegisterGuide />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div><NavigationBar /></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useRouter } from 'vue-router';
|
||||||
|
import NavigationBar from '../components/NavigationBar.vue';
|
||||||
|
import isRegisterGuide from '../components/isRegisterGuide.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
NavigationBar,
|
||||||
|
isRegisterGuide
|
||||||
|
},
|
||||||
|
setup() {
|
||||||
|
const imagePaths = ref([
|
||||||
|
'https://dimg04.c-ctrip.com/images/0102p12000828jmogCF2E_C_1600_1200.jpg',
|
||||||
|
'https://pic.kuaizhan.com/g3/b7/18/7a16-bad5-4d28-b5aa-571710c674cb36',
|
||||||
|
'https://img.shetu66.com/2023/07/11/1689058469100908.png'
|
||||||
|
]);
|
||||||
|
const router = useRouter();
|
||||||
|
// 假设你有一个跳转到搜索页面的方法
|
||||||
|
function gotoSearchPage() {
|
||||||
|
router.push('/searchPage');
|
||||||
|
}
|
||||||
|
function gotoAddDemandPage() {
|
||||||
|
router.push('/addDemandPage');
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
imagePaths,
|
||||||
|
gotoSearchPage,
|
||||||
|
gotoAddDemandPage
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.home-page {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100vh; /* 设置页面高度为视口高度 */
|
||||||
|
padding: 20px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-title {
|
||||||
|
margin: 0 0 20px; /* 为标题添加下边距,与轮播图分隔开 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.carousel-container {
|
||||||
|
width: 100%;
|
||||||
|
/* 根据需要添加其他样式 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.carousel-item {
|
||||||
|
/* 默认的轮播项样式 */
|
||||||
|
width: 80%; /* 假设默认宽度是80% */
|
||||||
|
margin: 0 auto; /* 水平居中 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.center-item {
|
||||||
|
/* 居中的轮播项样式 */
|
||||||
|
width: 100%; /* 居中的项宽度为100% */
|
||||||
|
/* 可以添加其他样式,如高度、边框等 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.carousel-image {
|
||||||
|
width: 100%; /* 图片宽度与轮播项宽度一致 */
|
||||||
|
height: auto; /* 保持图片比例 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-container {
|
||||||
|
margin-top: 20px;
|
||||||
|
text-align: center; /* 让搜索框和按钮居中 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-input {
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 4px;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
width: 300px; /* 可选,设置输入框宽度 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-button {
|
||||||
|
padding: 10px 20px;
|
||||||
|
border-radius: 4px;
|
||||||
|
background-color: #4CAF50; /* 绿色背景 */
|
||||||
|
border: none;
|
||||||
|
color: white; /* 白色文字 */
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 16px;
|
||||||
|
margin: 4px 2px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.addDemand-button {
|
||||||
|
/* 定义返回按钮的样式 */
|
||||||
|
position: fixed; /* 使按钮位置固定 */
|
||||||
|
top: 10px;
|
||||||
|
left: 10px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 10px 20px;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: #ccc;
|
||||||
|
color: #333;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.addDemand-button:hover {
|
||||||
|
background-color: #aaaaaa;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* 可以添加更多样式来进一步美化 */
|
||||||
|
</style>
|
@ -0,0 +1,58 @@
|
|||||||
|
import { createWebHistory, createRouter } from 'vue-router';
|
||||||
|
import Login from '../pages/Login.vue';
|
||||||
|
import Register from '../pages/Register.vue';
|
||||||
|
import Home from '../pages/HomePage.vue';
|
||||||
|
import Mine from '../pages/mine.vue';
|
||||||
|
import SearchPage from '../pages/searchPage.vue';
|
||||||
|
import Test from '../pages/test.vue'
|
||||||
|
import Communication from '../pages/Communication.vue'
|
||||||
|
import Pay from '../pages/Pay.vue';
|
||||||
|
import AddDemand from '../pages/addDemand.vue';
|
||||||
|
import DemandList from '../pages/DemandList.vue';
|
||||||
|
import Evaluation from '../pages/Evaluation.vue';
|
||||||
|
import SecurityVerification from '../pages/SecurityVerification.vue';
|
||||||
|
import RegisterGuide from '../pages/registerGuide.vue';
|
||||||
|
import AddServe from '../pages/addServe.vue';
|
||||||
|
import EvaluationList from '../pages/EvaluationList.vue';
|
||||||
|
import Order from '../pages/order.vue';
|
||||||
|
import MatchDetail from'../pages/DemandMatch.vue'
|
||||||
|
import ChangeInformation from'../pages/changeInformation.vue'
|
||||||
|
import ServerList from'../pages/serverList.vue'
|
||||||
|
import ServerDetail from'../pages/serverDetail.vue'
|
||||||
|
import ServerMatch from'../pages/serverMatch.vue'
|
||||||
|
import DemandMatched from'../pages/demandMatched.vue'
|
||||||
|
import ServerMatched from'../pages/serverMatched.vue'
|
||||||
|
|
||||||
|
const routes = [
|
||||||
|
{ path: '/', redirect: '/login' }, // 重定向到/login路径
|
||||||
|
{ path: '/login', component: Login },
|
||||||
|
{ path: '/register', component: Register },
|
||||||
|
{ path: '/home', component: Home },
|
||||||
|
{ path: '/mine', component: Mine },
|
||||||
|
{ path: '/searchPage', component: SearchPage },
|
||||||
|
{ path: '/addDemandPage', component: AddDemand },
|
||||||
|
{ path: '/test', component: Test },
|
||||||
|
{ path: '/message', component: Communication },
|
||||||
|
{ path: '/pay', component:Pay},
|
||||||
|
{ path: '/demandlist', name: 'DemandList', component:DemandList},
|
||||||
|
{ path: '/evaluation/:orderId',name: 'Evaluation', component:Evaluation,props: (route) => ({ orderId: route.params.orderId })},
|
||||||
|
{ path: '/SecurityVerification', component:SecurityVerification},
|
||||||
|
{ path: '/registerGuide', component:RegisterGuide},
|
||||||
|
{ path:'/addServe', component:AddServe},
|
||||||
|
{ path: '/evaluationList', component:EvaluationList},
|
||||||
|
{ path: '/order/:orderId', name: 'OrderDetails', component: Order, props: (route) => ({ orderId: route.params.orderId })},
|
||||||
|
{ path: '/MatchDetail/:orderId', name: 'MatchDetail',component: MatchDetail,props: (route) => ({ orderId: route.params.orderId })},
|
||||||
|
{ path: '/changeInformation', component:ChangeInformation},
|
||||||
|
{ path: '/serverList', component:ServerList},
|
||||||
|
{ path: '/serverDetail/:serverId', name: 'ServerDetail',component: ServerDetail,props: (route) => ({ serverId: route.params.serverId })},
|
||||||
|
{ path: '/serverMatch/:serverId', name: 'ServerMatch',component: ServerMatch,props: (route) => ({ serverId: route.params.serverId })},
|
||||||
|
{ path: '/DemandMatched/:orderId', name: 'DemandMatched',component: DemandMatched,props: (route) => ({ orderId: route.params.orderId })},
|
||||||
|
{ path: '/ServerMatched/:serverId', name: 'ServerMatched',component: ServerMatched,props: (route) => ({ serverId: route.params.serverId })},
|
||||||
|
];
|
||||||
|
|
||||||
|
const router = createRouter({
|
||||||
|
history: createWebHistory(),
|
||||||
|
routes
|
||||||
|
});
|
||||||
|
|
||||||
|
export default router;
|
@ -0,0 +1,10 @@
|
|||||||
|
const { defineConfig } = require('@vue/cli-service')
|
||||||
|
module.exports = defineConfig({
|
||||||
|
transpileDependencies: true,
|
||||||
|
publicPath: '/',
|
||||||
|
//只有Https才能使用录音
|
||||||
|
devServer : {
|
||||||
|
https : true,
|
||||||
|
port : 9008
|
||||||
|
}
|
||||||
|
})
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"recommendations": ["Vue.volar"]
|
|
||||||
}
|
|
@ -1,29 +0,0 @@
|
|||||||
# walktofree
|
|
||||||
|
|
||||||
This template should help get you started developing with Vue 3 in Vite.
|
|
||||||
|
|
||||||
## Recommended IDE Setup
|
|
||||||
|
|
||||||
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
|
|
||||||
|
|
||||||
## Customize configuration
|
|
||||||
|
|
||||||
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
|
||||||
|
|
||||||
## Project Setup
|
|
||||||
|
|
||||||
```sh
|
|
||||||
npm install
|
|
||||||
```
|
|
||||||
|
|
||||||
### Compile and Hot-Reload for Development
|
|
||||||
|
|
||||||
```sh
|
|
||||||
npm run dev
|
|
||||||
```
|
|
||||||
|
|
||||||
### Compile and Minify for Production
|
|
||||||
|
|
||||||
```sh
|
|
||||||
npm run build
|
|
||||||
```
|
|
@ -1,13 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<link rel="icon" href="/favicon.ico">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>Vite App</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="app"></div>
|
|
||||||
<script type="module" src="/src/main.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"paths": {
|
|
||||||
"@/*": ["./src/*"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"exclude": ["node_modules", "dist"]
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "walktofree",
|
|
||||||
"version": "0.0.0",
|
|
||||||
"private": true,
|
|
||||||
"type": "module",
|
|
||||||
"scripts": {
|
|
||||||
"dev": "vite",
|
|
||||||
"build": "vite build",
|
|
||||||
"preview": "vite preview"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"axios": "^1.6.8",
|
|
||||||
"vue": "^3.4.27",
|
|
||||||
"vue-router": "^4.3.2"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@vitejs/plugin-vue": "^5.0.4",
|
|
||||||
"@vue/cli-service": "^5.0.8",
|
|
||||||
"vite": "^5.2.8"
|
|
||||||
}
|
|
||||||
}
|
|
Before Width: | Height: | Size: 4.2 KiB |
@ -1,19 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div id="app">
|
|
||||||
<router-view></router-view>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: 'App'
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
#app {
|
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,117 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="home-container">
|
|
||||||
<h1>首页</h1>
|
|
||||||
|
|
||||||
<div class="search-container">
|
|
||||||
<input type="text" class="search-input" placeholder="世界这么大出去看看吧">
|
|
||||||
<button class="search-button" @click="gotoSearchPage()">搜索</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="image-container">
|
|
||||||
<img src="../../photos/background.png" alt="图片描述" class="search-image">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="footer-nav">
|
|
||||||
<button>首页</button>
|
|
||||||
<button @click="gotomessage()">消息</button>
|
|
||||||
<button @click="gotomine()">我的</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
|
|
||||||
/* 添加样式以定义图片的大小和位置 */
|
|
||||||
.image-container {
|
|
||||||
text-align: center; /* 或者根据你的需求来设置 */
|
|
||||||
margin-top: 20px; /* 你可以根据需要调整这个值 */
|
|
||||||
}
|
|
||||||
|
|
||||||
.home-container {
|
|
||||||
/* 添加你的样式 */
|
|
||||||
text-align: center;
|
|
||||||
padding: 20px;
|
|
||||||
/* 可能需要为内容添加一些底部空间以容纳底部导航 */
|
|
||||||
padding-bottom: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-container {
|
|
||||||
/* 定义搜索框容器的样式 */
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 20px; /* 根据需要添加一些底部间距 */
|
|
||||||
display: flex;
|
|
||||||
align-items: center; /* 垂直居中 */
|
|
||||||
justify-content: center; /* 水平居中(如果不需要完全居中,可以去掉这个)*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-input {
|
|
||||||
/* 定义搜索框的样式 */
|
|
||||||
flex: 1; /* 占据剩余空间 */
|
|
||||||
padding: 10px;
|
|
||||||
border-radius: 5px;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-button {
|
|
||||||
/* 定义搜索按钮的样式 */
|
|
||||||
margin-left: 10px; /* 与搜索框之间的间距 */
|
|
||||||
padding: 10px 20px;
|
|
||||||
border: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
background-color: #ccc;
|
|
||||||
color: #333;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-button:hover {
|
|
||||||
/* 搜索按钮点击时的样式 */
|
|
||||||
background-color: #bbb;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-nav {
|
|
||||||
/* 定义底部导航的样式 */
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-around;
|
|
||||||
padding: 10px;
|
|
||||||
background-color: #f5f5f5; /* 示例背景色 */
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-nav button {
|
|
||||||
/* 定义按钮的样式 */
|
|
||||||
flex: 1;
|
|
||||||
border: none;
|
|
||||||
padding: 10px;
|
|
||||||
background-color: #ccc;
|
|
||||||
color: #333;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-nav button:hover {
|
|
||||||
/* 按钮点击时的样式 */
|
|
||||||
background-color: #bbb;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: 'Home',
|
|
||||||
methods: {
|
|
||||||
gotohome() {
|
|
||||||
this.$router.push('/home');
|
|
||||||
},
|
|
||||||
gotomessage() {
|
|
||||||
this.$router.push('/message');
|
|
||||||
},
|
|
||||||
gotomine() {
|
|
||||||
this.$router.push('/mine');
|
|
||||||
},
|
|
||||||
gotoSearchPage() {
|
|
||||||
this.$router.push('/searchPage');
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
@ -1,7 +0,0 @@
|
|||||||
<template>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor">
|
|
||||||
<path
|
|
||||||
d="M15 4a1 1 0 1 0 0 2V4zm0 11v-1a1 1 0 0 0-1 1h1zm0 4l-.707.707A1 1 0 0 0 16 19h-1zm-4-4l.707-.707A1 1 0 0 0 11 14v1zm-4.707-1.293a1 1 0 0 0-1.414 1.414l1.414-1.414zm-.707.707l-.707-.707.707.707zM9 11v-1a1 1 0 0 0-.707.293L9 11zm-4 0h1a1 1 0 0 0-1-1v1zm0 4H4a1 1 0 0 0 1.707.707L5 15zm10-9h2V4h-2v2zm2 0a1 1 0 0 1 1 1h2a3 3 0 0 0-3-3v2zm1 1v6h2V7h-2zm0 6a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3h-2zm-1 1h-2v2h2v-2zm-3 1v4h2v-4h-2zm1.707 3.293l-4-4-1.414 1.414 4 4 1.414-1.414zM11 14H7v2h4v-2zm-4 0c-.276 0-.525-.111-.707-.293l-1.414 1.414C5.42 15.663 6.172 16 7 16v-2zm-.707 1.121l3.414-3.414-1.414-1.414-3.414 3.414 1.414 1.414zM9 12h4v-2H9v2zm4 0a3 3 0 0 0 3-3h-2a1 1 0 0 1-1 1v2zm3-3V3h-2v6h2zm0-6a3 3 0 0 0-3-3v2a1 1 0 0 1 1 1h2zm-3-3H3v2h10V0zM3 0a3 3 0 0 0-3 3h2a1 1 0 0 1 1-1V0zM0 3v6h2V3H0zm0 6a3 3 0 0 0 3 3v-2a1 1 0 0 1-1-1H0zm3 3h2v-2H3v2zm1-1v4h2v-4H4zm1.707 4.707l.586-.586-1.414-1.414-.586.586 1.414 1.414z"
|
|
||||||
/>
|
|
||||||
</svg>
|
|
||||||
</template>
|
|
@ -1,7 +0,0 @@
|
|||||||
<template>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="17" fill="currentColor">
|
|
||||||
<path
|
|
||||||
d="M11 2.253a1 1 0 1 0-2 0h2zm-2 13a1 1 0 1 0 2 0H9zm.447-12.167a1 1 0 1 0 1.107-1.666L9.447 3.086zM1 2.253L.447 1.42A1 1 0 0 0 0 2.253h1zm0 13H0a1 1 0 0 0 1.553.833L1 15.253zm8.447.833a1 1 0 1 0 1.107-1.666l-1.107 1.666zm0-14.666a1 1 0 1 0 1.107 1.666L9.447 1.42zM19 2.253h1a1 1 0 0 0-.447-.833L19 2.253zm0 13l-.553.833A1 1 0 0 0 20 15.253h-1zm-9.553-.833a1 1 0 1 0 1.107 1.666L9.447 14.42zM9 2.253v13h2v-13H9zm1.553-.833C9.203.523 7.42 0 5.5 0v2c1.572 0 2.961.431 3.947 1.086l1.107-1.666zM5.5 0C3.58 0 1.797.523.447 1.42l1.107 1.666C2.539 2.431 3.928 2 5.5 2V0zM0 2.253v13h2v-13H0zm1.553 13.833C2.539 15.431 3.928 15 5.5 15v-2c-1.92 0-3.703.523-5.053 1.42l1.107 1.666zM5.5 15c1.572 0 2.961.431 3.947 1.086l1.107-1.666C9.203 13.523 7.42 13 5.5 13v2zm5.053-11.914C11.539 2.431 12.928 2 14.5 2V0c-1.92 0-3.703.523-5.053 1.42l1.107 1.666zM14.5 2c1.573 0 2.961.431 3.947 1.086l1.107-1.666C18.203.523 16.421 0 14.5 0v2zm3.5.253v13h2v-13h-2zm1.553 12.167C18.203 13.523 16.421 13 14.5 13v2c1.573 0 2.961.431 3.947 1.086l1.107-1.666zM14.5 13c-1.92 0-3.703.523-5.053 1.42l1.107 1.666C11.539 15.431 12.928 15 14.5 15v-2z"
|
|
||||||
/>
|
|
||||||
</svg>
|
|
||||||
</template>
|
|
@ -1,7 +0,0 @@
|
|||||||
<template>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="20" fill="currentColor">
|
|
||||||
<path
|
|
||||||
d="M11.447 8.894a1 1 0 1 0-.894-1.789l.894 1.789zm-2.894-.789a1 1 0 1 0 .894 1.789l-.894-1.789zm0 1.789a1 1 0 1 0 .894-1.789l-.894 1.789zM7.447 7.106a1 1 0 1 0-.894 1.789l.894-1.789zM10 9a1 1 0 1 0-2 0h2zm-2 2.5a1 1 0 1 0 2 0H8zm9.447-5.606a1 1 0 1 0-.894-1.789l.894 1.789zm-2.894-.789a1 1 0 1 0 .894 1.789l-.894-1.789zm2 .789a1 1 0 1 0 .894-1.789l-.894 1.789zm-1.106-2.789a1 1 0 1 0-.894 1.789l.894-1.789zM18 5a1 1 0 1 0-2 0h2zm-2 2.5a1 1 0 1 0 2 0h-2zm-5.447-4.606a1 1 0 1 0 .894-1.789l-.894 1.789zM9 1l.447-.894a1 1 0 0 0-.894 0L9 1zm-2.447.106a1 1 0 1 0 .894 1.789l-.894-1.789zm-6 3a1 1 0 1 0 .894 1.789L.553 4.106zm2.894.789a1 1 0 1 0-.894-1.789l.894 1.789zm-2-.789a1 1 0 1 0-.894 1.789l.894-1.789zm1.106 2.789a1 1 0 1 0 .894-1.789l-.894 1.789zM2 5a1 1 0 1 0-2 0h2zM0 7.5a1 1 0 1 0 2 0H0zm8.553 12.394a1 1 0 1 0 .894-1.789l-.894 1.789zm-1.106-2.789a1 1 0 1 0-.894 1.789l.894-1.789zm1.106 1a1 1 0 1 0 .894 1.789l-.894-1.789zm2.894.789a1 1 0 1 0-.894-1.789l.894 1.789zM8 19a1 1 0 1 0 2 0H8zm2-2.5a1 1 0 1 0-2 0h2zm-7.447.394a1 1 0 1 0 .894-1.789l-.894 1.789zM1 15H0a1 1 0 0 0 .553.894L1 15zm1-2.5a1 1 0 1 0-2 0h2zm12.553 2.606a1 1 0 1 0 .894 1.789l-.894-1.789zM17 15l.447.894A1 1 0 0 0 18 15h-1zm1-2.5a1 1 0 1 0-2 0h2zm-7.447-5.394l-2 1 .894 1.789 2-1-.894-1.789zm-1.106 1l-2-1-.894 1.789 2 1 .894-1.789zM8 9v2.5h2V9H8zm8.553-4.894l-2 1 .894 1.789 2-1-.894-1.789zm.894 0l-2-1-.894 1.789 2 1 .894-1.789zM16 5v2.5h2V5h-2zm-4.553-3.894l-2-1-.894 1.789 2 1 .894-1.789zm-2.894-1l-2 1 .894 1.789 2-1L8.553.106zM1.447 5.894l2-1-.894-1.789-2 1 .894 1.789zm-.894 0l2 1 .894-1.789-2-1-.894 1.789zM0 5v2.5h2V5H0zm9.447 13.106l-2-1-.894 1.789 2 1 .894-1.789zm0 1.789l2-1-.894-1.789-2 1 .894 1.789zM10 19v-2.5H8V19h2zm-6.553-3.894l-2-1-.894 1.789 2 1 .894-1.789zM2 15v-2.5H0V15h2zm13.447 1.894l2-1-.894-1.789-2 1 .894 1.789zM18 15v-2.5h-2V15h2z"
|
|
||||||
/>
|
|
||||||
</svg>
|
|
||||||
</template>
|
|
@ -1,7 +0,0 @@
|
|||||||
<template>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor">
|
|
||||||
<path
|
|
||||||
d="M10 3.22l-.61-.6a5.5 5.5 0 0 0-7.666.105 5.5 5.5 0 0 0-.114 7.665L10 18.78l8.39-8.4a5.5 5.5 0 0 0-.114-7.665 5.5 5.5 0 0 0-7.666-.105l-.61.61z"
|
|
||||||
/>
|
|
||||||
</svg>
|
|
||||||
</template>
|
|
@ -1,19 +0,0 @@
|
|||||||
<!-- This icon is from <https://github.com/Templarian/MaterialDesign>, distributed under Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0) license-->
|
|
||||||
<template>
|
|
||||||
<svg
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
||||||
aria-hidden="true"
|
|
||||||
role="img"
|
|
||||||
class="iconify iconify--mdi"
|
|
||||||
width="24"
|
|
||||||
height="24"
|
|
||||||
preserveAspectRatio="xMidYMid meet"
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
>
|
|
||||||
<path
|
|
||||||
d="M20 18v-4h-3v1h-2v-1H9v1H7v-1H4v4h16M6.33 8l-1.74 4H7v-1h2v1h6v-1h2v1h2.41l-1.74-4H6.33M9 5v1h6V5H9m12.84 7.61c.1.22.16.48.16.8V18c0 .53-.21 1-.6 1.41c-.4.4-.85.59-1.4.59H4c-.55 0-1-.19-1.4-.59C2.21 19 2 18.53 2 18v-4.59c0-.32.06-.58.16-.8L4.5 7.22C4.84 6.41 5.45 6 6.33 6H7V5c0-.55.18-1 .57-1.41C7.96 3.2 8.44 3 9 3h6c.56 0 1.04.2 1.43.59c.39.41.57.86.57 1.41v1h.67c.88 0 1.49.41 1.83 1.22l2.34 5.39z"
|
|
||||||
fill="currentColor"
|
|
||||||
></path>
|
|
||||||
</svg>
|
|
||||||
</template>
|
|
@ -1,67 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="home-container">
|
|
||||||
<h1>消息页面</h1>
|
|
||||||
|
|
||||||
<!-- 在这里添加你的主页内容 -->
|
|
||||||
|
|
||||||
<div class="footer-nav">
|
|
||||||
<button @click="gotohome()">首页</button>
|
|
||||||
<button @click="gotomessage()">消息</button>
|
|
||||||
<button @click="gotomine()">我的</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.home-container {
|
|
||||||
/* 添加你的样式 */
|
|
||||||
text-align: center;
|
|
||||||
padding: 20px;
|
|
||||||
/* 可能需要为内容添加一些底部空间以容纳底部导航 */
|
|
||||||
padding-bottom: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-nav {
|
|
||||||
/* 定义底部导航的样式 */
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-around;
|
|
||||||
padding: 10px;
|
|
||||||
background-color: #f5f5f5; /* 示例背景色 */
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-nav button {
|
|
||||||
/* 定义按钮的样式 */
|
|
||||||
flex: 1;
|
|
||||||
border: none;
|
|
||||||
padding: 10px;
|
|
||||||
background-color: #ccc;
|
|
||||||
color: #333;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer-nav button:hover {
|
|
||||||
/* 按钮点击时的样式 */
|
|
||||||
background-color: #bbb;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: 'Message',
|
|
||||||
methods: {
|
|
||||||
gotohome() {
|
|
||||||
this.$router.push('/home');
|
|
||||||
},
|
|
||||||
gotomessage() {
|
|
||||||
this.$router.push('/message');
|
|
||||||
},
|
|
||||||
gotomine() {
|
|
||||||
this.$router.push('/mine');
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
@ -1,9 +0,0 @@
|
|||||||
import { createApp } from 'vue';
|
|
||||||
import App from './App.vue';
|
|
||||||
import router from './router';
|
|
||||||
|
|
||||||
const app = createApp(App);
|
|
||||||
|
|
||||||
app.use(router);
|
|
||||||
|
|
||||||
app.mount('#app');
|
|
@ -1,40 +0,0 @@
|
|||||||
|
|
||||||
<template>
|
|
||||||
|
|
||||||
<div class="home-container">
|
|
||||||
|
|
||||||
<h1>欢迎来到主页</h1>
|
|
||||||
|
|
||||||
<!-- 在这里添加你的主页内容 -->
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</template>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
|
|
||||||
.home-container {
|
|
||||||
|
|
||||||
/* 添加你的样式 */
|
|
||||||
|
|
||||||
text-align: center;
|
|
||||||
|
|
||||||
padding: 20px;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
</style>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
export default {
|
|
||||||
|
|
||||||
name: 'Home'
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
</script>
|
|
@ -1,24 +0,0 @@
|
|||||||
import { createWebHistory, createRouter } from 'vue-router';
|
|
||||||
import Login from '../components/Login.vue';
|
|
||||||
import Register from '../components/Register.vue';
|
|
||||||
import Home from '../components/HomePage.vue';
|
|
||||||
import Message from '../components/message.vue';
|
|
||||||
import Mine from '../components/mine.vue';
|
|
||||||
import SearchPage from '../components/searchPage.vue';
|
|
||||||
|
|
||||||
const routes = [
|
|
||||||
{ path: '/', redirect: '/login' }, // 重定向到/login路径
|
|
||||||
{ path: '/login', component: Login },
|
|
||||||
{ path: '/register', component: Register },
|
|
||||||
{ path: '/home', component: Home },
|
|
||||||
{ path: '/message', component: Message },
|
|
||||||
{ path: '/mine', component: Mine },
|
|
||||||
{ path: '/searchPage', component: SearchPage },
|
|
||||||
];
|
|
||||||
|
|
||||||
const router = createRouter({
|
|
||||||
history: createWebHistory(),
|
|
||||||
routes
|
|
||||||
});
|
|
||||||
|
|
||||||
export default router;
|
|
@ -1,17 +0,0 @@
|
|||||||
import { fileURLToPath, URL } from 'node:url'
|
|
||||||
|
|
||||||
import { defineConfig } from 'vite'
|
|
||||||
import vue from '@vitejs/plugin-vue'
|
|
||||||
|
|
||||||
// https://vitejs.dev/config/
|
|
||||||
export default defineConfig({
|
|
||||||
plugins: [
|
|
||||||
vue(),
|
|
||||||
],
|
|
||||||
resolve: {
|
|
||||||
alias: {
|
|
||||||
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|