提交 07767b16 authored 作者: caodi\cd's avatar caodi\cd

fix:机房首页v1

上级 5d72f178
{ {
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages "pages": [
{ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
"path": "pages/login/login" {
}, "path": "pages/login/login"
{ },
"path": "pages/home/home", {
"style": { "path": "pages/home/home",
"navigationBarTitleText": "" "style": {
} "navigationBarTitleText": ""
}, }
{ //操作日志 },
"path": "pages/index/operLog" {
}, //操作日志
"path": "pages/index/operLog"
//杭州内网机房巡检 },
{
"path": "pages/inspection/inspFirst"
},
{
"path": "pages/report/sampleTable"
},
{ //修改密码 //杭州内网机房巡检
"path": "pages/index/editPd"
}, {
{ "path": "pages/inspection/inspFirst"
"path": "pages/home/home", },
"style": {
"navigationBarTitleText": "" {
} "path": "pages/report/sampleTable"
}, },
// 机房巡检 {
{ //修改密码
"path": "pages/inspectionContent/inspectionContent", "path": "pages/index/editPd"
"style": { },
"navigationBarTitleText": "" {
} "path": "pages/home/home",
}, "style": {
// 井道巡检 "navigationBarTitleText": ""
{ }
"path": "pages/shaftInspection/shaftInspection", },
"style": {
"navigationBarTitleText": "" // 机房巡检列表页
} {
}, "path": "pages/inspectionContent/inspectionContent",
"style": {
// 新增配置--------- "navigationBarTitleText": ""
// 巡检管理 }
{ },
"path": "pages/inspectionManagement/index" // 井道巡检
}, {
// 设备上架管理 "path": "pages/shaftInspection/shaftInspection",
{ "style": {
"path": "pages/listingManagement/index" "navigationBarTitleText": ""
}, }
// 井道巡检新页面 },
{
"path": "pages/shaftInspection/shaftInspectionNew", // 新增配置---------
"style": {
"navigationBarTitleText": "" // 机房巡检
} {
} "path": "pages/inspectionContent/inspectionContentList"
], },
"globalStyle": { // 井道巡检新页面
"pageOrientation": "landscape", {
"navigationStyle": "custom", "path": "pages/shaftInspection/shaftInspectionNew",
"rpxCalcMaxDeviceWidth": 2000, "style": {
"rpxCalcIncludeWidth": 750 "navigationBarTitleText": ""
}, }
"uniIdRouter": {}, },
"condition": { //模式配置,仅开发期间生效 // 设备上架管理
"current": 0, //当前激活的模式(list 的索引项) {
"list": [ "path": "pages/listingManagement/index"
{ }
"name": "", //模式名称 ],
"path": "", //启动页面,必选 "globalStyle": {
"query": "" //启动参数,在页面的onLoad函数里面得到 "pageOrientation": "landscape",
} "navigationStyle": "custom",
] "rpxCalcMaxDeviceWidth": 2000,
} "rpxCalcIncludeWidth": 750
} },
\ No newline at end of file "uniIdRouter": {},
"condition": {
//模式配置,仅开发期间生效
"current": 0, //当前激活的模式(list 的索引项)
"list": [
{
"name": "", //模式名称
"path": "", //启动页面,必选
"query": "" //启动参数,在页面的onLoad函数里面得到
}
]
}
}
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
<view class="card-section"> <view class="card-section">
<view class="card-container"> <view class="card-container">
<view class="card" v-for="(card, index) in cards" :key="index" <view class="card" v-for="(card, index) in cards" :key="index"
:style="{ backgroundImage: `url(${card.image})` }"> :style="{ backgroundImage: `url(${card.image})` }" @click="toList(card.url)">
<view class="card-text">{{ card.text }}</view> <view class="card-text">{{ card.text }}</view>
</view> </view>
</view> </view>
...@@ -52,7 +52,8 @@ ...@@ -52,7 +52,8 @@
return { return {
cards: [{ cards: [{
image: '../../static/img/jf.png', image: '../../static/img/jf.png',
text: '机房巡检' text: '机房巡检',
url:"/pages/inspectionContent/inspectionContentList"
}, },
{ {
image: '../../static/img/jd.png', image: '../../static/img/jd.png',
...@@ -88,6 +89,13 @@ ...@@ -88,6 +89,13 @@
url: "/pages/index/operLog", url: "/pages/index/operLog",
}); });
}, },
// 三模块卡片跳转页面
toList(url){
uni.navigateTo({
url: url,
});
},
// 巡检管理 // 巡检管理
toInspectionManagement() { toInspectionManagement() {
uni.navigateTo({ uni.navigateTo({
......
<template>
<view class="container">
<uni-nav-bar
:fixed="true"
background-color="rgba(214, 240, 255, 0.0)"
status-bar
rightWidth="300"
>
<block slot="left">
<view class="uni-nav-bar-text" @click="back">
<text class="iconfont icon-Arrow-Left"></text>
</view>
</block>
<block slot="right" class="nav-right">
<view class="header-buttons">
<button class="button" @click="lookLog">查看样表</button>
</view>
</block> </uni-nav-bar
><!-- 第二个模块 -->
<view class="profile-section">
<view class="profile-box">
<view class="profile-left">
<view class="avatar">
<image
src="@/static/img/add-img/home1.png"
mode="aspectFit"
></image>
</view>
<view class="username">{{ userName }}</view>
</view>
<view class="profile-right">
<button class="record-button" @click="toListingManagement">
巡检人签字
</button>
</view>
</view>
</view>
<!-- 每排 5 个卡片,共 4 排 -->
<view class="box">
<view class="bar">
<view class="title"> 巡检进度 </view>
<view class="dai"> 待巡检 <text class="num">11</text>个机房</view>
<view class="yi"> 已完成 <text class="num">0</text>个机房</view>
</view>
</view>
<view class="card-box">
<view
class="card-row"
:class="{ right: rowIndex % 2 !== 0 }"
v-for="(row, rowIndex) in rows"
:key="rowIndex"
>
<!-- 每排的卡片 -->
<view
class="card-wrapper"
v-for="(card, cardIndex) in row"
:key="cardIndex"
>
<!-- 卡片内容 -->
<view class="card">
<view class="card-content">
<!-- 第一行:图标和巡检状态 -->
<view class="first-row">
<image class="icon" src="/static/icon.png"></image>
<text class="status">巡检状态</text>
</view>
<!-- 第二行:机房位置 -->
<view class="second-row">
<text class="location">机房位置</text>
</view>
</view>
<!-- 卡片右侧的图片(除了最后一列) -->
<view class="spacer-image right" v-if="cardIndex < row.length - 1">
<image src="@/static/img/arr2.svg" mode="aspectFit"></image>
</view>
<!-- 每排卡片下方的图片(除了最后一排) -->
<view class="spacer-image bottom" v-if="rowIndex < rows.length - 1">
<view v-if="cardIndex == 0 || cardIndex == 4">
<image src="@/static/img/arr2.svg" mode="aspectFit"></image
></view>
</view>
</view>
</view> </view
></view>
</view>
</template>
<script>
export default {
data() {
return {
userName: this.$store.state.now_user.user,
// 20 个卡片数据,分成 4 排,每排 5 个
rows: [
new Array(5).fill({}), // 第一排
new Array(5).fill({}), // 第二排
new Array(5).fill({}), // 第三排
new Array(1).fill({}), // 第四排
],
};
},
methods: {
// 返回
back() {
uni.navigateBack();
},
},
};
</script>
<style lang="less" scoped>
/* 导航栏样式 */
.uni-nav-bar-text {
height: 36px;
width: 36px;
background: #ffffff;
border: 0.4px solid rgba(224, 224, 224, 1);
border-radius: 18px;
border-radius: 50%;
color: #333;
text-align: center;
.iconfont {
font-size: 20px;
line-height: 36px;
}
}
.nav-right {
width: 240px;
}
.header-buttons {
display: flex;
align-items: center;
margin-left: auto; // 将按钮组推到最右侧
.button {
width: 112px;
height: 36px;
background: #ffffff;
border-radius: 18px;
margin-left: 16px;
font-family: PingFangSC-Regular;
font-size: 16px;
color: #000000;
line-height: 36px;
font-weight: 400;
}
}
.container {
background-image: linear-gradient(115deg, #e8f0fb 0%, #e1ebfa 100%);
padding: 0 32px;
}
.profile-section {
width: 100%;
margin-bottom: 16px;
.profile-box {
background-color: #fff;
border-radius: 12px;
padding: 16px 32px;
display: flex;
justify-content: space-between;
align-items: center;
.profile-left {
display: flex;
align-items: center;
.avatar {
position: relative;
width: 86px;
height: 86px;
border-radius: 50%;
overflow: hidden;
image {
width: 100%;
height: 100%;
}
.change-password {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.5);
text-align: center;
height: 22px;
font-family: PingFangSC-Regular;
font-size: 12px;
color: #ffffff;
line-height: 20px;
font-weight: 400;
}
}
.username {
margin-left: 16px;
font-family: PingFangSC-Medium;
font-size: 20px;
color: #000000;
line-height: 28px;
font-weight: 500;
}
}
.profile-right {
display: flex;
.inspection-button {
width: 112px;
height: 36px;
background-image: linear-gradient(105deg, #68acfb 0%, #3774f6 100%);
border-radius: 18px;
font-family: PingFangSC-Regular;
font-size: 16px;
color: #ffffff;
line-height: 36px;
font-weight: 400;
margin-right: 16px;
}
.record-button {
width: 144px;
height: 36px;
background: #ffffff;
border: 1px solid rgba(55, 116, 246, 1);
border-radius: 18px;
font-family: PingFangSC-Regular;
font-size: 16px;
color: #3774f6;
line-height: 36px;
font-weight: 400;
}
}
}
}
.box {
background: #ffffff;
border-radius: 12px 12px 0 0;
padding: 16px 24px;
.bar {
display: flex;
justify-content: flex-start;
.title {
font-family: PingFangSC-Medium;
font-size: 18px;
color: #000000;
line-height: 34px;
font-weight: 500;
}
.dai {
background: rgba(243, 152, 0, 0.08);
border-radius: 10px;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #4a4a4a;
letter-spacing: 0;
text-align: right;
line-height: 34px;
font-weight: 400;
margin: 0 12px;
padding: 0 12px;
.num {
color: #f39800;
}
}
.yi {
background: rgba(55, 116, 246, 0.08);
border-radius: 10px;
font-family: PingFangSC-Regular;
font-size: 14px;
color: #4a4a4a;
letter-spacing: 0;
text-align: right;
line-height: 34px;
font-weight: 400;
padding: 0 12px;
.num {
color: #000;
}
}
}
}
.card-box {
background: #ffffff;
border-radius: 0 0 12px 12px;
padding: 16px 24px;
}
.card-row {
display: flex;
justify-content: space-between;
align-items: center;
position: relative; // 用于定位下方的图片
&.right {
flex-direction: row-reverse;
.card-wrapper {
.spacer-image.right {
position: absolute;
left: -54px;
top: 50%;
transform: translateY(-50%) rotate(180deg);
image {
width: 54px; // 图片宽度与间距一致
height: 54px; // 图片高度与间距一致
}
}
}
}
.card-wrapper {
display: flex;
align-items: center;
.card {
width: 126px;
height: 64px;
margin-bottom: 54px;
border-radius: 10px;
background-color: #ffffff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
position: relative;
.card-content {
padding: 8px;
.first-row {
display: flex;
align-items: center;
.icon {
width: 16px;
height: 16px;
margin-right: 8px;
}
.status {
font-size: 12px;
color: #333333;
}
}
.second-row {
margin-top: 4px;
.location {
font-size: 12px;
color: #666666;
}
}
}
}
.spacer-image.right {
position: absolute;
right: -54px;
top: 50%;
transform: translateY(-50%);
image {
width: 54px; // 图片宽度与间距一致
height: 54px; // 图片高度与间距一致
}
}
}
.spacer-image.bottom {
position: absolute;
bottom: -54px; // 图片位于卡片下方
left: 50%;
transform: translateX(-50%);
image {
width: 54px; // 图片宽度与间距一致
height: 54px; // 图片高度与间距一致
}
}
}
</style>
<?xml version="1.0" encoding="UTF-8"?>
<svg width="38px" height="8px" viewBox="0 0 38 8" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>箭头</title>
<defs>
<linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="linearGradient-1">
<stop stop-color="#7C7C7C" offset="0%"></stop>
<stop stop-color="#7C7C7C" stop-opacity="0" offset="100%"></stop>
</linearGradient>
</defs>
<g id="箭头" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M33.5629277,7.80592957 C33.8199691,8.06469014 34.2370822,8.06469014 34.4947747,7.80592957 L37.8073077,4.46923474 C38.0642308,4.21001074 38.0642308,3.78971617 37.8073077,3.53099697 L34.4947747,0.194417995 C34.2371413,-0.0648059984 33.8200114,-0.0648059984 33.5629277,0.194417995 C33.3054381,0.4532696 33.3054381,0.873473141 33.5629277,1.13277989 L36.4096978,4.00014896 L33.5629361,6.86718701 C33.305455,7.126411 33.305455,7.5466311 33.5629361,7.80597922 L33.5629361,7.80597922 L33.5629277,7.80592957 Z M26.8889656,7.80592957 C27.146007,8.06469014 27.5631201,8.06469014 27.8208126,7.80592957 L31.1333456,4.46923474 C31.3902687,4.21001074 31.3902687,3.78971617 31.1333456,3.53099697 L27.8208126,0.194417995 C27.5631793,-0.0648059984 27.1460493,-0.0648059984 26.8889656,0.194417995 C26.631476,0.4532696 26.631476,0.873473141 26.8889656,1.13277989 L29.7357357,4.00014896 L26.888974,6.86718701 C26.6314929,7.126411 26.6314929,7.5466311 26.888974,7.80597922 L26.888974,7.80597922 L26.8889656,7.80592957 Z M20.2150035,7.80592957 C20.4720449,8.06469014 20.889158,8.06469014 21.1468505,7.80592957 L24.4593835,4.46923474 C24.7163066,4.21001074 24.7163066,3.78971617 24.4593835,3.53099697 L21.1468505,0.194417995 C20.8892172,-0.0648059984 20.4720872,-0.0648059984 20.2150035,0.194417995 C19.9575139,0.4532696 19.9575139,0.873473141 20.2150035,1.13277989 L23.0617736,4.00014896 L20.2150119,6.86718701 C19.9575308,7.126411 19.9575308,7.5466311 20.2150119,7.80597922 L20.2150119,7.80597922 L20.2150035,7.80592957 Z M13.5410414,7.80592957 C13.7980828,8.06469014 14.2151959,8.06469014 14.4728884,7.80592957 L17.7854214,4.46923474 C18.0423445,4.21001074 18.0423445,3.78971617 17.7854214,3.53099697 L14.4728884,0.194417995 C14.2152551,-0.0648059984 13.7981251,-0.0648059984 13.5410414,0.194417995 C13.2835518,0.4532696 13.2835518,0.873473141 13.5410414,1.13277989 L16.3878115,4.00014896 L13.5410499,6.86718701 C13.2835687,7.126411 13.2835687,7.5466311 13.5410499,7.80597922 L13.5410499,7.80597922 L13.5410414,7.80592957 Z M6.8670793,7.80592957 C7.12412073,8.06469014 7.54123378,8.06469014 7.79892635,7.80592957 L11.1114594,4.46923474 C11.3683824,4.21001074 11.3683824,3.78971617 11.1114594,3.53099697 L7.79892635,0.194417995 C7.54129298,-0.0648059984 7.12416301,-0.0648059984 6.8670793,0.194417995 C6.60958969,0.4532696 6.60958969,0.873473141 6.8670793,1.13277989 L9.71384945,4.00014896 L6.86708776,6.86718701 C6.6096066,7.126411 6.6096066,7.5466311 6.86708776,7.80597922 L6.86708776,7.80597922 L6.8670793,7.80592957 Z M0.193117212,7.80592957 C0.450158637,8.06469014 0.867271688,8.06469014 1.12496426,7.80592957 L4.43749726,4.46923474 C4.69442029,4.21001074 4.69442029,3.78971617 4.43749726,3.53099697 L1.12496426,0.194417995 C0.867330883,-0.0648059984 0.450200919,-0.0648059984 0.193117212,0.194417995 C-0.0643724039,0.4532696 -0.0643724039,0.873473141 0.193117212,1.13277989 L3.03988736,4.00014896 L0.193125668,6.86718701 C-0.0643554911,7.126411 -0.0643554911,7.5466311 0.193125668,7.80597922 L0.193125668,7.80597922 L0.193117212,7.80592957 Z" id="形状结合备份" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="38px" height="8px" viewBox="0 0 38 8" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>箭头2</title>
<defs>
<linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="linearGradient-1">
<stop stop-color="#3774F6" offset="0%"></stop>
<stop stop-color="#3774F6" stop-opacity="0" offset="100%"></stop>
</linearGradient>
</defs>
<g id="箭头2" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M33.5629277,7.80592957 C33.8199691,8.06469014 34.2370822,8.06469014 34.4947747,7.80592957 L37.8073077,4.46923474 C38.0642308,4.21001074 38.0642308,3.78971617 37.8073077,3.53099697 L34.4947747,0.194417995 C34.2371413,-0.0648059984 33.8200114,-0.0648059984 33.5629277,0.194417995 C33.3054381,0.4532696 33.3054381,0.873473141 33.5629277,1.13277989 L36.4096978,4.00014896 L33.5629361,6.86718701 C33.305455,7.126411 33.305455,7.5466311 33.5629361,7.80597922 L33.5629361,7.80597922 L33.5629277,7.80592957 Z M26.8889656,7.80592957 C27.146007,8.06469014 27.5631201,8.06469014 27.8208126,7.80592957 L31.1333456,4.46923474 C31.3902687,4.21001074 31.3902687,3.78971617 31.1333456,3.53099697 L27.8208126,0.194417995 C27.5631793,-0.0648059984 27.1460493,-0.0648059984 26.8889656,0.194417995 C26.631476,0.4532696 26.631476,0.873473141 26.8889656,1.13277989 L29.7357357,4.00014896 L26.888974,6.86718701 C26.6314929,7.126411 26.6314929,7.5466311 26.888974,7.80597922 L26.888974,7.80597922 L26.8889656,7.80592957 Z M20.2150035,7.80592957 C20.4720449,8.06469014 20.889158,8.06469014 21.1468505,7.80592957 L24.4593835,4.46923474 C24.7163066,4.21001074 24.7163066,3.78971617 24.4593835,3.53099697 L21.1468505,0.194417995 C20.8892172,-0.0648059984 20.4720872,-0.0648059984 20.2150035,0.194417995 C19.9575139,0.4532696 19.9575139,0.873473141 20.2150035,1.13277989 L23.0617736,4.00014896 L20.2150119,6.86718701 C19.9575308,7.126411 19.9575308,7.5466311 20.2150119,7.80597922 L20.2150119,7.80597922 L20.2150035,7.80592957 Z M13.5410414,7.80592957 C13.7980828,8.06469014 14.2151959,8.06469014 14.4728884,7.80592957 L17.7854214,4.46923474 C18.0423445,4.21001074 18.0423445,3.78971617 17.7854214,3.53099697 L14.4728884,0.194417995 C14.2152551,-0.0648059984 13.7981251,-0.0648059984 13.5410414,0.194417995 C13.2835518,0.4532696 13.2835518,0.873473141 13.5410414,1.13277989 L16.3878115,4.00014896 L13.5410499,6.86718701 C13.2835687,7.126411 13.2835687,7.5466311 13.5410499,7.80597922 L13.5410499,7.80597922 L13.5410414,7.80592957 Z M6.8670793,7.80592957 C7.12412073,8.06469014 7.54123378,8.06469014 7.79892635,7.80592957 L11.1114594,4.46923474 C11.3683824,4.21001074 11.3683824,3.78971617 11.1114594,3.53099697 L7.79892635,0.194417995 C7.54129298,-0.0648059984 7.12416301,-0.0648059984 6.8670793,0.194417995 C6.60958969,0.4532696 6.60958969,0.873473141 6.8670793,1.13277989 L9.71384945,4.00014896 L6.86708776,6.86718701 C6.6096066,7.126411 6.6096066,7.5466311 6.86708776,7.80597922 L6.86708776,7.80597922 L6.8670793,7.80592957 Z M0.193117212,7.80592957 C0.450158637,8.06469014 0.867271688,8.06469014 1.12496426,7.80592957 L4.43749726,4.46923474 C4.69442029,4.21001074 4.69442029,3.78971617 4.43749726,3.53099697 L1.12496426,0.194417995 C0.867330883,-0.0648059984 0.450200919,-0.0648059984 0.193117212,0.194417995 C-0.0643724039,0.4532696 -0.0643724039,0.873473141 0.193117212,1.13277989 L3.03988736,4.00014896 L0.193125668,6.86718701 C-0.0643554911,7.126411 -0.0643554911,7.5466311 0.193125668,7.80597922 L0.193125668,7.80597922 L0.193117212,7.80592957 Z" id="形状结合备份" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="38px" height="8px" viewBox="0 0 38 8" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>箭头2</title>
<defs>
<linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="linearGradient-1">
<stop stop-color="#3774F6" offset="0%"></stop>
<stop stop-color="#3774F6" stop-opacity="0" offset="100%"></stop>
</linearGradient>
</defs>
<g id="箭头2" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M33.5629277,7.80592957 C33.8199691,8.06469014 34.2370822,8.06469014 34.4947747,7.80592957 L37.8073077,4.46923474 C38.0642308,4.21001074 38.0642308,3.78971617 37.8073077,3.53099697 L34.4947747,0.194417995 C34.2371413,-0.0648059984 33.8200114,-0.0648059984 33.5629277,0.194417995 C33.3054381,0.4532696 33.3054381,0.873473141 33.5629277,1.13277989 L36.4096978,4.00014896 L33.5629361,6.86718701 C33.305455,7.126411 33.305455,7.5466311 33.5629361,7.80597922 L33.5629361,7.80597922 L33.5629277,7.80592957 Z M26.8889656,7.80592957 C27.146007,8.06469014 27.5631201,8.06469014 27.8208126,7.80592957 L31.1333456,4.46923474 C31.3902687,4.21001074 31.3902687,3.78971617 31.1333456,3.53099697 L27.8208126,0.194417995 C27.5631793,-0.0648059984 27.1460493,-0.0648059984 26.8889656,0.194417995 C26.631476,0.4532696 26.631476,0.873473141 26.8889656,1.13277989 L29.7357357,4.00014896 L26.888974,6.86718701 C26.6314929,7.126411 26.6314929,7.5466311 26.888974,7.80597922 L26.888974,7.80597922 L26.8889656,7.80592957 Z M20.2150035,7.80592957 C20.4720449,8.06469014 20.889158,8.06469014 21.1468505,7.80592957 L24.4593835,4.46923474 C24.7163066,4.21001074 24.7163066,3.78971617 24.4593835,3.53099697 L21.1468505,0.194417995 C20.8892172,-0.0648059984 20.4720872,-0.0648059984 20.2150035,0.194417995 C19.9575139,0.4532696 19.9575139,0.873473141 20.2150035,1.13277989 L23.0617736,4.00014896 L20.2150119,6.86718701 C19.9575308,7.126411 19.9575308,7.5466311 20.2150119,7.80597922 L20.2150119,7.80597922 L20.2150035,7.80592957 Z M13.5410414,7.80592957 C13.7980828,8.06469014 14.2151959,8.06469014 14.4728884,7.80592957 L17.7854214,4.46923474 C18.0423445,4.21001074 18.0423445,3.78971617 17.7854214,3.53099697 L14.4728884,0.194417995 C14.2152551,-0.0648059984 13.7981251,-0.0648059984 13.5410414,0.194417995 C13.2835518,0.4532696 13.2835518,0.873473141 13.5410414,1.13277989 L16.3878115,4.00014896 L13.5410499,6.86718701 C13.2835687,7.126411 13.2835687,7.5466311 13.5410499,7.80597922 L13.5410499,7.80597922 L13.5410414,7.80592957 Z M6.8670793,7.80592957 C7.12412073,8.06469014 7.54123378,8.06469014 7.79892635,7.80592957 L11.1114594,4.46923474 C11.3683824,4.21001074 11.3683824,3.78971617 11.1114594,3.53099697 L7.79892635,0.194417995 C7.54129298,-0.0648059984 7.12416301,-0.0648059984 6.8670793,0.194417995 C6.60958969,0.4532696 6.60958969,0.873473141 6.8670793,1.13277989 L9.71384945,4.00014896 L6.86708776,6.86718701 C6.6096066,7.126411 6.6096066,7.5466311 6.86708776,7.80597922 L6.86708776,7.80597922 L6.8670793,7.80592957 Z M0.193117212,7.80592957 C0.450158637,8.06469014 0.867271688,8.06469014 1.12496426,7.80592957 L4.43749726,4.46923474 C4.69442029,4.21001074 4.69442029,3.78971617 4.43749726,3.53099697 L1.12496426,0.194417995 C0.867330883,-0.0648059984 0.450200919,-0.0648059984 0.193117212,0.194417995 C-0.0643724039,0.4532696 -0.0643724039,0.873473141 0.193117212,1.13277989 L3.03988736,4.00014896 L0.193125668,6.86718701 C-0.0643554911,7.126411 -0.0643554911,7.5466311 0.193125668,7.80597922 L0.193125668,7.80597922 L0.193117212,7.80592957 Z" id="形状结合备份" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
</g>
</svg>
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论