tanxue пре 1 месец
родитељ
комит
73a2248c87

+ 4 - 4
pages/Login/components/clientloginBox.vue

@@ -99,7 +99,7 @@
 	
 	// 登录
 	function handleLogin() {
-		if(userName.value.length ===0){
+	/* 	if(userName.value.length ===0){
 			toast('请输入手机号!')
 			return
 		}
@@ -107,7 +107,7 @@
 		if(password.value.length ===0){
 			toast('请输入密码!')
 			return
-		}
+		} */
 		
 		// 去除 userName 两端的空格
 		const trimmedUserName = userName.value;
@@ -120,8 +120,8 @@
 		httpApi.loginTemp({
 			// type 1app 2为H5
 			type:2,
-			userName: trimmedUserName,
-			 password:trimmedPassword,
+			userName: '18842603073',
+			 password:'434354',
 			
 		}).then(res => {
 			// 4为家政人员

+ 12 - 11
pages/client/Chengji/ksScoreShijuan.vue

@@ -1,10 +1,7 @@
 <template>
 	<view class="phone-score-page">
 		<!-- 导航区域 -->
-		<view class="icon-title-bjcolor-navBar-box">
-			<view @click="handleBack" class="nav-bar-icon"></view>
-			<text class="nav-bar-title">{{data.ksName}}</text>
-		</view>
+		<customNavbarVue :title="data.ksName" :show-back-btn="true" @back="handleBack"></customNavbarVue>
 		<!-- 上方区域 -->
 		<topCard v-if="data.ksName" @openCard="handleOpenCard" :name="data.ksName" :zyLevelName="data.zyLevelName" :userScore="data.userScore" :Score="data.ksScore"></topCard>
 		
@@ -58,7 +55,7 @@
 			<!-- 上下按钮 -->
 			<view  class="score-bottom-box" v-if="activeSt">
 				<view  @click="handleOpenCard" class="score-num-box">
-					<icon class="score-num-icon"></icon>
+					<icon class="score-num-icon" :style="{ backgroundImage: 'url(' + data.imgsArr.shitiNumIcon + ')' }"></icon>
 					<text class="active-num">{{activeSt && activeSt.onlyNum||0}}</text>/<text>{{data.StListForSearch.length}}</text>
 				</view>
 				<view>
@@ -70,10 +67,8 @@
 			<!-- 答题卡 -->
 			<uni-popup ref="popupRef" background-color="#fff" :animation="false" :is-mask-click="false" :mask-click="false">
 				<view class="answer-card-popup">
-					<view class="icon-title-bjcolor-navBar-box">
-						<view @click="handlePopupBack" class="nav-bar-icon"> </view>
-						<text class="nav-bar-title">答题卡</text>
-					</view>
+					<customNavbarVue title="答题卡" :show-back-btn="true" @back="handlePopupBack"></customNavbarVue>
+				
 					<view class="card-content-box">
 						<view class="answer-card-content" v-for="(paragraph,paragraphIndex) in questionData" :key="paragraphIndex">
 							<view class="paragraph-title">
@@ -99,7 +94,9 @@
 	import {useQuestionTools} from "@/components/questions/useQuestionTools.js";
 	
 	import { onLoad } from "@dcloudio/uni-app";
-	import {ref,reactive,computed} from "vue"
+	import cacheManager from '@/utils/cacheManager.js';
+	import {ref,reactive,computed,watch,nextTick} from "vue";
+	import customNavbarVue from "@/components/custom-navbar/custom-navbar.vue";
 	import * as ksApi from "@/api/kaoshi.js"
 	const {
 		checkDanxuanReply,
@@ -122,7 +119,10 @@
 		ksScore: 0,
 		StListForSearch: [],
 		duanluo: [],
-		from: ''
+		from: '',
+		imgsArr: {
+			shitiNumIcon: '',
+		},
 	})
 	
 	const questionData = ref([]);
@@ -235,6 +235,7 @@
 	onLoad((options) => {
 		hisId.value = options.hisId;
 		data.from = options.from;
+		data.imgsArr.shitiNumIcon = cacheManager.get('projectImg').shiti_num_icon;
 		initPage()
 	})
 	

+ 30 - 16
pages/client/Chengji/list.vue

@@ -1,13 +1,11 @@
 <template>
 	<view class="phone-list-page">
-		<view class="icon-title-bjcolor-navBar-box">
-			<view @click="goUpPage" class="nav-bar-icon"></view>
-			<text class="nav-bar-title">成绩</text>
-		</view>
+		<customNavbarVue title="成绩" :show-back-btn="true" @back="goUpPage"></customNavbarVue>
+		
 		<!-- 课程列表 -->
 		<scroll-view scroll-y="true" refresher-enabled="true" :refresher-triggered="data.loading"
 			:refresher-threshold="50" refresher-background="transparent" @refresherrefresh="onRefresh" @scrolltolower="onScrolltolower"
-			class="phone-scroll-view">
+			:style="{ height: `calc(100vh - ${statusBarHeight}px - 212rpx);`}" class="phone-scroll-overflow">
 			<uni-list class="admin-list-box">
 				<uni-list-item v-for="item in data.list" class="admin-list-item-box" :key="item.hisId">
 					<template v-slot:body>
@@ -19,18 +17,18 @@
 							</view>
 							<!-- 时间 -->
 							<view class="ks-totalTm">
-								<icon class="phone-time-icon" />{{item.answerStartTime}} - {{item.answerEndTime}}
+								<icon class="phone-time-icon" :style="{ backgroundImage: 'url(' + data.imgsArr.phoneTimeIcon + ')' }"/>{{item.answerStartTime}} - {{item.answerEndTime}}
 							</view>
 							<!-- 分数 -->
 							<view class="ks-score-content">
 								<view class="ks-score">
-									<icon class="phone-zongfen-icon" />总分:<text>{{item.ksScore}}</text>
+									<icon class="phone-zongfen-icon" :style="{ backgroundImage: 'url(' + data.imgsArr.phoneZongfenIcon + ')' }"/>总分:<text>{{item.ksScore}}</text>
 								</view>
 								<view class="ks-okScore cj-okScore">
-									<icon class="phone-jigefen-icon" />及格分:<text>{{item.okScore}}</text>
+									<icon class="phone-jigefen-icon" :style="{ backgroundImage: 'url(' + data.imgsArr.phoneJigefenIcon + ')' }"/>及格分:<text>{{item.okScore}}</text>
 								</view>
 								<view class="ks-getScore">
-									<icon class="phone-defen-icon" />得分:<text>{{item.userScore}}</text>
+									<icon class="phone-defen-icon" :style="{ backgroundImage: 'url(' + data.imgsArr.phoneDefenIcon + ')' }"/>得分:<text>{{item.userScore}}</text>
 								</view>
 							</view>
 							<button @click="checkKecheng(item)" type="primary" size="mini"
@@ -48,11 +46,10 @@
 </template>
 
 <script setup>
+	import cacheManager from '@/utils/cacheManager.js';
+	import customNavbarVue from "@/components/custom-navbar/custom-navbar.vue";
 	import customTabbarClientVue from "@/components/custom-tabbar/custom-tabbar-client.vue";
-	import {
-		ref,
-		reactive
-	} from "vue";
+	import {ref,reactive,onMounted} from "vue";
 	import {
 		onLoad
 	} from "@dcloudio/uni-app";
@@ -61,7 +58,7 @@
 		formatDuration
 	} from "@/utils/common.js"
 
-
+	const statusBarHeight = ref(0);
 	const data = reactive({
 		list: [], // 考试列表
 		loading: false,
@@ -73,7 +70,13 @@
 			contentrefresh: '加载中',
 			contentnomore: '没有更多'
 		},
-		from: ''
+		from: '',
+		imgsArr: {
+					phoneZongfenIcon: '',
+					phoneJigefenIcon: '',
+					phoneDefenIcon: '',
+					phoneTimeIcon: '',
+				},
 	})
 
 	function goUpPage() {
@@ -181,9 +184,20 @@
 			data.loading = false;
 		})
 	}
-
+	onMounted(() => {
+			uni.getSystemInfo({
+			success: (res) => {
+			statusBarHeight.value = res.statusBarHeight;
+			}
+			});
+		});
+	
 	onLoad((options) => {
 		data.from = options.from;
+		data.imgsArr.phoneZongfenIcon = cacheManager.get('projectImg').zongfen_icon;
+		data.imgsArr.phoneJigefenIcon = cacheManager.get('projectImg').jigefen_icon;
+		data.imgsArr.phoneDefenIcon = cacheManager.get('projectImg').defen_icon;
+		data.imgsArr.phoneTimeIcon = cacheManager.get('projectImg').time_icon;
 		getMore()
 	})
 </script>

+ 11 - 6
pages/client/Kaoshi/list.vue

@@ -5,7 +5,7 @@
 		<!-- 考试列表 -->
 		<scroll-view scroll-y="true" refresher-enabled="true" :refresher-triggered="data.loading"
 			:refresher-threshold="50" refresher-background="transparent" @refresherrefresh="onRefresh" @scrolltolower="onScrolltolower"
-			class="phone-scroll-view">
+			:style="{ height: `calc(100vh - ${statusBarHeight}px - 212rpx);`}" class="phone-scroll-overflow">
 			<uni-list class="admin-list-box">
 				<uni-list-item v-for="item in data.list" class="admin-list-item-box" :key="item.ksId">
 					<template v-slot:body style="width: 100%;">
@@ -60,16 +60,14 @@
 	import identificationVue from "@/components/identification/identification.vue";
 	import {useIdentificationTools} from "@/utils/examTools.js"
 
-	import {
-		ref,
-		reactive
-	} from "vue";
+	import {ref,reactive,onMounted} from "vue";
 	import {
 		onLoad,
 		onShow
 	} from "@dcloudio/uni-app";
 	import * as kaoshiApi from "@/api/kaoshi.js";
 
+	const statusBarHeight = ref(0);
 	const {
 		saveIdentCache,
 		getIdentCache,
@@ -247,7 +245,14 @@
 			data.loading = false;
 		})
 	}
-
+	onMounted(() => {
+			uni.getSystemInfo({
+			success: (res) => {
+			statusBarHeight.value = res.statusBarHeight;
+			}
+			});
+		});
+	
 	onLoad((options) => {
 		data.from = options.from;
 		data.imgsArr.phoneZongfenIcon = cacheManager.get('projectImg').zongfen_icon;

BIN
static/images/common/bz-icon.png


+ 0 - 1
static/images/common/change-icon.svg

@@ -1 +0,0 @@
-<svg t="1741769456213" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3670" data-spm-anchor-id="a313x.search_index.0.i4.28003a81D1IQqc" width="60" height="60"><path d="M514.56 962.56C267.776 962.56 66.56 761.344 66.56 514.56S267.776 66.56 514.56 66.56 962.56 267.776 962.56 514.56 761.344 962.56 514.56 962.56z m0-834.56C301.568 128 128 301.568 128 514.56S301.568 901.12 514.56 901.12s386.56-173.568 386.56-386.56S727.552 128 514.56 128z" p-id="3671" fill="#30c190"></path><path d="M737.28 482.816H291.84c-15.36 0-28.16-12.8-28.16-28.16s12.8-28.16 28.16-28.16h445.44c15.36 0 28.16 12.8 28.16 28.16s-12.8 28.16-28.16 28.16z" p-id="3672" fill="#30c190"></path><path d="M615.936 293.376l141.312 141.312c10.752 10.752 10.752 28.672 0 39.936-10.752 10.752-28.672 10.752-39.936 0l-141.312-141.312c-10.752-10.752-10.752-28.672 0-39.936 11.264-10.752 29.184-10.752 39.936 0zM311.808 555.008L453.12 696.32c10.752 10.752 10.752 28.672 0 39.936-10.752 10.752-28.672 10.752-39.936 0l-141.312-141.312c-10.752-10.752-10.752-28.672 0-39.936s28.672-11.264 39.936 0z" p-id="3673" fill="#30c190"></path><path d="M737.28 603.136H291.84c-15.36 0-28.16-12.8-28.16-28.16s12.8-28.16 28.16-28.16h445.44c15.36 0 28.16 12.8 28.16 28.16s-12.8 28.16-28.16 28.16z" p-id="3674" fill="#30c190"></path></svg>

+ 0 - 1
static/images/common/clear-bz-icon.svg

@@ -1 +0,0 @@
-<svg t="1741935093375" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2644" data-spm-anchor-id="a313x.search_index.0.i1.185f3a81JbrO4J" width="60" height="60"><path d="M861.184 192.512q30.72 0 50.688 10.24t31.744 25.6 16.384 33.28 4.608 33.28q0 7.168-0.512 11.264t-0.512 7.168l0 6.144-67.584 0 0 537.6q0 20.48-8.192 39.424t-23.552 33.28-37.376 23.04-50.688 8.704l-456.704 0q-26.624 0-50.176-8.192t-40.448-23.04-26.624-35.84-9.728-47.616l0-527.36-63.488 0q-1.024-1.024-1.024-5.12-1.024-5.12-1.024-31.744 0-13.312 6.144-29.696t18.432-30.208 31.744-23.04 46.08-9.216l91.136 0 0-62.464q0-26.624 18.432-45.568t45.056-18.944l320.512 0q35.84 0 49.664 18.944t13.824 45.568l0 63.488q21.504 1.024 46.08 1.024l47.104 0zM384 192.512l320.512 0 0-64.512-320.512 0 0 64.512zM352.256 840.704q32.768 0 32.768-41.984l0-475.136-63.488 0 0 475.136q0 21.504 6.656 31.744t24.064 10.24zM545.792 839.68q17.408 0 23.552-9.728t6.144-31.232l0-475.136-63.488 0 0 475.136q0 40.96 33.792 40.96zM738.304 837.632q18.432 0 24.576-9.728t6.144-31.232l0-473.088-64.512 0 0 473.088q0 40.96 33.792 40.96z" p-id="2645" fill="#30c190"></path></svg>

+ 0 - 1
static/images/common/clear-icon.svg

@@ -1 +0,0 @@
-<svg t="1741596881468" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2901" data-spm-anchor-id="a313x.search_index.0.i3.5a013a81FW4SdR" width="60" height="60"><path d="M687.6 96.4H336.4v91.2h351.1V96.4zM636.7 398v405.5h-73.9V398h73.9z m-175.5 0v405.5h-73.9V398h73.9z m332.1-119.2H230.7l27.9 648.8h506.7l28-648.8zM696.8 5.1c40.4 0 73.3 35.6 73.9 79.8v102.7h147.8c20.2 0 36.6 17.8 37 39.9v41.2c0 5.5-4 10-9 10.1h-70.1L848 941.6c-1.8 42.9-33.7 76.6-72.6 77.3H249.8c-39 0-71.3-33.4-73.7-76l-0.1-1.3-28.5-662.7H77.7c-5 0-9.1-4.4-9.2-9.8v-40.9c0-22.2 16.2-40.2 36.3-40.5h148.4V86.2c0-44.3 32.5-80.4 72.7-81.1h370.9z" fill="#666666" p-id="2902"></path></svg>

+ 0 - 1
static/images/common/down-hb-icon.svg

@@ -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="1742199928753" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2649" data-spm-anchor-id="a313x.search_index.0.i1.45e53a81Mdw4V9" xmlns:xlink="http://www.w3.org/1999/xlink" width="60" height="60"><path d="M544.256 605.184l244.224-244.224a31.744 31.744 0 0 1 45.056 45.056l-295.424 295.424a36.864 36.864 0 0 1-51.2 0L190.464 406.528a31.744 31.744 0 1 1 45.056-45.056l244.224 244.224V111.104a32.256 32.256 0 1 1 64 0zM153.6 902.656a32.256 32.256 0 0 1 0-64h716.8a32.256 32.256 0 0 1 0 64z" fill="#30c190" p-id="2650"></path></svg>

+ 0 - 1
static/images/common/down-icon.svg

@@ -1 +0,0 @@
-<svg t="1741253451767" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3086" data-spm-anchor-id="a313x.search_index.0.i8.45e53a81nFQEhH" width="60" height="60"><path d="M810.03 957.39H213.96c-75.44 0-136.81-61.37-136.81-136.81V347.49c0-75.44 61.37-136.81 136.81-136.81h68.24c17.45 0 31.58 14.14 31.58 31.58 0 17.45-14.14 31.58-31.58 31.58h-68.24c-40.61 0-73.64 33.03-73.64 73.64v473.09c0 40.61 33.03 73.64 73.64 73.64h596.07c40.6 0 73.63-33.03 73.63-73.64V347.49c0-40.61-33.03-73.64-73.63-73.64h-86.4c-17.45 0-31.58-14.14-31.58-31.58 0-17.45 14.14-31.58 31.58-31.58h86.4c75.43 0 136.8 61.37 136.8 136.81v473.09c0 75.43-61.37 136.8-136.8 136.8z" fill="#3fd2a1" p-id="3087"></path><path d="M511.99 673.84c-17.44 0-31.58-14.14-31.58-31.58V98.97c0-17.44 14.14-31.58 31.58-31.58 17.44 0 31.58 14.14 31.58 31.58v543.29c0.01 17.44-14.13 31.58-31.58 31.58z" fill="#3fd2a1" p-id="3088"></path><path d="M532.36 665.41c-11.25 11.25-29.49 11.25-40.73 0L278.11 451.89c-11.25-11.25-11.25-29.49 0-40.73 11.25-11.25 29.49-11.25 40.73 0l213.52 213.52c11.25 11.24 11.25 29.48 0 40.73z" fill="#3fd2a1" p-id="3089"></path><path d="M491.63 665.41c11.25 11.25 29.49 11.25 40.73 0l213.52-213.52c11.25-11.25 11.25-29.49 0-40.73-11.25-11.25-29.49-11.25-40.73 0L491.63 624.67c-11.25 11.25-11.25 29.49 0 40.74z" fill="#3fd2a1" p-id="3090"></path></svg>

+ 0 - 1
static/images/common/duihao-icon.svg

@@ -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="1739945987581" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4185" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48"><path d="M380.342857 801.645714a53.394286 53.394286 0 0 1-36.571428-16.091428l-218.331429-217.234286a55.588571 55.588571 0 0 1 0-77.165714 54.125714 54.125714 0 0 1 76.8 0l178.102857 179.2L835.291429 272.091429a53.394286 53.394286 0 0 1 76.434285 0 54.125714 54.125714 0 0 1 0 76.8L418.742857 785.554286a54.491429 54.491429 0 0 1-38.4 16.091428z" p-id="4186" fill="#3fd2a1"></path></svg>

Разлика између датотеке није приказан због своје велике величине
+ 0 - 0
static/images/common/fenlei-icon.svg


+ 0 - 1
static/images/common/img-close-icon.svg

@@ -1 +0,0 @@
-<svg t="1741831356585" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2841" data-spm-anchor-id="a313x.search_index.0.i4.10e63a81yrRc3J" width="60" height="60"><path d="M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64z m265.9 713.9a377.2 377.2 0 0 1-119.6 80.6 377.5 377.5 0 0 1-292.6 0 377.1 377.1 0 0 1-200.2-200.2 377.5 377.5 0 0 1 0-292.6 377.1 377.1 0 0 1 200.2-200.2 377.5 377.5 0 0 1 292.6 0 377.1 377.1 0 0 1 200.2 200.2 377.5 377.5 0 0 1 0 292.6 377.2 377.2 0 0 1-80.6 119.6z m-79.6-407.1l-45.1-45.1a4 4 0 0 0-5.7 0L512 461.2 376.5 325.7a4 4 0 0 0-5.7 0l-45.1 45.1a4 4 0 0 0 0 5.7L461.2 512 325.7 647.5a4 4 0 0 0 0 5.7l45.1 45.1a4 4 0 0 0 5.7 0L512 562.8l135.5 135.5a4 4 0 0 0 5.7 0l45.1-45.1a4 4 0 0 0 0-5.7L562.8 512l135.5-135.5a4 4 0 0 0 0-5.7z" p-id="2842" fill="#30c190"></path></svg>

BIN
static/images/common/jz-editor-icon.png


BIN
static/images/common/jz-tel-icon.png


+ 0 - 1
static/images/common/nav-bar-green-jt.svg

@@ -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="1739178328843" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5033" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48"><path d="M375.467 512l370.915-329.955c18.205-15.93 20.48-45.512 4.551-63.716-15.928-18.204-45.511-20.48-63.715-4.55l-409.6 364.088c-11.378 9.102-15.93 20.48-15.93 34.133s4.552 25.031 15.93 34.133l409.6 364.089c9.102 6.827 20.48 11.378 29.582 11.378 13.653 0 25.031-4.551 34.133-15.929 15.929-18.204 15.929-47.786-4.551-63.716L375.467 512z" p-id="5034" fill="#3fd2a1"></path></svg>

+ 0 - 1
static/images/common/nav-white-bar-jt.svg

@@ -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="1739178328843" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5033" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48"><path d="M375.467 512l370.915-329.955c18.205-15.93 20.48-45.512 4.551-63.716-15.928-18.204-45.511-20.48-63.715-4.55l-409.6 364.088c-11.378 9.102-15.93 20.48-15.93 34.133s4.552 25.031 15.93 34.133l409.6 364.089c9.102 6.827 20.48 11.378 29.582 11.378 13.653 0 25.031-4.551 34.133-15.929 15.929-18.204 15.929-47.786-4.551-63.716L375.467 512z" p-id="5034" fill="#ffffff"></path></svg>

+ 0 - 1
static/images/common/sanjiao-shang-icon.svg

@@ -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="1739949756756" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="11792" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48"><path d="M174.673782 398.525792l4.007114-5.099965 291.426539-373.025969A52.092494 52.092494 0 0 1 511.271434 0a52.82106 52.82106 0 0 1 41.163998 20.399858L848.961935 400.711491a39.706866 39.706866 0 0 1 5.828531 20.76414 36.428317 36.428317 0 0 1-36.428317 36.428318H204.909285a36.428317 36.428317 0 0 1-36.428317-36.428318 39.342583 39.342583 0 0 1 6.192814-21.128424z" fill="#3fd2a1" p-id="11793" data-spm-anchor-id="a313x.search_index.0.i25.2a503a81P08cc4" class=""></path><path d="M174.673782 625.474208a39.342583 39.342583 0 0 1-6.192814-21.128424 36.428317 36.428317 0 0 1 36.428317-36.428317h614.18143a36.428317 36.428317 0 0 1 36.428317 36.428317 39.706866 39.706866 0 0 1-5.82853 20.764141l-297.25507 378.490217a52.82106 52.82106 0 0 1-41.163998 20.399858 52.092494 52.092494 0 0 1-41.163999-20.399858l-291.426539-373.025969-4.007114-5.099965z" fill="#dbdbdb" p-id="11794" data-spm-anchor-id="a313x.search_index.0.i22.2a503a81P08cc4" class="selected"></path></svg>

+ 0 - 1
static/images/common/sanjiao-shixin-icon.svg

@@ -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="1739949996459" class="icon" viewBox="0 0 1706 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="13319" xmlns:xlink="http://www.w3.org/1999/xlink" width="79.96875" height="48"><path d="M853.333333 1024l853.333334-1024H0z" fill="#333333" p-id="13320" data-spm-anchor-id="a313x.search_index.0.i32.2a503a81P08cc4" class="selected"></path></svg>

+ 0 - 1
static/images/common/sanjiao-xia-icon.svg

@@ -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="1739949756756" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="11792" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48"><path d="M174.673782 398.525792l4.007114-5.099965 291.426539-373.025969A52.092494 52.092494 0 0 1 511.271434 0a52.82106 52.82106 0 0 1 41.163998 20.399858L848.961935 400.711491a39.706866 39.706866 0 0 1 5.828531 20.76414 36.428317 36.428317 0 0 1-36.428317 36.428318H204.909285a36.428317 36.428317 0 0 1-36.428317-36.428318 39.342583 39.342583 0 0 1 6.192814-21.128424z" fill="#dbdbdb" p-id="11793" data-spm-anchor-id="a313x.search_index.0.i25.2a503a81P08cc4" class="selected"></path><path d="M174.673782 625.474208a39.342583 39.342583 0 0 1-6.192814-21.128424 36.428317 36.428317 0 0 1 36.428317-36.428317h614.18143a36.428317 36.428317 0 0 1 36.428317 36.428317 39.706866 39.706866 0 0 1-5.82853 20.764141l-297.25507 378.490217a52.82106 52.82106 0 0 1-41.163998 20.399858 52.092494 52.092494 0 0 1-41.163999-20.399858l-291.426539-373.025969-4.007114-5.099965z" fill="#3fd2a1" p-id="11794" data-spm-anchor-id="a313x.search_index.0.i22.2a503a81P08cc4" class=""></path></svg>

BIN
static/images/common/zy-icon.png


BIN
static/images/common/zymc-icon.png


Неке датотеке нису приказане због велике количине промена