官网标签图标

This commit is contained in:
dzj 2024-07-11 11:32:28 +08:00
parent a2f0ed8db5
commit fbf2e72a60
18 changed files with 29 additions and 10 deletions

5
package-lock.json generated
View File

@ -24,6 +24,7 @@
"@vue/cli-plugin-vuex": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"babel-plugin-component": "^1.1.1",
"html-webpack-plugin": "^5.6.0",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"vue-template-compiler": "^2.6.14"
@ -5675,6 +5676,10 @@
"engines": {
"node": ">=10.13.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/html-webpack-plugin"
},
"peerDependencies": {
"@rspack/core": "0.x || 1.x",
"webpack": "^5.20.0"

View File

@ -24,6 +24,7 @@
"@vue/cli-plugin-vuex": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"babel-plugin-component": "^1.1.1",
"html-webpack-plugin": "^5.6.0",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"vue-template-compiler": "^2.6.14"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 29 KiB

BIN
public/feiyang.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 799 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -1,13 +1,15 @@
<!DOCTYPE html>
<html lang="">
<html lang="en">
<head>
<meta charset="utf-8">
<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">
<link href="https://cdn.staticfile.org/quill/1.3.6/quill.snow.css" rel="stylesheet">
<title>飞阳建设工程有限公司</title>
<title>飞阳建设工程有限公司</title>
<link rel="icon" href="./public/favicon.ico">
<link href="https://cdn.staticfile.org/quill/1.3.6/quill.snow.css" rel="stylesheet">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script type="text/JavaScript">
function isMobile() {
const userAgent = navigator.userAgent || navigator.vendor || window.opera;
@ -26,9 +28,9 @@
</script>
</head>
<body>
<noscript>
<!-- <noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
</noscript> -->
<div id="app"></div>
<!-- built files will be auto injected -->
</body>

View File

@ -41,7 +41,7 @@
<div style="width: 80%;margin: auto;">
<div v-for="item in rest" class="newsitem" style="overflow: hidden; padding: 30px 0 24px;position: relative;cursor: pointer;display: flex;" @click="changeto(item.id)">
<div class="date1" style=""><img :src="item.pic" style="width: 236px;height: 157px;"></img></div>
<div class="" style=" width: 65%;margin-left: 35px;overflow: hidden;">
<div class="" style=" margin-left: 35px;overflow: hidden;">
<div style=" font-size: 18px;
color: #000;
font-weight: bold;

View File

@ -21,7 +21,7 @@
</el-radio-group>
</div>
<div class="content2" style="max-width:1280px;margin: auto;display: grid;gap:20px;grid-template-columns: repeat(3,1fr);justify-content: space-between;flex-wrap: wrap;">
<div v-for="item in PrijectList" style="width: 100%;border-radius: 15px 15px 0 0 ;margin-bottom: 2%; border-bottom: 1px solid #D9D9D9;cursor: pointer;" @click="changeto(item.id)">
<div v-for="item in PrijectList" style="width: 100%;border-radius: 15px 15px 0 0 ;margin-bottom: 2%;cursor: pointer;" @click="changeto(item.id)">
<el-image :src="item.picture" style="width: 100%;border-radius: 15px ;"></el-image>
<div style="padding: 2px 20px;justify-content: space-between;">

11
webpack.config.js Normal file
View File

@ -0,0 +1,11 @@
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
// ...其他配置
// plugins: [
// new HtmlWebpackPlugin({
// favicon: 'public/feiyang.png' // 设置网页标签的图标路径
// })
// ]
};