先传一版
36
pages.json
@ -30,25 +30,29 @@
|
|||||||
{
|
{
|
||||||
"navigationBarTitleText": "驿达数智化看板"
|
"navigationBarTitleText": "驿达数智化看板"
|
||||||
}
|
}
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/authorityApproval/index",
|
|
||||||
"style":
|
|
||||||
{
|
|
||||||
"navigationBarTitleText": "权限审批",
|
|
||||||
"enablePullDownRefresh": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"path": "pages/authorityApproval/detail",
|
|
||||||
"style":
|
|
||||||
{
|
|
||||||
"navigationBarTitleText": "权限审批",
|
|
||||||
"enablePullDownRefresh": true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"subPackages": [ //分包加载配置
|
"subPackages": [ //分包加载配置
|
||||||
|
{
|
||||||
|
"root": "pages/authorityApproval",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"path": "index",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "权限审批",
|
||||||
|
"enablePullDownRefresh": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "detail",
|
||||||
|
"style":
|
||||||
|
{
|
||||||
|
"navigationBarTitleText": "权限审批",
|
||||||
|
"enablePullDownRefresh": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"root": "pages/auditingPop",
|
"root": "pages/auditingPop",
|
||||||
"pages": [
|
"pages": [
|
||||||
|
|||||||
@ -128,8 +128,8 @@ import request from '@/util/index.js'
|
|||||||
provinceCode: obj.pcode,
|
provinceCode: obj.pcode,
|
||||||
SearchKeyName:_this.pageOption.searchKey,
|
SearchKeyName:_this.pageOption.searchKey,
|
||||||
SearchKeyValue:_this.pageOption.searchValue,
|
SearchKeyValue:_this.pageOption.searchValue,
|
||||||
BusinessType:_this.pageOption.BusinessTypeValue?_this.pageOption.BusinessTypeValue:'',
|
BusinessType:_this.pageOption.BusinessTypeValue>0?_this.pageOption.BusinessTypeValue:'',
|
||||||
SettlementMode:_this.pageOption.SettlementModeValue?_this.pageOption.SettlementModeValue:'',
|
SettlementMode:_this.pageOption.SettlementModeValue>0?_this.pageOption.SettlementModeValue:'',
|
||||||
}).then(res=>{
|
}).then(res=>{
|
||||||
console.log('res',res)
|
console.log('res',res)
|
||||||
if(res.Result_Code==100) {
|
if(res.Result_Code==100) {
|
||||||
|
|||||||
@ -247,6 +247,7 @@
|
|||||||
import {mapState} from 'vuex'
|
import {mapState} from 'vuex'
|
||||||
import request from '@/util/index.js'
|
import request from '@/util/index.js'
|
||||||
import {wrapTreeNode} from "../../util/dateTime";
|
import {wrapTreeNode} from "../../util/dateTime";
|
||||||
|
import moment from "moment";
|
||||||
export default {
|
export default {
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
@ -302,12 +303,19 @@
|
|||||||
this.pageData.searchTime = this.searchTimePopup
|
this.pageData.searchTime = this.searchTimePopup
|
||||||
this.$refs.timePopup.close()
|
this.$refs.timePopup.close()
|
||||||
},
|
},
|
||||||
// 选择了经营模式
|
// 经营模式和结算模式只能二选一 选了一个另一个就取消
|
||||||
|
// 选择了结算模式
|
||||||
handleChangeSettlement(value){
|
handleChangeSettlement(value){
|
||||||
|
if (this.BusinessTypeValue!==0){
|
||||||
|
this.BusinessTypeValue = 0
|
||||||
|
}
|
||||||
this.SettlementModeValue = value
|
this.SettlementModeValue = value
|
||||||
},
|
},
|
||||||
// 选择了经营模式
|
// 选择了经营模式
|
||||||
handleChangeBusiness(value){
|
handleChangeBusiness(value){
|
||||||
|
if (this.SettlementModeValue!==0){
|
||||||
|
this.SettlementModeValue = 0
|
||||||
|
}
|
||||||
this.BusinessTypeValue = value
|
this.BusinessTypeValue = value
|
||||||
},
|
},
|
||||||
// 选择了自定义时间
|
// 选择了自定义时间
|
||||||
@ -349,7 +357,7 @@
|
|||||||
this.BusinessTypeValue = 0
|
this.BusinessTypeValue = 0
|
||||||
this.SettlementModeValue = 0
|
this.SettlementModeValue = 0
|
||||||
this.selectTime = 0
|
this.selectTime = 0
|
||||||
this.getList()
|
// this.getList()
|
||||||
},
|
},
|
||||||
handleDelete(){
|
handleDelete(){
|
||||||
this.searchText = ''
|
this.searchText = ''
|
||||||
@ -396,7 +404,32 @@
|
|||||||
mask:true
|
mask:true
|
||||||
})
|
})
|
||||||
let _this = this
|
let _this = this
|
||||||
let searchTime = this.pageData.searchTime
|
let searchTime
|
||||||
|
|
||||||
|
if(this.selectTime){
|
||||||
|
console.log('selectTime',this.selectTime)
|
||||||
|
let startTime;
|
||||||
|
let endTime;
|
||||||
|
if (this.selectTime===1){
|
||||||
|
endTime = moment().subtract(1, 'day').format('YYYY-MM-DD')
|
||||||
|
startTime = moment().subtract(7, 'day').format('YYYY-MM-DD')
|
||||||
|
searchTime = [startTime,endTime]
|
||||||
|
}else if(this.selectTime===2){
|
||||||
|
endTime = moment().subtract(1, 'day').format('YYYY-MM-DD')
|
||||||
|
startTime = moment().subtract(30, 'day').format('YYYY-MM-DD')
|
||||||
|
searchTime = [startTime,endTime]
|
||||||
|
}else if(this.selectTime===3){
|
||||||
|
endTime = moment().subtract(1, 'day').format('YYYY-MM-DD')
|
||||||
|
startTime = moment().subtract(90, 'day').format('YYYY-MM-DD')
|
||||||
|
searchTime = [startTime,endTime]
|
||||||
|
}else if(this.selectTime===3){
|
||||||
|
endTime = moment().subtract(1, 'day').format('YYYY-MM-DD')
|
||||||
|
startTime = moment().subtract(180, 'day').format('YYYY-MM-DD')
|
||||||
|
searchTime = [startTime,endTime]
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
searchTime = this.pageData.searchTime
|
||||||
|
}
|
||||||
let searchName = ''
|
let searchName = ''
|
||||||
this.checkBoxValue.forEach(item=>{
|
this.checkBoxValue.forEach(item=>{
|
||||||
if (searchName){
|
if (searchName){
|
||||||
|
|||||||
@ -1,86 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg width="36px" height="32px" viewBox="0 0 36 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
||||||
<title>商业bi/车流画像@2x</title>
|
|
||||||
<defs>
|
|
||||||
<linearGradient x1="50%" y1="-85.3086716%" x2="50%" y2="100%" id="linearGradient-1">
|
|
||||||
<stop stop-color="#6FBAFF" offset="0%"></stop>
|
|
||||||
<stop stop-color="#1350FF" offset="100%"></stop>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-2">
|
|
||||||
<stop stop-color="#6FBAFF" offset="0%"></stop>
|
|
||||||
<stop stop-color="#0848FF" offset="100%"></stop>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-3">
|
|
||||||
<stop stop-color="#C9F6FF" offset="0%"></stop>
|
|
||||||
<stop stop-color="#92AEFF" offset="100%"></stop>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-4">
|
|
||||||
<stop stop-color="#C9F6FF" offset="0%"></stop>
|
|
||||||
<stop stop-color="#92AEFF" offset="100%"></stop>
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="linearGradient-5">
|
|
||||||
<stop stop-color="#36E6D3" offset="0%"></stop>
|
|
||||||
<stop stop-color="#19C9A7" offset="100%"></stop>
|
|
||||||
</linearGradient>
|
|
||||||
<path d="M26,29 C25.4477153,29 25,28.5522847 25,28 C25,27.4477153 25.4477153,27 26,27 L27,27 L27,26 C27,25.4477153 27.4477153,25 28,25 C28.5522847,25 29,25.4477153 29,26 L29,28 L29,28 C29,28.5128358 28.6139598,28.9355072 28.1166211,28.9932723 L28,29 L28,29 L26,29 Z" id="path-6"></path>
|
|
||||||
<filter x="-212.5%" y="-262.5%" width="525.0%" height="525.0%" filterUnits="objectBoundingBox" id="filter-7">
|
|
||||||
<feOffset dx="0" dy="-2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
|
||||||
<feGaussianBlur stdDeviation="2.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
||||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 1 0 0 0 0 0.857954545 0 0 0 1 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
|
||||||
</filter>
|
|
||||||
<path d="M26,7 C25.4477153,7 25,6.55228475 25,6 C25,5.44771525 25.4477153,5 26,5 L27,5 L27,4 C27,3.44771525 27.4477153,3 28,3 C28.5522847,3 29,3.44771525 29,4 L29,6 L29,6 C29,6.51283584 28.6139598,6.93550716 28.1166211,6.99327227 L28,7 L28,7 L26,7 Z" id="path-8"></path>
|
|
||||||
<filter x="-212.5%" y="-262.5%" width="525.0%" height="525.0%" filterUnits="objectBoundingBox" id="filter-9">
|
|
||||||
<feOffset dx="0" dy="-2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
|
||||||
<feGaussianBlur stdDeviation="2.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
||||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 1 0 0 0 0 0.857954545 0 0 0 1 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
|
||||||
</filter>
|
|
||||||
<path d="M4,29 C3.44771525,29 3,28.5522847 3,28 C3,27.4477153 3.44771525,27 4,27 L5,27 L5,26 C5,25.4477153 5.44771525,25 6,25 C6.55228475,25 7,25.4477153 7,26 L7,28 L7,28 C7,28.5128358 6.61395981,28.9355072 6.11662113,28.9932723 L6,29 L6,29 L4,29 Z" id="path-10"></path>
|
|
||||||
<filter x="-212.5%" y="-262.5%" width="525.0%" height="525.0%" filterUnits="objectBoundingBox" id="filter-11">
|
|
||||||
<feOffset dx="0" dy="-2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
|
||||||
<feGaussianBlur stdDeviation="2.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
||||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 1 0 0 0 0 0.857954545 0 0 0 1 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
|
||||||
</filter>
|
|
||||||
<path d="M4,7 C3.44771525,7 3,6.55228475 3,6 C3,5.44771525 3.44771525,5 4,5 L5,5 L5,4 C5,3.44771525 5.44771525,3 6,3 C6.55228475,3 7,3.44771525 7,4 L7,6 L7,6 C7,6.51283584 6.61395981,6.93550716 6.11662113,6.99327227 L6,7 L6,7 L4,7 Z" id="path-12"></path>
|
|
||||||
<filter x="-212.5%" y="-262.5%" width="525.0%" height="525.0%" filterUnits="objectBoundingBox" id="filter-13">
|
|
||||||
<feOffset dx="0" dy="-2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
|
||||||
<feGaussianBlur stdDeviation="2.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
||||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 1 0 0 0 0 0.857954545 0 0 0 1 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
|
||||||
</filter>
|
|
||||||
</defs>
|
|
||||||
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
||||||
<g id="驿达小程序-首页0311" transform="translate(-113.000000, -2228.000000)">
|
|
||||||
<g id="编组-32" transform="translate(115.000000, 2228.000000)">
|
|
||||||
<g id="商业BI/车流画像" transform="translate(-2.000000, 0.000000)">
|
|
||||||
<g id="编组" transform="translate(2.000000, 0.000000)">
|
|
||||||
<g transform="translate(2.000000, 5.000000)">
|
|
||||||
<circle id="椭圆形" fill="url(#linearGradient-1)" cx="26" cy="10" r="2"></circle>
|
|
||||||
<circle id="椭圆形备份" fill="url(#linearGradient-1)" cx="2" cy="10" r="2"></circle>
|
|
||||||
<path d="M2,17 L6,17 L6,18 C6,19.1045695 5.1045695,20 4,20 C2.8954305,20 2,19.1045695 2,18 L2,17 L2,17 Z" id="矩形" fill="#0627FF"></path>
|
|
||||||
<path d="M22,17 L26,17 L26,18 C26,19.1045695 25.1045695,20 24,20 C22.8954305,20 22,19.1045695 22,18 L22,17 L22,17 Z" id="矩形备份" fill="#0627FF"></path>
|
|
||||||
<path d="M7.23606798,0 L20.763932,0 C21.5214761,1.63719824e-15 22.2140024,0.428004752 22.5527864,1.10557281 L25.7888544,7.57770876 C25.9277098,7.85541963 26,8.16164576 26,8.47213595 L26,17 C26,17.5522847 25.5522847,18 25,18 L3,18 C2.44771525,18 2,17.5522847 2,17 L2,8.47213595 C2,8.16164576 2.07229018,7.85541963 2.21114562,7.57770876 L5.4472136,1.10557281 C5.78599762,0.428004752 6.47852386,1.39158597e-16 7.23606798,0 Z" id="矩形" fill="url(#linearGradient-2)"></path>
|
|
||||||
<path d="M7.65939616,2 L20.3406038,2 C20.740632,2 21.1021701,2.23839685 21.2597489,2.6060807 L23.5085693,7.85332844 C23.7261581,8.36096153 23.4909996,8.94885758 22.9833551,9.16641953 C22.9123733,9.19684031 22.8381066,9.21893659 22.7620398,9.23226659 C19.8413599,9.74408886 16.9206799,10 14,10 C11.0793141,10 8.15862816,9.74408781 5.23794224,9.23226344 C4.69395492,9.13692357 4.33024423,8.61865355 4.42557352,8.07466438 C4.43890299,7.99860076 4.46099837,7.92433715 4.49141789,7.85335826 L6.74025113,2.6060807 C6.89782992,2.23839685 7.25936805,2 7.65939616,2 Z" id="矩形" fill="url(#linearGradient-3)"></path>
|
|
||||||
<path d="M24,11.8615898 L24,14.5 C24,14.7761424 23.7761424,15 23.5,15 L18.5062258,15 C18.2853119,15 18.1062258,14.8209139 18.1062258,14.6 C18.1062258,14.4564573 18.1831402,14.3239199 18.3077702,14.2527027 L23.2519305,11.4274683 C23.4916893,11.2904633 23.7971166,11.3737616 23.9341216,11.6135204 C23.9772923,11.6890692 24,11.7745764 24,11.8615898 Z" id="矩形" fill="url(#linearGradient-4)"></path>
|
|
||||||
<path d="M11,11.8615898 L11,14.5 C11,14.7761424 10.7761424,15 10.5,15 L5.50622577,15 C5.28531187,15 5.10622577,14.8209139 5.10622577,14.6 C5.10622577,14.4564573 5.1831402,14.3239199 5.3077702,14.2527027 L10.2519305,11.4274683 C10.4916893,11.2904633 10.7971166,11.3737616 10.9341216,11.6135204 C10.9772923,11.6890692 11,11.7745764 11,11.8615898 Z" id="矩形备份-2" fill="url(#linearGradient-4)" transform="translate(7.500000, 13.000000) scale(-1, 1) translate(-7.500000, -13.000000) "></path>
|
|
||||||
</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 id="形状结合备份" transform="translate(27.000000, 5.000000) scale(1, -1) translate(-27.000000, -5.000000) ">
|
|
||||||
<use fill="black" fill-opacity="1" filter="url(#filter-9)" xlink:href="#path-8"></use>
|
|
||||||
<use fill="url(#linearGradient-5)" fill-rule="evenodd" xlink:href="#path-8"></use>
|
|
||||||
</g>
|
|
||||||
<g id="形状结合备份-3" transform="translate(5.000000, 27.000000) scale(-1, 1) translate(-5.000000, -27.000000) ">
|
|
||||||
<use fill="black" fill-opacity="1" filter="url(#filter-11)" xlink:href="#path-10"></use>
|
|
||||||
<use fill="url(#linearGradient-5)" fill-rule="evenodd" xlink:href="#path-10"></use>
|
|
||||||
</g>
|
|
||||||
<g id="形状结合备份-2" transform="translate(5.000000, 5.000000) scale(-1, -1) translate(-5.000000, -5.000000) ">
|
|
||||||
<use fill="black" fill-opacity="1" filter="url(#filter-13)" xlink:href="#path-12"></use>
|
|
||||||
<use fill="url(#linearGradient-5)" fill-rule="evenodd" xlink:href="#path-12"></use>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 9.1 KiB |
|
Before Width: | Height: | Size: 7.3 KiB |
@ -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="1700641776701" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6212" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M781.186088 616.031873q17.338645 80.573705 30.59761 145.848606 6.119522 27.537849 11.219124 55.075697t9.689243 49.976096 7.649402 38.247012 4.079681 19.888446q3.059761 20.398406-9.179283 27.027888t-27.537849 6.629482q-5.099602 0-14.788845-3.569721t-14.788845-5.609562l-266.199203-155.027888q-72.414343 42.836653-131.569721 76.494024-25.498008 14.278884-50.486056 28.557769t-45.386454 26.517928-35.187251 20.398406-19.888446 10.199203q-10.199203 5.099602-20.908367 3.569721t-19.378486-7.649402-12.749004-14.788845-2.039841-17.848606q1.01992-4.079681 5.099602-19.888446t9.179283-37.737052 11.729084-48.446215 13.768924-54.055777q15.298805-63.23506 34.677291-142.788845-60.175299-52.015936-108.111554-92.812749-20.398406-17.338645-40.286853-34.167331t-35.697211-30.59761-26.007968-22.438247-11.219124-9.689243q-12.239044-11.219124-20.908367-24.988048t-6.629482-28.047809 11.219124-22.438247 20.398406-10.199203l315.155378-28.557769 117.290837-273.338645q6.119522-16.318725 17.338645-28.047809t30.59761-11.729084q10.199203 0 17.848606 4.589641t12.749004 10.709163 8.669323 12.239044 5.609562 10.199203l114.231076 273.338645 315.155378 29.577689q20.398406 5.099602 28.557769 12.239044t8.159363 22.438247q0 14.278884-8.669323 24.988048t-21.928287 26.007968z" p-id="6213" fill="#FF7831"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.6 KiB |
@ -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="1700641776701" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6212" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M781.186088 616.031873q17.338645 80.573705 30.59761 145.848606 6.119522 27.537849 11.219124 55.075697t9.689243 49.976096 7.649402 38.247012 4.079681 19.888446q3.059761 20.398406-9.179283 27.027888t-27.537849 6.629482q-5.099602 0-14.788845-3.569721t-14.788845-5.609562l-266.199203-155.027888q-72.414343 42.836653-131.569721 76.494024-25.498008 14.278884-50.486056 28.557769t-45.386454 26.517928-35.187251 20.398406-19.888446 10.199203q-10.199203 5.099602-20.908367 3.569721t-19.378486-7.649402-12.749004-14.788845-2.039841-17.848606q1.01992-4.079681 5.099602-19.888446t9.179283-37.737052 11.729084-48.446215 13.768924-54.055777q15.298805-63.23506 34.677291-142.788845-60.175299-52.015936-108.111554-92.812749-20.398406-17.338645-40.286853-34.167331t-35.697211-30.59761-26.007968-22.438247-11.219124-9.689243q-12.239044-11.219124-20.908367-24.988048t-6.629482-28.047809 11.219124-22.438247 20.398406-10.199203l315.155378-28.557769 117.290837-273.338645q6.119522-16.318725 17.338645-28.047809t30.59761-11.729084q10.199203 0 17.848606 4.589641t12.749004 10.709163 8.669323 12.239044 5.609562 10.199203l114.231076 273.338645 315.155378 29.577689q20.398406 5.099602 28.557769 12.239044t8.159363 22.438247q0 14.278884-8.669323 24.988048t-21.928287 26.007968z" p-id="6213" fill="#FE9F17"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.6 KiB |
@ -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="1700641776701" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6212" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M781.186088 616.031873q17.338645 80.573705 30.59761 145.848606 6.119522 27.537849 11.219124 55.075697t9.689243 49.976096 7.649402 38.247012 4.079681 19.888446q3.059761 20.398406-9.179283 27.027888t-27.537849 6.629482q-5.099602 0-14.788845-3.569721t-14.788845-5.609562l-266.199203-155.027888q-72.414343 42.836653-131.569721 76.494024-25.498008 14.278884-50.486056 28.557769t-45.386454 26.517928-35.187251 20.398406-19.888446 10.199203q-10.199203 5.099602-20.908367 3.569721t-19.378486-7.649402-12.749004-14.788845-2.039841-17.848606q1.01992-4.079681 5.099602-19.888446t9.179283-37.737052 11.729084-48.446215 13.768924-54.055777q15.298805-63.23506 34.677291-142.788845-60.175299-52.015936-108.111554-92.812749-20.398406-17.338645-40.286853-34.167331t-35.697211-30.59761-26.007968-22.438247-11.219124-9.689243q-12.239044-11.219124-20.908367-24.988048t-6.629482-28.047809 11.219124-22.438247 20.398406-10.199203l315.155378-28.557769 117.290837-273.338645q6.119522-16.318725 17.338645-28.047809t30.59761-11.729084q10.199203 0 17.848606 4.589641t12.749004 10.709163 8.669323 12.239044 5.609562 10.199203l114.231076 273.338645 315.155378 29.577689q20.398406 5.099602 28.557769 12.239044t8.159363 22.438247q0 14.278884-8.669323 24.988048t-21.928287 26.007968z" p-id="6213" fill="#BCC2C9"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.6 KiB |
@ -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="1700641887469" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7424" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M514.048 128q79.872 0 149.504 30.208t121.856 82.432 82.432 122.368 30.208 150.016q0 78.848-30.208 148.48t-82.432 121.856-121.856 82.432-149.504 30.208-149.504-30.208-121.856-82.432-82.432-121.856-30.208-148.48q0-79.872 30.208-150.016t82.432-122.368 121.856-82.432 149.504-30.208z" p-id="7425" fill="#FF7831"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 654 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="1700641887469" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7424" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M514.048 128q79.872 0 149.504 30.208t121.856 82.432 82.432 122.368 30.208 150.016q0 78.848-30.208 148.48t-82.432 121.856-121.856 82.432-149.504 30.208-149.504-30.208-121.856-82.432-82.432-121.856-30.208-148.48q0-79.872 30.208-150.016t82.432-122.368 121.856-82.432 149.504-30.208z" p-id="7425" fill="#BCC2C9"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 654 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="1700641887469" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7424" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M514.048 128q79.872 0 149.504 30.208t121.856 82.432 82.432 122.368 30.208 150.016q0 78.848-30.208 148.48t-82.432 121.856-121.856 82.432-149.504 30.208-149.504-30.208-121.856-82.432-82.432-121.856-30.208-148.48q0-79.872 30.208-150.016t82.432-122.368 121.856-82.432 149.504-30.208z" p-id="7425" fill="#FEAC37"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 654 B |