update
@ -459,7 +459,7 @@ export default {
|
||||
swiperList: [
|
||||
// "https://ahyd.eshangtech.com/UploadImageDir/minprogram/正大泰国榴莲.jpg",
|
||||
// "http://saas.eshangtech.com/minTestImg/DragonBoatFestival.jpg",
|
||||
"http://saas.eshangtech.com/minTestImg/banner_0605_0612.jpg",
|
||||
"http://saas.eshangtech.com/minTestImg/banner_0612_0619.jpg",
|
||||
"https://ahyd.eshangtech.com/UploadImageDir/minprogram/招商信息_1.jpg",
|
||||
"https://ahyd.eshangtech.com/UploadImageDir/minprogram/龙江大桥_1.jpg",
|
||||
"https://ahyd.eshangtech.com/UploadImageDir/minprogram/小沙坝服务区_1.jpg",
|
||||
@ -467,7 +467,7 @@ export default {
|
||||
previewImageList: [
|
||||
// "https://ahyd.eshangtech.com/UploadImageDir/minprogram/正大泰国榴莲.jpg",
|
||||
// "http://saas.eshangtech.com/minTestImg/DragonBoatFestival.jpg",
|
||||
"http://saas.eshangtech.com/minTestImg/banner_0605_0612.jpg",
|
||||
"http://saas.eshangtech.com/minTestImg/banner_0612_0619.jpg",
|
||||
"https://ahyd.eshangtech.com/UploadImageDir/minprogram/正太泰国榴莲.jpg",
|
||||
"https://ahyd.eshangtech.com/UploadImageDir/minprogram/招商信息_1.jpg",
|
||||
"https://ahyd.eshangtech.com/UploadImageDir/minprogram/龙江大桥.jpg",
|
||||
@ -496,7 +496,7 @@ export default {
|
||||
let stronge = uni.getStorageSync("showIndexPoster");
|
||||
|
||||
// this.$refs.noticeRef.open("center");
|
||||
if (new Date("2025-06-05 00:00:00").getTime() < new Date().getTime() && new Date("2025-06-12 23:59:59").getTime() > new Date().getTime()) {
|
||||
if (new Date("2025-06-11 00:00:00").getTime() < new Date().getTime() && new Date("2025-06-19 23:59:59").getTime() > new Date().getTime()) {
|
||||
this.$refs.noticeRef.open("center");
|
||||
let _this = this
|
||||
setTimeout(() => {
|
||||
@ -522,9 +522,15 @@ export default {
|
||||
if (seatInfo) {
|
||||
this.seat = JSON.parse(seatInfo);
|
||||
}
|
||||
|
||||
console.log('currentService', currentService);
|
||||
|
||||
|
||||
// this.getLocalServer();
|
||||
if (currentService) {
|
||||
this.serviceDetail = currentService;
|
||||
this.serviceDetail = this.handleMergeDetail(currentService);
|
||||
console.log('onLoad', this.serviceDetail);
|
||||
|
||||
} else {
|
||||
this.getLocalServer();
|
||||
}
|
||||
@ -558,8 +564,23 @@ export default {
|
||||
if (currentService) {
|
||||
await this.handleGetServiceDetail(currentService.SERVERPART_ID);
|
||||
// this.serviceDetail = currentService;
|
||||
// this.serviceDetail.sumDetail = this.handleMergeDetail(currentService);
|
||||
|
||||
let obj = this.handleMergeDetail(currentService)
|
||||
let newObj = {
|
||||
...currentService,
|
||||
sumDetail: obj,
|
||||
haveREFUELINGGUN: obj.haveREFUELINGGUN,
|
||||
HASCHARGE: obj.HASCHARGE,
|
||||
havePARKING: obj.havePARKING,
|
||||
haveWC: obj.haveWC,
|
||||
HASMOTHER: obj.HASMOTHER,
|
||||
HASPILOTLOUNGE: obj.HASPILOTLOUNGE,
|
||||
}
|
||||
this.serviceDetail = newObj
|
||||
this.handleGetChargingStation(this.serviceDetail);
|
||||
|
||||
|
||||
console.log('onLoad', this.serviceDetail);
|
||||
}
|
||||
|
||||
let funList = uni.getStorageSync("funList");
|
||||
@ -1130,6 +1151,7 @@ export default {
|
||||
haveREFUELINGGUN: false, // 判断有无加油
|
||||
havePARKING: false, // 判断有无停车场
|
||||
haveWC: false, // 判断有无卫生间
|
||||
HASMOTHER: false
|
||||
};
|
||||
if (obj.RegionInfo && obj.RegionInfo.length > 0) {
|
||||
obj.RegionInfo.forEach((item) => {
|
||||
@ -1160,6 +1182,17 @@ export default {
|
||||
sumObj.BABY_COT += item.BABY_COT;
|
||||
sumObj.CHANGING_TABLE += item.CHANGING_TABLE;
|
||||
sumObj.DROOMWATER_DISPENSER += item.DROOMWATER_DISPENSER;
|
||||
|
||||
if (item.HASMOTHER) {
|
||||
sumObj.HASMOTHER = true
|
||||
}
|
||||
|
||||
|
||||
|
||||
if (sumObj.LIVESTOCKPACKING > 0 || sumObj.STATEGRIDCHARGE > 0 || sumObj.LIAUTOCHARGE > 0 || sumObj.GACENERGYCHARGE > 0 || sumObj.OTHERCHARGE > 0) {
|
||||
sumObj.HASCHARGE = true;
|
||||
}
|
||||
|
||||
if (item.HASPILOTLOUNGE) {
|
||||
sumObj.HASPILOTLOUNGE = true;
|
||||
}
|
||||
@ -2181,7 +2214,8 @@ export default {
|
||||
border-radius: 32rpx;
|
||||
// background-image: url(https://eshangtech.com/minTestImg/caiyunyiguanggao.jpg);
|
||||
// background-image: url(https://ahyd.eshangtech.com/UploadImageDir/minprogram/caiyunyiguanggao_0529_0605.jpg);
|
||||
background-image: url(https://eshangtech.com/minTestImg/caiyunyiguanggao_0605_0612.jpg);
|
||||
// background-image: url(https://eshangtech.com/minTestImg/caiyunyiguanggao_0605_0612.jpg);
|
||||
background-image: url(https://eshangtech.com/minTestImg/caiyunyiguanggao_0612_0619.jpg);
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% 100%;
|
||||
box-sizing: border-box;
|
||||
|
||||
@ -145,10 +145,10 @@
|
||||
<view class="addressItemBottom">
|
||||
<text class="bigName" style="margin-right: 8rpx">{{
|
||||
item.USER_NAME || ""
|
||||
}}</text>
|
||||
}}</text>
|
||||
<text class="name" style="margin-right: 8rpx">{{
|
||||
item.USER_SEX_TEXT || ""
|
||||
}}</text>
|
||||
}}</text>
|
||||
<text class="phone">{{ item.MOBILEPHONE || "" }}</text>
|
||||
</view>
|
||||
</view>
|
||||
@ -660,6 +660,11 @@ export default {
|
||||
});
|
||||
}, 1500);
|
||||
}
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: data.ResultDesc,
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
BIN
unpackage/dist/dev/app-plus/__uniapperror.png
vendored
|
Before Width: | Height: | Size: 5.7 KiB |
1
unpackage/dist/dev/app-plus/__uniappes6.js
vendored
8
unpackage/dist/dev/app-plus/__uniappquill.js
vendored
1
unpackage/dist/dev/app-plus/__uniappscan.js
vendored
BIN
unpackage/dist/dev/app-plus/__uniappsuccess.png
vendored
|
Before Width: | Height: | Size: 2.0 KiB |
25
unpackage/dist/dev/app-plus/__uniappview.html
vendored
@ -1,25 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<script>
|
||||
var __UniViewStartTime__ = Date.now();
|
||||
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
|
||||
CSS.supports('top: constant(a)'))
|
||||
document.write(
|
||||
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
||||
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
|
||||
</script>
|
||||
<title>View</title>
|
||||
<link rel="stylesheet" href="view.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script src="__uniappes6.js"></script>
|
||||
<script src="view.umd.min.js"></script>
|
||||
<script src="app-view.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
154
unpackage/dist/dev/app-plus/app-config.js
vendored
@ -1,154 +0,0 @@
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // install a JSONP callback for chunk loading
|
||||
/******/ function webpackJsonpCallback(data) {
|
||||
/******/ var chunkIds = data[0];
|
||||
/******/ var moreModules = data[1];
|
||||
/******/ var executeModules = data[2];
|
||||
/******/
|
||||
/******/ // add "moreModules" to the modules object,
|
||||
/******/ // then flag all "chunkIds" as loaded and fire callback
|
||||
/******/ var moduleId, chunkId, i = 0, resolves = [];
|
||||
/******/ for(;i < chunkIds.length; i++) {
|
||||
/******/ chunkId = chunkIds[i];
|
||||
/******/ if(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {
|
||||
/******/ resolves.push(installedChunks[chunkId][0]);
|
||||
/******/ }
|
||||
/******/ installedChunks[chunkId] = 0;
|
||||
/******/ }
|
||||
/******/ for(moduleId in moreModules) {
|
||||
/******/ if(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
|
||||
/******/ modules[moduleId] = moreModules[moduleId];
|
||||
/******/ }
|
||||
/******/ }
|
||||
/******/ if(parentJsonpFunction) parentJsonpFunction(data);
|
||||
/******/
|
||||
/******/ while(resolves.length) {
|
||||
/******/ resolves.shift()();
|
||||
/******/ }
|
||||
/******/
|
||||
/******/ // add entry modules from loaded chunk to deferred list
|
||||
/******/ deferredModules.push.apply(deferredModules, executeModules || []);
|
||||
/******/
|
||||
/******/ // run deferred modules when all chunks ready
|
||||
/******/ return checkDeferredModules();
|
||||
/******/ };
|
||||
/******/ function checkDeferredModules() {
|
||||
/******/ var result;
|
||||
/******/ for(var i = 0; i < deferredModules.length; i++) {
|
||||
/******/ var deferredModule = deferredModules[i];
|
||||
/******/ var fulfilled = true;
|
||||
/******/ for(var j = 1; j < deferredModule.length; j++) {
|
||||
/******/ var depId = deferredModule[j];
|
||||
/******/ if(installedChunks[depId] !== 0) fulfilled = false;
|
||||
/******/ }
|
||||
/******/ if(fulfilled) {
|
||||
/******/ deferredModules.splice(i--, 1);
|
||||
/******/ result = __webpack_require__(__webpack_require__.s = deferredModule[0]);
|
||||
/******/ }
|
||||
/******/ }
|
||||
/******/
|
||||
/******/ return result;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // object to store loaded and loading chunks
|
||||
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|
||||
/******/ // Promise = chunk loading, 0 = chunk loaded
|
||||
/******/ var installedChunks = {
|
||||
/******/ "app-config": 0
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ var deferredModules = [];
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/";
|
||||
/******/
|
||||
/******/ var jsonpArray = this["webpackJsonp"] = this["webpackJsonp"] || [];
|
||||
/******/ var oldJsonpFunction = jsonpArray.push.bind(jsonpArray);
|
||||
/******/ jsonpArray.push = webpackJsonpCallback;
|
||||
/******/ jsonpArray = jsonpArray.slice();
|
||||
/******/ for(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);
|
||||
/******/ var parentJsonpFunction = oldJsonpFunction;
|
||||
/******/
|
||||
/******/
|
||||
/******/ // run deferred modules from other chunks
|
||||
/******/ checkDeferredModules();
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ([]);
|
||||
36568
unpackage/dist/dev/app-plus/app-service.js
vendored
36822
unpackage/dist/dev/app-plus/app-view.js
vendored
1
unpackage/dist/dev/app-plus/manifest.json
vendored
@ -1 +0,0 @@
|
||||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__DCA4425","name":"caiyunyi","version":{"name":"1.0.0","code":"100"},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"usingComponents":true,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","distribute":{"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"]},"apple":{"dSYMs":false},"plugins":{"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"allowsInlineMediaPlayback":true,"safearea":{"background":"#fff","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"4.45","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"custom":true,"color":"#130F05","backgroundColor":"#fff","selectedColor":"#130F05","borderStyle":"rgba(0,0,0,0.4)","list":[{"text":"首页","pagePath":"pages/index/index","iconPath":"static/images/tabbar/home.png","selectedIconPath":"static/images/tabbar/home-active.png"},{"text":"我的","pagePath":"pages/user/index","iconPath":"static/images/tabbar/user.png","selectedIconPath":"static/images/tabbar/user_active.png"}],"height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"}}
|
||||
@ -1,20 +0,0 @@
|
||||
@font-face {
|
||||
font-family: "customicons"; /* Project id 2878519 */
|
||||
src:url('/static/customicons.ttf') format('truetype');
|
||||
}
|
||||
|
||||
.customicons {
|
||||
font-family: "customicons" !important;
|
||||
}
|
||||
|
||||
.youxi:before {
|
||||
content: "\e60e";
|
||||
}
|
||||
|
||||
.wenjian:before {
|
||||
content: "\e60f";
|
||||
}
|
||||
|
||||
.zhuanfa:before {
|
||||
content: "\e610";
|
||||
}
|
||||
BIN
unpackage/dist/dev/app-plus/static/customicons.ttf
vendored
@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>服务区图标/花洒_2@2x</title>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="切图汇总" transform="translate(-436.000000, -318.000000)">
|
||||
<g id="服务区图标/花洒" transform="translate(436.000000, 318.000000)">
|
||||
<rect id="矩形" x="0" y="0" width="20" height="20"></rect>
|
||||
<g id="编组" transform="translate(1.250000, 2.812500)">
|
||||
<rect id="矩形" stroke="#BA922F" stroke-width="1.25" x="1.875" y="0.625" width="7.5" height="13.125"></rect>
|
||||
<rect id="矩形" fill="#BA922F" fill-rule="nonzero" x="0" y="13.125" width="11.25" height="1.25"></rect>
|
||||
<path d="M16.25,0 L16.25,11.875 C16.25,12.9105339 15.4105339,13.75 14.375,13.75 C13.3394661,13.75 12.5,12.9105339 12.5,11.875 L12.5,8.75 C12.5,8.05964406 11.9403559,7.5 11.25,7.5 L9.375,7.5 L9.375,7.5" id="路径" stroke="#BA922F" stroke-width="1.25"></path>
|
||||
<rect id="矩形" fill="#BA922F" fill-rule="nonzero" x="15" y="3.125" width="2.5" height="3.75"></rect>
|
||||
<polygon id="路径" fill="#BA922F" fill-rule="nonzero" points="5.98214286 5.9375 8.125 5.9375 5.26785714 10.4375 5.26785714 7.4375 3.125 7.4375 5.98214286 2.9375"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
@ -1,46 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="36px" height="36px" viewBox="0 0 36 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>云南图标/服务区备份_35</title>
|
||||
<defs>
|
||||
<filter x="-40.9%" y="-300.0%" width="181.8%" height="700.0%" filterUnits="objectBoundingBox" id="filter-1">
|
||||
<feGaussianBlur stdDeviation="3" in="SourceGraphic"></feGaussianBlur>
|
||||
</filter>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-2">
|
||||
<stop stop-color="#FFB033" offset="0%"></stop>
|
||||
<stop stop-color="#FF851F" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<path d="M8,5 L28,5 C30.209139,5 32,6.790861 32,9 L32,10 L32,10 L4,10 L4,9 C4,6.790861 5.790861,5 8,5 Z M4,12 L32,12 L32,24 C32,26.209139 30.209139,28 28,28 L8,28 C5.790861,28 4,26.209139 4,24 L4,12 L4,12 Z" id="path-3"></path>
|
||||
<filter x="-5.4%" y="-6.5%" width="110.7%" height="113.0%" filterUnits="objectBoundingBox" id="filter-4">
|
||||
<feGaussianBlur stdDeviation="1" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
|
||||
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
|
||||
<feColorMatrix values="0 0 0 0 1 0 0 0 0 0.880546556 0 0 0 0 0.742253001 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
|
||||
</filter>
|
||||
<linearGradient x1="50%" y1="37.6411962%" x2="50%" y2="100%" id="linearGradient-5">
|
||||
<stop stop-color="#FFF7EF" offset="0%"></stop>
|
||||
<stop stop-color="#FFE9C7" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<path d="M8.665,22.082 L10.843,22.082 C11.071,22.082 11.233,22.118 11.329,22.19 C11.425,22.262 11.473,22.394 11.473,22.586 C11.473,22.778 11.425,22.91 11.329,22.982 C11.233,23.054 11.071,23.09 10.843,23.09 L8.071,23.09 C7.891,23.09 7.75,23.0555 7.648,22.9865 C7.546,22.9175 7.495,22.787 7.495,22.595 L7.495,17.312 C7.495,17.126 7.543,16.997 7.639,16.925 C7.735,16.853 7.879,16.817 8.071,16.817 L10.852,16.817 C11.026,16.817 11.1565,16.8545 11.2435,16.9295 C11.3305,17.0045 11.377,17.135 11.383,17.321 C11.389,17.507 11.344,17.6375 11.248,17.7125 C11.152,17.7875 11.017,17.825 10.843,17.825 L8.665,17.825 L8.665,19.346 L10.753,19.346 C10.945,19.346 11.083,19.3865 11.167,19.4675 C11.251,19.5485 11.293,19.679 11.293,19.859 C11.293,20.039 11.251,20.1665 11.167,20.2415 C11.083,20.3165 10.945,20.354 10.753,20.354 L8.665,20.354 L8.665,22.082 Z M14.983,17.861 L14.983,22.712 C14.983,22.832 14.938,22.94 14.848,23.036 C14.758,23.132 14.608,23.18 14.398,23.18 C14.188,23.18 14.038,23.129 13.948,23.027 C13.858,22.925 13.813,22.82 13.813,22.712 L13.813,17.861 L12.661,17.861 C12.553,17.861 12.448,17.822 12.346,17.744 C12.244,17.666 12.193,17.531 12.193,17.339 C12.193,17.153 12.241,17.0195 12.337,16.9385 C12.433,16.8575 12.541,16.817 12.661,16.817 L16.135,16.817 C16.255,16.817 16.363,16.8575 16.459,16.9385 C16.555,17.0195 16.603,17.153 16.603,17.339 C16.603,17.531 16.552,17.666 16.45,17.744 C16.348,17.822 16.243,17.861 16.135,17.861 L14.983,17.861 Z M20.266,23.27 C19.816,23.27 19.3975,23.195 19.0105,23.045 C18.6235,22.895 18.289,22.676 18.007,22.388 C17.725,22.1 17.506,21.7505 17.35,21.3395 C17.194,20.9285 17.119,20.462 17.125,19.94 C17.131,19.418 17.2105,18.953 17.3635,18.545 C17.5165,18.137 17.7235,17.792 17.9845,17.51 C18.2455,17.228 18.5545,17.012 18.9115,16.862 C19.2685,16.712 19.654,16.637 20.068,16.637 C20.362,16.637 20.632,16.6745 20.878,16.7495 C21.124,16.8245 21.337,16.9175 21.517,17.0285 C21.697,17.1395 21.838,17.2565 21.94,17.3795 C22.042,17.5025 22.099,17.609 22.111,17.699 C22.123,17.777 22.1185,17.843 22.0975,17.897 C22.0765,17.951 22.06,17.99 22.048,18.014 C22.03,18.044 21.997,18.08 21.949,18.122 C21.901,18.164 21.844,18.197 21.778,18.221 C21.67,18.269 21.565,18.266 21.463,18.212 C21.361,18.158 21.247,18.0905 21.121,18.0095 C20.995,17.9285 20.8465,17.8505 20.6755,17.7755 C20.5045,17.7005 20.293,17.663 20.041,17.663 C19.759,17.663 19.5085,17.7275 19.2895,17.8565 C19.0705,17.9855 18.8875,18.155 18.7405,18.365 C18.5935,18.575 18.4825,18.8165 18.4075,19.0895 C18.3325,19.3625 18.295,19.646 18.295,19.94 C18.295,20.234 18.337,20.5205 18.421,20.7995 C18.505,21.0785 18.6295,21.326 18.7945,21.542 C18.9595,21.758 19.165,21.9305 19.411,22.0595 C19.657,22.1885 19.942,22.25 20.266,22.244 C20.434,22.238 20.581,22.2185 20.707,22.1855 C20.833,22.1525 20.944,22.112 21.04,22.064 C21.136,22.016 21.223,21.9635 21.301,21.9065 C21.379,21.8495 21.457,21.791 21.535,21.731 C21.685,21.623 21.832,21.602 21.976,21.668 C22.114,21.722 22.207,21.797 22.255,21.893 C22.303,21.989 22.321,22.088 22.309,22.19 C22.297,22.262 22.243,22.3595 22.147,22.4825 C22.051,22.6055 21.916,22.7255 21.742,22.8425 C21.568,22.9595 21.3565,23.06 21.1075,23.144 C20.8585,23.228 20.578,23.27 20.266,23.27 Z" id="path-6"></path>
|
||||
<filter x="-13.5%" y="-15.1%" width="127.0%" height="160.3%" filterUnits="objectBoundingBox" id="filter-7">
|
||||
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
||||
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0.350875191 0 0 0 0 0.169386343 0 0 0 0 0.0122040365 0 0 0 0.264228447 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
||||
</filter>
|
||||
</defs>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="云南小程序-切图" transform="translate(-31.000000, -380.000000)">
|
||||
<g id="云南图标/服务区备份-3" transform="translate(31.000000, 380.000000)">
|
||||
<rect id="矩形" opacity="0.5" x="0" y="0" width="36" height="36"></rect>
|
||||
<ellipse id="椭圆形" fill="#FF9A45" filter="url(#filter-1)" cx="18" cy="31.5" rx="11" ry="1.5"></ellipse>
|
||||
<g id="形状结合">
|
||||
<use fill="url(#linearGradient-2)" fill-rule="evenodd" xlink:href="#path-3"></use>
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-3"></use>
|
||||
</g>
|
||||
<g id="形状结合">
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-7)" xlink:href="#path-6"></use>
|
||||
<use fill="url(#linearGradient-5)" fill-rule="evenodd" xlink:href="#path-6"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 915 B |
|
Before Width: | Height: | Size: 724 B |
@ -1 +0,0 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1718867424895" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4234" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128"><path d="M514.048 62.464q93.184 0 175.616 35.328t143.872 96.768 96.768 143.872 35.328 175.616q0 94.208-35.328 176.128t-96.768 143.36-143.872 96.768-175.616 35.328q-94.208 0-176.64-35.328t-143.872-96.768-96.768-143.36-35.328-176.128q0-93.184 35.328-175.616t96.768-143.872 143.872-96.768 176.64-35.328zM772.096 576.512q26.624 0 45.056-18.944t18.432-45.568-18.432-45.056-45.056-18.432l-192.512 0 0-192.512q0-26.624-18.944-45.568t-45.568-18.944-45.056 18.944-18.432 45.568l0 192.512-192.512 0q-26.624 0-45.056 18.432t-18.432 45.056 18.432 45.568 45.056 18.944l192.512 0 0 191.488q0 26.624 18.432 45.568t45.056 18.944 45.568-18.944 18.944-45.568l0-191.488 192.512 0z" p-id="4235" fill="#1890ff"></path></svg>
|
||||
|
Before Width: | Height: | Size: 1.0 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>表情/不满意备份_4@2x</title>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="小程序规范汇总" transform="translate(-280.000000, -3104.000000)">
|
||||
<g id="编组" transform="translate(280.000000, 3104.000000)">
|
||||
<rect id="矩形" fill="#000000" fill-rule="nonzero" opacity="0" x="0" y="0" width="16" height="16"></rect>
|
||||
<path d="M8.46875,2.375 C8.55208333,2.375 8.59375,2.41666667 8.59375,2.5 L8.593,7.406 L13.25,7.40625 C13.3333333,7.40625 13.375,7.44791667 13.375,7.53125 L13.375,8.46875 C13.375,8.55208333 13.3333333,8.59375 13.25,8.59375 L8.593,8.593 L8.59375,13.5 C8.59375,13.5833333 8.55208333,13.625 8.46875,13.625 L7.53125,13.625 C7.44791667,13.625 7.40625,13.5833333 7.40625,13.5 L7.406,8.593 L2.75,8.59375 C2.66666667,8.59375 2.625,8.55208333 2.625,8.46875 L2.625,7.53125 C2.625,7.44791667 2.66666667,7.40625 2.75,7.40625 L7.406,7.406 L7.40625,2.5 C7.40625,2.41666667 7.44791667,2.375 7.53125,2.375 L8.46875,2.375 Z" id="形状" fill="#020E1A"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,53 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="36px" height="36px" viewBox="0 0 36 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>云南图标/服务区备份_47</title>
|
||||
<defs>
|
||||
<filter x="-40.9%" y="-300.0%" width="181.8%" height="700.0%" filterUnits="objectBoundingBox" id="filter-1">
|
||||
<feGaussianBlur stdDeviation="3" in="SourceGraphic"></feGaussianBlur>
|
||||
</filter>
|
||||
<linearGradient x1="50%" y1="1.23259516e-30%" x2="50%" y2="100%" id="linearGradient-2">
|
||||
<stop stop-color="#43C075" offset="0%"></stop>
|
||||
<stop stop-color="#27B861" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<path d="M4.50869706,0 L22.4913029,0 C24.7004419,1.55629733e-15 26.4913029,1.790861 26.4913029,4 C26.4913029,4.1592859 26.4817884,4.3184296 26.4628103,4.47658088 L24.4228103,21.4765809 C24.1815645,23.4869622 22.4761073,25 20.4513029,25 L6.54869706,25 C4.52389271,25 2.81843547,23.4869622 2.57718971,21.4765809 L0.537189706,4.47658088 C0.273981352,2.28317794 1.83871323,0.291701 4.03211618,0.0284926461 C4.19026746,0.00951449201 4.34941116,2.92603457e-17 4.50869706,0 Z" id="path-3"></path>
|
||||
<filter x="-5.5%" y="-8.0%" width="111.0%" height="116.0%" filterUnits="objectBoundingBox" id="filter-4">
|
||||
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
|
||||
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
|
||||
<feColorMatrix values="0 0 0 0 0.754241922 0 0 0 0 0.941995372 0 0 0 0 0.828810668 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
|
||||
</filter>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-5">
|
||||
<stop stop-color="#DCFFEC" offset="0%"></stop>
|
||||
<stop stop-color="#D0F7E1" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-6">
|
||||
<stop stop-color="#DFFBEB" offset="0%"></stop>
|
||||
<stop stop-color="#A8EACA" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<path d="M13.5,14 C15.709139,14 17.5,12.209139 17.5,10 C17.5,8.52724067 16.1666667,6.52724067 13.5,4 C10.8333333,6.52724067 9.5,8.52724067 9.5,10 C9.5,12.209139 11.290861,14 13.5,14 Z" id="path-7"></path>
|
||||
<filter x="-25.0%" y="-10.0%" width="150.0%" height="140.0%" filterUnits="objectBoundingBox" id="filter-8">
|
||||
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
||||
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0.00369115844 0 0 0 0 0.321563721 0 0 0 0 0.135142218 0 0 0 0.25 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
||||
</filter>
|
||||
</defs>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="云南小程序-切图" transform="translate(-31.000000, -812.000000)">
|
||||
<g id="云南图标/服务区备份-10" transform="translate(31.000000, 812.000000)">
|
||||
<rect id="矩形" opacity="0.5" x="0" y="0" width="36" height="36"></rect>
|
||||
<ellipse id="椭圆形" fill="#67CA8E" filter="url(#filter-1)" cx="18" cy="31.5" rx="11" ry="1.5"></ellipse>
|
||||
<g id="编组" transform="translate(4.500000, 4.000000)">
|
||||
<g id="矩形">
|
||||
<use fill="url(#linearGradient-2)" fill-rule="evenodd" xlink:href="#path-3"></use>
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-3"></use>
|
||||
</g>
|
||||
<path d="M5.91118742,17.5 L21.0888126,17.5 C21.6410973,17.5 22.0888126,17.9477153 22.0888126,18.5 C22.0888126,18.5496529 22.0851145,18.5992369 22.0777489,18.6483405 L21.7554979,20.7966809 C21.6086419,21.7757208 20.767618,22.5 19.7776252,22.5 L7.22237484,22.5 C6.232382,22.5 5.39135812,21.7757208 5.24450214,20.7966809 L4.92225107,18.6483405 C4.8403249,18.102166 5.2166725,17.5929898 5.76284697,17.5110636 C5.81195054,17.5036981 5.8615345,17.5 5.91118742,17.5 Z" id="矩形" fill="url(#linearGradient-5)"></path>
|
||||
<g id="椭圆形">
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-8)" xlink:href="#path-7"></use>
|
||||
<use fill="url(#linearGradient-6)" fill-rule="evenodd" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 4.7 KiB |
|
Before Width: | Height: | Size: 963 B |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 963 B |
|
Before Width: | Height: | Size: 163 B |
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>云南图标/会员权益备份_8</title>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="云南小程序-切图" transform="translate(-351.000000, -814.000000)">
|
||||
<g id="云南图标/会员权益备份-4" transform="translate(351.000000, 814.000000)">
|
||||
<rect id="矩形" opacity="0.5" x="0" y="0" width="24" height="24"></rect>
|
||||
<path d="M20.8613978,9.10736168 C19.6634689,5.27514656 16.1490101,2.5 12,2.5 C7.73678484,2.5 4.14353482,5.43002586 3.04498068,9.42618374 M3.13814873,14.8911873 C4.33564402,18.7241529 7.85046631,21.5 12,21.5 C16.3879321,21.5 20.0661272,18.3960354 21.0449807,14.2204124" id="形状" stroke="#1E201F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
||||
<path d="M15.0916939,7.6385937 C15.1052718,7.65313177 15.1181241,7.66833103 15.1302038,7.68413601 C15.3622561,7.98775103 15.3337606,8.41623938 15.0635474,8.68645258 L13.5,10.2496454 L14.75,10.25 C15.1642136,10.25 15.5,10.5857864 15.5,11 C15.5,11.4142136 15.1642136,11.75 14.75,11.75 L12.75,11.7496454 L12.75,12.7496454 L14.75,12.75 C15.1642136,12.75 15.5,13.0857864 15.5,13.5 C15.5,13.9142136 15.1642136,14.25 14.75,14.25 L12.75,14.2496454 L12.75,15.5 C12.75,15.9142136 12.4142136,16.25 12,16.25 C11.5857864,16.25 11.25,15.9142136 11.25,15.5 L11.25,14.2496454 L9.25,14.25 C8.83578644,14.25 8.5,13.9142136 8.5,13.5 C8.5,13.0857864 8.83578644,12.75 9.25,12.75 L11.25,12.7496454 L11.25,11.7496454 L9.25,11.75 C8.83578644,11.75 8.5,11.4142136 8.5,11 C8.5,10.5857864 8.83578644,10.25 9.25,10.25 L10.525,10.2496454 L9.17157288,8.89644661 C8.87867966,8.60355339 8.87867966,8.12867966 9.17157288,7.83578644 C9.46446609,7.54289322 9.93933983,7.54289322 10.232233,7.83578644 L12.049,9.65264545 L14.2370542,7.60940944 C14.4811154,7.38146622 14.8637506,7.39453246 15.0916939,7.6385937 Z" id="形状结合" fill="#1E201F"></path>
|
||||
<path d="M3.87628835,9.43004383 L6.27440423,12.1707477 C6.45624526,12.378566 6.43518651,12.6944473 6.22736819,12.8762883 C6.13622244,12.9560409 6.01922746,13 5.89811589,13 L1.10188411,13 C0.825741738,13 0.601884113,12.7761424 0.601884113,12.5 C0.601884113,12.3788884 0.645843237,12.2618934 0.725595766,12.1707477 L3.12371165,9.43004383 C3.30555268,9.22222551 3.62143399,9.20116676 3.8292523,9.38300778 C3.84595769,9.39762499 3.86167113,9.41333844 3.87628835,9.43004383 Z" id="三角形" fill="#1E201F" transform="translate(3.500000, 11.000000) scale(1, -1) translate(-3.500000, -11.000000) "></path>
|
||||
<path d="M20.8762883,11.4300438 L23.2744042,14.1707477 C23.4562453,14.378566 23.4351865,14.6944473 23.2273682,14.8762883 C23.1362224,14.9560409 23.0192275,15 22.8981159,15 L18.1018841,15 C17.8257417,15 17.6018841,14.7761424 17.6018841,14.5 C17.6018841,14.3788884 17.6458432,14.2618934 17.7255958,14.1707477 L20.1237117,11.4300438 C20.3055527,11.2222255 20.621434,11.2011668 20.8292523,11.3830078 C20.8459577,11.397625 20.8616711,11.4133384 20.8762883,11.4300438 Z" id="三角形备份" fill="#1E201F"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 4.8 KiB |
@ -1,71 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="36px" height="36px" viewBox="0 0 36 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>云南图标/服务区备份_47</title>
|
||||
<defs>
|
||||
<filter x="-40.9%" y="-300.0%" width="181.8%" height="700.0%" filterUnits="objectBoundingBox" id="filter-1">
|
||||
<feGaussianBlur stdDeviation="3" in="SourceGraphic"></feGaussianBlur>
|
||||
</filter>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-2">
|
||||
<stop stop-color="#99A7FF" offset="0%"></stop>
|
||||
<stop stop-color="#6077FE" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<rect id="path-3" x="0" y="0" width="11" height="11" rx="3"></rect>
|
||||
<filter x="-13.6%" y="-13.6%" width="127.3%" height="127.3%" filterUnits="objectBoundingBox" id="filter-4">
|
||||
<feGaussianBlur stdDeviation="1" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
|
||||
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
|
||||
<feColorMatrix values="0 0 0 0 0.766781988 0 0 0 0 0.800351248 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
|
||||
</filter>
|
||||
<rect id="path-5" x="0" y="13" width="11" height="11" rx="3"></rect>
|
||||
<filter x="-13.6%" y="-13.6%" width="127.3%" height="127.3%" filterUnits="objectBoundingBox" id="filter-6">
|
||||
<feGaussianBlur stdDeviation="1" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
|
||||
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
|
||||
<feColorMatrix values="0 0 0 0 0.766781988 0 0 0 0 0.800351248 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
|
||||
</filter>
|
||||
<rect id="path-7" x="13" y="13" width="11" height="11" rx="3"></rect>
|
||||
<filter x="-13.6%" y="-13.6%" width="127.3%" height="127.3%" filterUnits="objectBoundingBox" id="filter-8">
|
||||
<feGaussianBlur stdDeviation="1" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
|
||||
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
|
||||
<feColorMatrix values="0 0 0 0 0.766781988 0 0 0 0 0.800351248 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
|
||||
</filter>
|
||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-9">
|
||||
<stop stop-color="#FB6C6C" offset="0%"></stop>
|
||||
<stop stop-color="#FD4A4A" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
<circle id="path-10" cx="18.5" cy="5.5" r="5.5"></circle>
|
||||
<filter x="-13.6%" y="-13.6%" width="127.3%" height="127.3%" filterUnits="objectBoundingBox" id="filter-11">
|
||||
<feGaussianBlur stdDeviation="1" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
|
||||
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
|
||||
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
|
||||
<feColorMatrix values="0 0 0 0 1 0 0 0 0 0.785183641 0 0 0 0 0.785183641 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
|
||||
</filter>
|
||||
</defs>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="云南小程序-切图" transform="translate(-31.000000, -908.000000)">
|
||||
<g id="编组" transform="translate(31.000000, 908.000000)">
|
||||
<rect id="矩形" opacity="0.5" x="0" y="0" width="36" height="36"></rect>
|
||||
<ellipse id="椭圆形" fill="#8798FF" filter="url(#filter-1)" cx="18" cy="31.5" rx="11" ry="1.5"></ellipse>
|
||||
<g id="编组-2" transform="translate(6.000000, 4.000000)">
|
||||
<g id="矩形">
|
||||
<use fill="url(#linearGradient-2)" fill-rule="evenodd" xlink:href="#path-3"></use>
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-3"></use>
|
||||
</g>
|
||||
<g id="矩形备份-3">
|
||||
<use fill="url(#linearGradient-2)" fill-rule="evenodd" xlink:href="#path-5"></use>
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-6)" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="矩形备份-4">
|
||||
<use fill="url(#linearGradient-2)" fill-rule="evenodd" xlink:href="#path-7"></use>
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-8)" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
<g id="椭圆形">
|
||||
<use fill="url(#linearGradient-9)" fill-rule="evenodd" xlink:href="#path-10"></use>
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-11)" xlink:href="#path-10"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 5.4 KiB |
@ -1,19 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>表情/不满意备份_9@2x</title>
|
||||
<defs>
|
||||
<path d="M7.58750873,12.4298916 L6.52684856,13.4905518 L0.747951526,7.71165473 C0.357826227,7.32152943 0.354365786,6.69247179 0.747951526,6.29888605 L6.52684856,0.519989014 L7.58750873,1.58064919 L2.16288753,7.00527039 L7.58750873,12.4298916 Z" id="path-1"></path>
|
||||
</defs>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="小程序规范汇总" transform="translate(-120.000000, -3104.000000)">
|
||||
<g id="表情/不满意备份-9" transform="translate(120.000000, 3104.000000)">
|
||||
<g id="Group" transform="translate(4.000000, 1.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="图标颜色" fill="#9FA3A8" transform="translate(4.020784, 7.005270) rotate(-180.000000) translate(-4.020784, -7.005270) " xlink:href="#path-1"></use>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>服务区图标/花洒备份_18@2x</title>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="切图汇总" transform="translate(-564.000000, -318.000000)">
|
||||
<g id="编组" transform="translate(564.000000, 318.000000)">
|
||||
<rect id="矩形" x="0" y="0" width="20" height="20"></rect>
|
||||
<polygon id="矩形" stroke="#BA922F" stroke-width="1.25" points="5 6.5625 15 6.5625 15 18.125 5 18.125"></polygon>
|
||||
<path d="" id="矩形" stroke="#BA922F" stroke-width="2.5"></path>
|
||||
<path d="" id="矩形备份" stroke="#BA922F" stroke-width="2.5"></path>
|
||||
<path d="M7.375,6.5625 L6.25,6.5625 L6.25,4.0625 L8.75,4.0625 M11.25,4.0625 L13.75,4.0625 L13.75,6.5625 L12.625,6.5625" id="形状" stroke="#BA922F" stroke-width="1.25"></path>
|
||||
<path d="M8.125,4.0625 L8.125,2.8125 C8.125,2.12214406 8.68464406,1.5625 9.375,1.5625 L10.625,1.5625 C11.3153559,1.5625 11.875,2.12214406 11.875,2.8125 L11.875,4.0625" id="路径" stroke="#BA922F" stroke-width="1.25"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>图标/关注_2</title>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="云南小程序-切图" transform="translate(-327.000000, -137.000000)">
|
||||
<g id="编组" transform="translate(327.000000, 137.000000)">
|
||||
<rect id="矩形" x="0" y="0" width="24" height="24"></rect>
|
||||
<polyline id="路径" stroke="#FFFFFF" stroke-width="1.66666667" points="16.5336 2.6664 7.2 12 16.5336 21.3342"></polyline>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 729 B |
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>图标/关注_2</title>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="云南小程序-切图" transform="translate(-327.000000, -137.000000)">
|
||||
<g id="编组" transform="translate(327.000000, 137.000000)">
|
||||
<rect id="矩形" x="0" y="0" width="24" height="24"></rect>
|
||||
<polyline id="路径" stroke="#130F05" stroke-width="1.66666667" points="16.5336 2.6664 7.2 12 16.5336 21.3342"></polyline>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 728 B |
@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>云南图标/卫生间_3</title>
|
||||
<defs>
|
||||
<linearGradient x1="50%" y1="100%" x2="50%" y2="1.84889275e-30%" id="linearGradient-1">
|
||||
<stop stop-color="#27B25F" offset="0%"></stop>
|
||||
<stop stop-color="#4CCC7F" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="云南小程序-切图" transform="translate(-175.000000, -85.000000)">
|
||||
<g id="云南图标/卫生间" transform="translate(175.000000, 85.000000)">
|
||||
<rect id="矩形" opacity="0.5" x="0" y="0" width="24" height="24"></rect>
|
||||
<path d="M8.85769515,5.49166975 L19.25,11.4916698 L13.75,21.0179492 C13.1977153,21.9745344 11.9745344,22.3022847 11.0179492,21.75 L4.08974596,17.75 C3.13316072,17.1977153 2.8054104,15.9745344 3.35769515,15.0179492 L4.35769515,13.2858984 L6.95577137,14.7858984 C7.43406399,15.0620408 8.04565439,14.8981656 8.32179677,14.419873 C8.59793914,13.9415804 8.43406399,13.32999 7.95577137,13.0538476 L5.35769515,11.5538476 L6.35769515,9.82179677 L8.95577137,11.3217968 C9.43406399,11.5979391 10.0456544,11.434064 10.3217968,10.9557714 C10.5979391,10.4774787 10.434064,9.86588834 9.95577137,9.58974596 L7.35769515,8.08974596 L8.85769515,5.49166975 Z M14.3887841,2.91154273 L15.2548095,3.41154273 C15.669023,2.6941038 16.5864086,2.44829106 17.3038476,2.86250463 C18.0212865,3.27671819 18.2670992,4.1941038 17.8528857,4.91154273 L18.7189111,5.41154273 C19.9280486,6.1096386 20.5630661,7.42025581 20.4583106,8.72516824 L20.75,8.89359354 C21.2282926,9.16973591 21.3921678,9.78132632 21.1160254,10.2596189 C20.839883,10.7379116 20.2282926,10.9017867 19.75,10.6256443 L9.35769515,4.62564435 C8.87940253,4.34950197 8.71552738,3.73791157 8.99166975,3.25961894 C9.26781213,2.78132632 9.87940253,2.61745116 10.3576952,2.89359354 L10.6499946,3.06158175 C11.7276438,2.31877544 13.1798687,2.21357514 14.3887841,2.91154273 Z" id="形状结合" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 693 B |
@ -1 +0,0 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1735886731341" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4217" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128"><path d="M748.8 160 390.4 512l358.4 352c19.2 19.2 19.2 57.6 0 76.8-19.2 19.2-57.6 19.2-76.8 0L281.6 556.8c0 0-6.4 0-6.4-6.4C262.4 544 256 524.8 256 512c0-12.8 6.4-32 19.2-38.4 0 0 6.4 0 6.4-6.4l390.4-390.4c19.2-19.2 57.6-19.2 76.8 0C774.4 102.4 774.4 134.4 748.8 160z" fill="#020202" p-id="4218"></path></svg>
|
||||
|
Before Width: | Height: | Size: 633 B |
@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>云南图标/路况播报_2</title>
|
||||
<defs>
|
||||
<linearGradient x1="50%" y1="100%" x2="50%" y2="1.84889275e-30%" id="linearGradient-1">
|
||||
<stop stop-color="#27B25F" offset="0%"></stop>
|
||||
<stop stop-color="#4CCC7F" offset="100%"></stop>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="云南小程序-切图" transform="translate(-31.000000, -45.000000)">
|
||||
<g id="云南图标/路况播报" transform="translate(31.000000, 45.000000)">
|
||||
<rect id="矩形" x="0" y="0" width="16" height="16"></rect>
|
||||
<path d="M2.5,12 C1.3954305,12 0.5,11.1045695 0.5,10 L0.5,6 C0.5,4.8954305 1.3954305,4 2.5,4 L4.25,4 L7.08563616,1.47943452 C7.49841893,1.11251651 8.1304913,1.14969723 8.49740932,1.56248 C8.66012143,1.74553113 8.75,1.98192968 8.75,2.22684384 L8.75,13.7731562 C8.75,14.3254409 8.30228475,14.7731562 7.75,14.7731562 C7.50508584,14.7731562 7.26868729,14.6832776 7.08563616,14.5205655 L4.25,12 L2.5,12 Z M13.3477238,2.64013545 C14.7197772,4.07272764 15.5,5.9759843 15.5,8 C15.5,9.84735357 14.8505318,11.5966506 13.6864174,12.9823644 C13.4199831,13.2995168 12.9468926,13.3406319 12.6297402,13.0741976 C12.3125879,12.8077634 12.2714727,12.3346729 12.537907,12.0175205 C13.4770563,10.8995959 14,9.49108365 14,8 C14,6.3665065 13.3716624,4.83375492 12.2644214,3.67765944 C11.9779171,3.37851375 11.9881649,2.9037506 12.2873106,2.61724627 C12.5864563,2.33074193 13.0612194,2.34098977 13.3477238,2.64013545 Z M11.1149363,4.64743326 C11.9957541,5.53148373 12.5,6.72679018 12.5,8 C12.5,9.16935753 12.0749316,10.2747546 11.3183276,11.1352871 C11.044822,11.4463619 10.5709259,11.4768178 10.2598511,11.2033122 C9.94877625,10.9298065 9.91832037,10.4559105 10.191826,10.1448356 C10.7099522,9.55553863 11,8.8012648 11,8 C11,7.12773647 10.655809,6.31183756 10.0523351,5.70614883 C9.75997891,5.41271961 9.76084873,4.93784667 10.054278,4.64549044 C10.3477072,4.35313421 10.8225801,4.35400403 11.1149363,4.64743326 Z" id="形状结合" fill="url(#linearGradient-1)" fill-rule="nonzero"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.3 KiB |
@ -1,21 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>服务区图标/花洒备份_29@2x</title>
|
||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="切图汇总" transform="translate(-340.000000, -390.000000)">
|
||||
<g id="服务区图标/花洒备份-11" transform="translate(340.000000, 390.000000)">
|
||||
<rect id="矩形" x="0" y="0" width="16" height="16"></rect>
|
||||
<g id="编组" transform="translate(1.500000, 1.500000)" stroke="#130F05">
|
||||
<rect id="矩形" x="1.5" y="0.5" width="10" height="11"></rect>
|
||||
<rect id="矩形" x="12.5" y="3.5" width="1" height="2"></rect>
|
||||
<rect id="矩形备份" x="0.5" y="3.5" width="1" height="2"></rect>
|
||||
<rect id="矩形" x="1.5" y="6.5" width="10" height="1" rx="0.5"></rect>
|
||||
<rect id="矩形备份-2" x="3.5" y="8.5" width="1" height="1"></rect>
|
||||
<rect id="矩形备份-3" x="8.5" y="8.5" width="1" height="1"></rect>
|
||||
<rect id="矩形" x="9.5" y="11.5" width="1" height="1"></rect>
|
||||
<rect id="矩形备份-4" x="3.5" y="11.5" width="1" height="1"></rect>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 14 KiB |