Browse Source

修改采购收货显示

hella_vue3
lijuncheng 5 months ago
parent
commit
725adb6a5c
  1. 8
      src/App.vue
  2. 9
      src/api/request2.js
  3. 79
      src/common/appUpdate.js
  4. 3
      src/common/style/new_style.css
  5. 2
      src/pages/purchaseReceipt/coms/comReceiptDetailCard.vue
  6. 2
      src/pages/setter/index.vue
  7. BIN
      src/static/icons_ui/default_notpassed.png
  8. 12
      src/static/icons_ui/icon_asn.svg
  9. 13
      src/static/icons_ui/icon_buy_num.svg
  10. 10
      src/static/icons_ui/icon_kw_use.svg
  11. 5
      src/static/icons_ui/icon_notpass.svg
  12. 4
      src/static/icons_ui/icon_num.svg
  13. 5
      src/static/icons_ui/icon_passed.svg
  14. 12
      src/static/icons_ui/icon_prod_line.svg
  15. 5
      src/static/icons_ui/icon_qiju_end.svg
  16. 4
      src/static/icons_ui/icon_qiju_num.svg
  17. 5
      src/static/icons_ui/icon_qiju_start.svg
  18. 12
      src/static/icons_ui/icon_return_num.svg
  19. 4
      src/static/icons_ui/icon_senditem.svg
  20. 11
      src/static/icons_ui/icon_supplier.svg
  21. 8
      src/static/icons_ui/icons_common_recceipt.svg
  22. 9
      src/static/icons_ui/icons_common_sjadd.svg
  23. BIN
      src/static/images/profile.jpg

8
src/App.vue

@ -18,10 +18,16 @@
// plus.screen.lockOrientation('landscape-primary'); // plus.screen.lockOrientation('landscape-primary');
// // app // // app
// plus.screen.lockOrientation('portrait-primary'); // plus.screen.lockOrientation('portrait-primary');
appUpdate(); appUpdate(false);
// #endif // #endif
}, },
data() {
return {
//
modalShowing: true
};
},
onShow: function() { onShow: function() {
console.log('App Show') console.log('App Show')
}, },

9
src/api/request2.js

@ -419,9 +419,6 @@ export function getMesPackInfo(code) {
/** /**
* 查询库位信息接口 * 查询库位信息接口
* @param {*} code 库位代码 * @param {*} code 库位代码
@ -3852,9 +3849,9 @@ export function getMainMessage() {
* *
*/ */
export function appCheckUpdate() { export function appCheckUpdate() {
return uni.request({ return request({
url: "http://192.168.0.119:9527/appUpdate.json", url: baseApi+"/wms/system-install-package/returnNewFile",
method: "GET", method: "get",
data: {} data: {}
}) })
} }

79
src/common/appUpdate.js

@ -1,7 +1,7 @@
import { import {
appCheckUpdate appCheckUpdate
} from '../api/request2.js'; } from '../api/request2.js';
export function appUpdate() { export function appUpdate(isShowHint) {
let curversion = 0; let curversion = 0;
plus.runtime.getProperty(plus.runtime.appid, function(widgetInfo) { plus.runtime.getProperty(plus.runtime.appid, function(widgetInfo) {
const data = { const data = {
@ -11,44 +11,77 @@ export function appUpdate() {
wgtVersion: widgetInfo.version, wgtVersion: widgetInfo.version,
versionCode: widgetInfo.versionCode versionCode: widgetInfo.versionCode
} }
curversion=data.versionCode curversion = data.versionCode
appCheckUpdate().then(res => { appCheckUpdate().then(res => {
console.log("当前版本提示",curversion) console.log("当前版本提示", curversion)
var json = JSON.stringify(res)
console.log("获取更新数据", json)
if (res.data) { if (res.data) {
if (res.data.versionCode > Number(curversion)) { if (res.data.installPackageVersion > Number(curversion)) {
var downUrl = res.data.downUrl; var downUrl = res.data.downUrl;
var content = res.data.content; var content = res.data.updateContent;
var version =res.data.version var version = res.data.installPackageVersion;
var isForcedUpdate = res.data.isForcedUpdate
var versionName =res.data.installPackageName
console.log("新版本提示") console.log("新版本提示")
uni.showModal({ showDialog(versionName, content, isForcedUpdate, downUrl)
title: "发现新版本:("+version+")",
content: content, // uni.showModal({
confirmText: "更新", // title: "发现新版本:(" + version + ")",
cancelText: "取消", // content: content,
success: (res) => { // confirmText: "更新",
if (res.confirm) { // showCancel: isForcedUpdate == "TRUE" ? false : true,
confirm(downUrl); // cancelText: "取消",
console.log('comfirm') //点击确定之后执行的代码 // success: (res) => {
} else { // if (res.confirm) {
console.log('cancel') //点击取消之后执行的代码 // confirm(downUrl);
} // console.log('comfirm') //点击确定之后执行的代码
} // } else {
}) // console.log('cancel') //点击取消之后执行的代码
// if (isForcedUpdate == "TRUE") {
// }
// }
// }
// })
} else { } else {
if(isShowHint){
uni.showToast({ uni.showToast({
title:"当前是最新版本" title: "当前是最新版本"
}) })
}
console.log("没有新版本") console.log("没有新版本")
} }
} }
}).catch(error => { }).catch(error => {
console.log("版本错误", error) console.log("版本错误", error)
}) })
}) })
}
export function showDialog(versionName, content, isForcedUpdate, downUrl) {
uni.showModal({
title: "发现新版本:(" + versionName + ")",
content: content,
confirmText: "更新",
showCancel: isForcedUpdate == "TRUE" ? false : true,
cancelText: "取消",
success: (res) => {
if (res.confirm) {
confirm(downUrl);
console.log(
'comfirm') //点击确定之后执行的代码
} else {
console.log(
'cancel') //点击取消之后执行的代码
if (isForcedUpdate == "TRUE") {
showDialog(version, content, isForcedUpdate, downUrl)
}
}
}
})
} }
export function confirm(downUrl) { export function confirm(downUrl) {

3
src/common/style/new_style.css

@ -2031,7 +2031,8 @@ button::after {
} }
.card_itemCode { .card_itemCode {
font-size: 36rpx; font-size: 38rpx;
font-weight: bold;
/* font-weight: 500; */ /* font-weight: 500; */
padding: 5rpx 10rpx; padding: 5rpx 10rpx;
} }

2
src/pages/purchaseReceipt/coms/comReceiptDetailCard.vue

@ -1,6 +1,6 @@
<template> <template>
<view class="" style="background-color: #fff;"> <view class="" style="background-color: #fff;">
<uni-collapse ref="collapse" style="height: 500px;"> <uni-collapse ref="collapse">
<uni-collapse-item :open="true"> <uni-collapse-item :open="true">
<template v-slot:title> <template v-slot:title>
<itemCompareQty :dataContent="dataContent" :handleQty="dataContent.handleQty" <itemCompareQty :dataContent="dataContent" :handleQty="dataContent.handleQty"

2
src/pages/setter/index.vue

@ -132,7 +132,7 @@
function update() { function update() {
console.log("update"); console.log("update");
appUpdate() appUpdate(true)
} }
function modifiedPassWord() { function modifiedPassWord() {
uni.navigateTo({ uni.navigateTo({

BIN
src/static/icons_ui/default_notpassed.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

12
src/static/icons_ui/icon_asn.svg

@ -1,12 +0,0 @@
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_330_3563)">
<rect width="200" height="200" fill="white"/>
<circle cx="100" cy="100" r="70.4839" stroke="#777E94" stroke-width="11.0323"/>
<path d="M66.0717 88.0195L72.8763 62.8685L81.0589 64.2467L76.58 80.1813H89.3277C90.8781 74.0946 92.1988 67.3762 93.2899 60.0261L101.645 61.0597C100.669 67.5484 99.4053 73.9223 97.8549 80.1813H137.304V88.0195H95.7877C95.6155 88.6511 94.7254 91.35 93.1176 96.116H127.571V103.007C125.331 110.127 121.054 116.501 114.737 122.128C121.226 125.746 129.121 129.105 138.424 132.206L134.203 139.958C123.925 136.225 115.168 132.062 107.933 127.469C101.157 132.177 92.8018 136.484 82.8677 140.389L78.5611 132.637C87.117 129.536 94.4957 126.119 100.697 122.387C95.07 117.908 90.8781 113.113 88.1219 108.002C81.9203 120.693 74.1108 130.856 64.6936 138.494L60.4731 130.914C72.3595 120.406 81.2312 106.107 87.0883 88.0195H66.0717ZM94.0651 103.523C96.9362 108.634 101.415 113.343 107.502 117.649C112.957 113.228 116.89 108.519 119.302 103.523H94.0651ZM116.115 60.1123C121.972 64.5338 126.968 69.0701 131.102 73.7213L125.245 79.5784C121.743 75.042 116.862 70.3621 110.603 65.5387L116.115 60.1123Z" fill="#035DFF"/>
</g>
<defs>
<clipPath id="clip0_330_3563">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

13
src/static/icons_ui/icon_buy_num.svg

@ -1,13 +0,0 @@
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1414_18571)">
<rect width="200" height="200" fill="white"/>
<path d="M34 52.1899C34 50.983 34.2803 49.788 34.8248 48.6731C35.3694 47.5581 36.1675 46.545 37.1737 45.6917C38.1799 44.8383 39.3745 44.1614 40.6891 43.6995C42.0038 43.2377 43.4128 43 44.8358 43H72.4179V54.6962H47.791V163.304H152.209V54.6962H127.582V43H155.164C156.587 43 157.996 43.2377 159.311 43.6995C160.626 44.1614 161.82 44.8383 162.826 45.6917C163.832 46.545 164.631 47.5581 165.175 48.6731C165.72 49.788 166 50.983 166 52.1899V165.81C166 167.017 165.72 168.212 165.175 169.327C164.631 170.442 163.832 171.455 162.826 172.308C161.82 173.162 160.626 173.839 159.311 174.3C157.996 174.762 156.587 175 155.164 175H44.8358C43.4128 175 42.0038 174.762 40.6891 174.3C39.3745 173.839 38.1799 173.162 37.1737 172.308C36.1675 171.455 35.3694 170.442 34.8248 169.327C34.2803 168.212 34 167.017 34 165.81V52.1899Z" fill="#777E94"/>
<path d="M99.5 37.8276C98.8528 37.8276 98.2119 37.9368 97.6139 38.1491C97.016 38.3614 96.4726 38.6726 96.015 39.0648C95.5573 39.4571 95.1943 39.9227 94.9466 40.4352C94.6989 40.9477 94.5714 41.497 94.5714 42.0517V48.6414C94.5714 50.2546 93.8237 51.8018 92.4927 52.9425C91.1618 54.0833 89.3566 54.7241 87.4743 54.7241H78.8V63.1724H120.2V54.7241H111.526C109.643 54.7241 107.838 54.0833 106.507 52.9425C105.176 51.8018 104.429 50.2546 104.429 48.6414V42.0517C104.429 41.497 104.301 40.9477 104.053 40.4352C103.806 39.9227 103.443 39.4571 102.985 39.0648C102.527 38.6726 101.984 38.3614 101.386 38.1491C100.788 37.9368 100.147 37.8276 99.5 37.8276V37.8276ZM80.7714 42.0517C80.7714 37.7945 82.7446 33.7117 86.2569 30.7014C89.7692 27.6912 94.5329 26 99.5 26C104.467 26 109.231 27.6912 112.743 30.7014C116.255 33.7117 118.229 37.7945 118.229 42.0517V42.8966H134V65.7069C134 66.9273 133.72 68.1357 133.175 69.2632C132.63 70.3907 131.831 71.4152 130.824 72.2781C129.817 73.1411 128.622 73.8256 127.307 74.2926C125.991 74.7596 124.581 75 123.157 75H75.8429C74.419 75 73.009 74.7596 71.6935 74.2926C70.378 73.8256 69.1827 73.1411 68.1758 72.2781C67.1689 71.4152 66.3703 70.3907 65.8254 69.2632C65.2805 68.1357 65 66.9273 65 65.7069V42.8966H80.7714V42.0517V42.0517Z" fill="#777E94"/>
<path d="M128.184 97.056C124.941 103.541 121.091 109.165 116.632 113.928L110.856 109.824C115.061 105.213 118.659 99.8933 121.648 93.864L128.184 97.056ZM99.304 95.232C101.635 99.2853 103.687 103.744 105.46 108.608L98.468 110.356C96.948 105.897 94.9973 101.591 92.616 97.436L99.304 95.232ZM78.632 97.056C81.368 101.16 83.7747 105.593 85.852 110.356L79.24 113.32C77.0107 108.051 74.5027 103.389 71.716 99.336L78.632 97.056ZM128.716 89.912C114.023 92.9013 94.6173 94.396 70.5 94.396L68.296 87.708C90.8427 87.708 109.817 86.416 125.22 83.832L128.716 89.912ZM68.372 118.488H95.428V111.952H102.572V118.488H129.704V125.48H108.728C113.947 132.523 122.281 138.755 133.732 144.176L128.564 150.636C116.404 143.087 107.816 134.701 102.8 125.48H102.572V153.448H95.428V125.48C89.9053 135.816 80.9627 144.328 68.6 151.016L64.496 144.252C75.744 139.185 84.0027 132.928 89.272 125.48H68.372V118.488Z" fill="#1677FF"/>
</g>
<defs>
<clipPath id="clip0_1414_18571">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

10
src/static/icons_ui/icon_kw_use.svg

@ -1,10 +0,0 @@
<svg width="45" height="40" viewBox="0 0 45 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="mask0_1463_18681" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="45" height="40">
<path d="M0 0H37C41.4183 0 45 3.58172 45 8V40H0V0Z" fill="#D9D9D9"/>
</mask>
<g mask="url(#mask0_1463_18681)">
<path d="M7.01442 -20L59 26.4118L46.9856 40L-5 -6.41177L7.01442 -20Z" fill="#5A7CF3"/>
<path d="M25.4235 8.37163L27.1952 9.95339L28.4602 8.52263L29.245 9.22322L27.9799 10.654L29.8487 12.3224L29.1874 13.0703L27.3186 11.4019L25.5505 13.4017L27.7752 15.3879L27.1068 16.144L22.0262 11.6081L22.6947 10.8521L24.7657 12.7011L26.5339 10.7013L24.7622 9.11952L25.4235 8.37163ZM23.4435 7.81129C23.0259 7.83607 22.5663 7.8428 22.0649 7.83148L22.1401 6.76403C23.7584 6.82205 25.2885 6.59773 26.7305 6.09107L24.7889 4.35763L25.4574 3.6016L27.7631 5.66006C28.1914 5.47031 28.6545 5.21945 29.1523 4.90747L29.8661 5.70472C29.4174 5.98297 28.9995 6.22088 28.6125 6.41844L32.5766 9.95754L31.9082 10.7136L27.6043 6.87111C26.7206 7.22653 25.8411 7.47899 24.9658 7.62851L21.4366 11.62L20.6762 10.9411L23.4435 7.81129Z" fill="white"/>
<path d="M34.0604 17.4644C33.269 17.8246 32.5165 18.0644 31.803 18.1838L31.588 17.2645C32.2674 17.1728 32.9782 16.9638 33.7205 16.6373L34.0604 17.4644ZM36.7875 19.2591C36.711 20.2188 36.5968 21.0138 36.4447 21.6442L35.4723 21.5324C35.6567 20.8436 35.7982 20.0341 35.8968 19.104L36.7875 19.2591ZM39.3233 14.148C39.1462 15.2215 39.3655 16.5179 39.9812 18.0374L39.0304 18.2941C38.8877 17.9533 38.7621 17.5988 38.6536 17.2303L38.2223 17.7181L37.1787 16.7864L36.5462 17.5018L38.4312 19.1846L37.8202 19.8756L35.9352 18.1928L34.5768 19.7292C34.1263 20.2386 33.6584 20.2767 33.173 19.8433L32.4692 19.2149L32.939 18.3398C33.1206 18.5601 33.3111 18.7593 33.5107 18.9374C33.6779 19.0867 33.843 19.0692 34.0059 18.885L35.1991 17.5355L33.306 15.8454L33.9169 15.1544L35.81 16.8445L36.4425 16.1291L35.3099 15.1179L35.6837 14.6952C35.3278 14.6393 34.9785 14.565 34.6357 14.4724L34.7703 13.5016C36.1724 13.8805 37.4851 13.913 38.7085 13.5991L39.3233 14.148ZM38.5439 16.7978C38.3687 15.9917 38.32 15.25 38.3978 14.5727C37.6818 14.7384 36.9674 14.7988 36.2544 14.7538L38.5439 16.7978ZM34.9457 10.3561C35.1167 11.2652 35.1993 12.105 35.1935 12.8756L34.177 12.9283C34.2122 12.2227 34.1446 11.3768 33.9742 10.3907L34.9457 10.3561ZM33.1654 21.8003C32.8957 21.5595 32.4151 21.1207 31.7235 20.4839C31.216 20.0211 30.8279 19.5922 30.5594 19.1973C30.3221 18.8109 30.2039 18.366 30.205 17.8627C30.2115 17.6261 30.169 17.4668 30.0773 17.385C29.9101 17.2357 29.2954 17.3415 28.2332 17.7024L28.1341 16.6684C29.1232 16.3683 29.8514 16.2815 30.3188 16.4078L32.3529 14.1072L31.2689 13.1394L31.9014 12.424L33.7055 14.0346L30.9885 17.1075C31.0029 17.1786 31.0074 17.2553 31.002 17.3378C31.0045 17.7279 31.0549 18.0639 31.1533 18.3456C31.3013 18.6911 31.6028 19.0815 32.0576 19.5167C32.6629 20.0764 33.2055 20.5706 33.6855 20.9991C33.9444 21.2302 34.3483 21.5811 34.8972 22.0518C35.2526 22.3594 35.5747 22.6227 35.8635 22.8418L35.0018 23.4398L33.1654 21.8003Z" fill="white"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

5
src/static/icons_ui/icon_notpass.svg

@ -1,5 +0,0 @@
<svg width="117" height="117" viewBox="0 0 117 117" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M114.258 57.6963C114.702 88.4906 90.0979 113.814 59.3036 114.258C28.5092 114.702 3.18567 90.0978 2.74186 59.3034C2.29805 28.5091 26.902 3.18553 57.6964 2.74172C88.4908 2.29791 113.814 26.9019 114.258 57.6963Z" stroke="#F54D4D" stroke-width="3.82186"/>
<path d="M107.139 57.7966C107.526 84.6597 86.0635 106.75 59.2005 107.138C32.3374 107.525 10.2467 86.0617 9.85959 59.1986C9.47244 32.3356 30.9354 10.2449 57.7985 9.85779C84.6615 9.47063 106.752 30.9336 107.139 57.7966Z" stroke="#F54D4D" stroke-width="1.91093"/>
<path d="M26.6396 72.6344L42.7646 59.7506L44.1579 61.4943L38.1016 66.3332C38.3558 67.4204 38.5426 68.3975 38.662 69.2646L48.7893 81.9397L46.9518 83.4078L38.862 73.2828C38.7424 76.6961 37.9944 80.2326 36.6178 83.8925L34.1931 83.2801C36.4479 77.6692 37.082 72.5546 36.0953 67.9362L28.0328 74.3781L26.6396 72.6344ZM42.0582 68.6708C45.4541 68.6404 48.5524 68.8784 51.3533 69.3849L51.0706 71.9147C48.5647 71.316 45.4651 70.9867 41.772 70.927L42.0582 68.6708ZM52.0788 50.8341C56.5911 51.6115 60.9815 51.5442 65.25 50.6323L65.657 53.1026C64.1351 53.3765 62.6869 53.5505 61.3125 53.6246L62.3762 54.9559L52.5137 62.836L51.42 61.4672C51.0394 62.8363 50.545 64.2553 49.9369 65.7242L47.6211 64.7483C49.5478 60.4441 50.5962 56.1556 50.7663 51.8827L52.0788 50.8341ZM60.5067 53.6541C57.8454 53.7324 55.2468 53.5047 52.7109 52.9709C52.6868 55.5296 52.3229 58.1244 51.6191 60.7552L60.5067 53.6541ZM65.1604 56.0183L71.3776 63.7996L69.6526 65.1779L68.8436 64.1654L60.0686 71.1765L60.8776 72.1891L59.1526 73.5673L52.9354 65.786L65.1604 56.0183ZM58.7203 69.489L67.4953 62.4779L64.7688 59.0653L55.9937 66.0765L58.7203 69.489ZM78.3659 58.1238L76.6222 59.5171L69.7009 50.8546C70.3918 52.8215 70.8616 54.7809 71.1103 56.7326L68.7985 55.4155C68.7202 52.7543 68.1196 50.1314 66.9967 47.547L64.6905 49.3897L63.3272 47.6834L65.6709 45.8108L62.8694 42.3045L64.6132 40.9113L67.4147 44.4176L69.3084 42.9045L70.6717 44.6107L68.778 46.1238L69.4521 46.9676C70.8288 47.1783 72.2867 47.4778 73.8257 47.8661C74.8463 46.0676 75.6195 44.3439 76.1452 42.695C74.9384 42.5943 73.8278 42.3962 72.8135 42.1008C72.8081 42.7604 72.7501 43.585 72.6395 44.5744L70.4209 44.1046C70.7696 41.9008 70.5737 39.4257 69.8333 36.6791L71.8541 35.7095L72.2692 37.344L77.3504 33.2841L78.4441 34.6528C78.9551 36.5997 79.0676 38.5988 78.7815 40.6501C80.5557 40.4613 82.5088 39.9965 84.6407 39.2557L85.1828 41.5874C82.6435 42.3054 80.3694 42.6889 78.3604 42.7376C77.8895 44.5064 77.1325 46.3401 76.0894 48.2385L84.0206 41.9015L89.7584 49.0828L88.0334 50.461L87.4641 49.7485L82.8329 53.4489L83.4021 54.1614L81.6584 55.5546L75.9805 48.4484L75.3689 49.49L74.2559 49.2119L74.349 50.2127C73.1599 49.7497 72.0719 49.3493 71.0851 49.0113L78.3659 58.1238ZM81.5145 51.7989L86.1458 48.0985L83.614 44.9298L78.9827 48.6301L81.5145 51.7989ZM76.5999 40.765C76.8608 39.2459 76.9041 37.8391 76.73 36.5446L72.6612 39.7955L72.706 40.1591C73.8927 40.5422 75.1906 40.7441 76.5999 40.765Z" fill="#F54D4D"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

4
src/static/icons_ui/icon_num.svg

@ -1,4 +0,0 @@
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M145.833 164.583V177.083H54.1667V164.583H145.833ZM177.083 27.0835V147.917H22.9167V27.0835H177.083ZM164.583 39.5835H35.4167V135.417H164.583V39.5835Z" fill="#777E94"/>
<path d="M75 81.8503V111.017H62.5V81.8503H75ZM106.25 65.1836V111.017H93.75V65.1836H106.25ZM137.5 77.6836V111.017H125V77.6836H137.5Z" fill="#1677FF"/>
</svg>

Before

Width:  |  Height:  |  Size: 432 B

5
src/static/icons_ui/icon_passed.svg

@ -1,5 +0,0 @@
<svg width="117" height="117" viewBox="0 0 117 117" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M114.258 57.6963C114.702 88.4906 90.0979 113.814 59.3036 114.258C28.5092 114.702 3.18567 90.0978 2.74186 59.3034C2.29805 28.5091 26.902 3.18553 57.6964 2.74172C88.4908 2.29791 113.814 26.9019 114.258 57.6963Z" stroke="#5FCB94" stroke-width="3.82186"/>
<path d="M107.139 57.7966C107.526 84.6597 86.0635 106.75 59.2005 107.138C32.3374 107.525 10.2467 86.0617 9.85959 59.1986C9.47244 32.3356 30.9354 10.2449 57.7985 9.85779C84.6615 9.47063 106.752 30.9336 107.139 57.7966Z" stroke="#5FCB94" stroke-width="1.91093"/>
<path d="M43.359 57.8011C47.8713 58.5785 52.2617 58.5112 56.5302 57.5993L56.9372 60.0696C55.4153 60.3435 53.9672 60.5175 52.5928 60.5917L53.6564 61.9229L43.7939 69.803L42.7003 68.4342C42.3196 69.8033 41.8253 71.2223 41.2172 72.6913L38.9014 71.7153C40.8281 67.4111 41.8765 63.1226 42.0465 58.8498L43.359 57.8011ZM51.7869 60.6211C49.1257 60.6995 46.5271 60.4717 43.9911 59.9379C43.9671 62.4967 43.6032 65.0914 42.8994 67.7222L51.7869 60.6211ZM56.4407 62.9853L62.6579 70.7666L60.9329 72.1449L60.1239 71.1324L51.3489 78.1436L52.1578 79.1561L50.4328 80.5343L44.2156 72.7531L56.4407 62.9853ZM50.0006 76.4561L58.7756 69.4449L56.049 66.0324L47.274 73.0436L50.0006 76.4561ZM69.6462 65.0909L67.9024 66.4841L60.9811 57.8216C61.6721 59.7886 62.1419 61.7479 62.3906 63.6996L60.0787 62.3826C60.0004 59.7213 59.3998 57.0985 58.277 54.514L55.9707 56.3567L54.6074 54.6505L56.9512 52.7778L54.1497 49.2716L55.8934 47.8783L58.6949 51.3846L60.5887 49.8715L61.952 51.5777L60.0582 53.0908L60.7324 53.9346C62.1091 54.1453 63.5669 54.4448 65.1059 54.8331C66.1265 53.0346 66.8997 51.3109 67.4255 49.662C66.2186 49.5613 65.108 49.3633 64.0937 49.0678C64.0883 49.7274 64.0303 50.552 63.9198 51.5415L61.7012 51.0716C62.0498 48.8679 61.854 46.3927 61.1135 43.6461L63.1344 42.6766L63.5494 44.311L68.6307 40.2511L69.7243 41.6199C70.2354 43.5667 70.3478 45.5658 70.0617 47.6172C71.8359 47.4283 73.789 46.9635 75.9209 46.2227L76.463 48.5544C73.9238 49.2725 71.6497 49.6559 69.6406 49.7046C69.1698 51.4735 68.4128 53.3071 67.3696 55.2055L75.3009 48.8685L81.0387 56.0498L79.3137 57.428L78.7444 56.7155L74.1131 60.4159L74.6824 61.1284L72.9386 62.5216L67.2608 55.4154L66.6492 56.457L65.5361 56.1789L65.6292 57.1798C64.4401 56.7168 63.3521 56.3163 62.3653 55.9783L69.6462 65.0909ZM72.7948 58.7659L77.426 55.0655L74.8942 51.8968L70.2629 55.5971L72.7948 58.7659ZM67.8802 47.732C68.141 46.2129 68.1843 44.8061 68.0102 43.5116L63.9415 46.7626L63.9862 47.1262C65.1729 47.5092 66.4709 47.7111 67.8802 47.732Z" fill="#5FCB94"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

12
src/static/icons_ui/icon_prod_line.svg

@ -1,12 +0,0 @@
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1566_19284)">
<path d="M34 52.1899C34 50.983 34.2803 49.788 34.8248 48.6731C35.3694 47.5581 36.1675 46.545 37.1737 45.6917C38.1799 44.8383 39.3745 44.1614 40.6891 43.6995C42.0038 43.2377 43.4128 43 44.8358 43H72.4179V54.6962H47.791V163.304H152.209V54.6962H127.582V43H155.164C156.587 43 157.996 43.2377 159.311 43.6995C160.626 44.1614 161.82 44.8383 162.826 45.6917C163.832 46.545 164.631 47.5581 165.175 48.6731C165.72 49.788 166 50.983 166 52.1899V165.81C166 167.017 165.72 168.212 165.175 169.327C164.631 170.442 163.832 171.455 162.826 172.308C161.82 173.162 160.626 173.839 159.311 174.3C157.996 174.762 156.587 175 155.164 175H44.8358C43.4128 175 42.0038 174.762 40.6891 174.3C39.3745 173.839 38.1799 173.162 37.1737 172.308C36.1675 171.455 35.3694 170.442 34.8248 169.327C34.2803 168.212 34 167.017 34 165.81V52.1899Z" fill="#777E94"/>
<path d="M99.5 37.8276C98.8528 37.8276 98.2119 37.9368 97.6139 38.1491C97.016 38.3614 96.4726 38.6726 96.015 39.0648C95.5573 39.4571 95.1943 39.9227 94.9466 40.4352C94.6989 40.9477 94.5714 41.497 94.5714 42.0517V48.6414C94.5714 50.2546 93.8237 51.8018 92.4927 52.9425C91.1618 54.0833 89.3566 54.7241 87.4743 54.7241H78.8V63.1724H120.2V54.7241H111.526C109.643 54.7241 107.838 54.0833 106.507 52.9425C105.176 51.8018 104.429 50.2546 104.429 48.6414V42.0517C104.429 41.497 104.301 40.9477 104.053 40.4352C103.806 39.9227 103.443 39.4571 102.985 39.0648C102.527 38.6726 101.984 38.3614 101.386 38.1491C100.788 37.9368 100.147 37.8276 99.5 37.8276V37.8276ZM80.7714 42.0517C80.7714 37.7945 82.7446 33.7117 86.2569 30.7014C89.7692 27.6912 94.5329 26 99.5 26C104.467 26 109.231 27.6912 112.743 30.7014C116.255 33.7117 118.229 37.7945 118.229 42.0517V42.8966H134V65.7069C134 66.9273 133.72 68.1357 133.175 69.2632C132.63 70.3907 131.831 71.4152 130.824 72.2781C129.817 73.1411 128.622 73.8256 127.307 74.2926C125.991 74.7596 124.581 75 123.157 75H75.8429C74.419 75 73.009 74.7596 71.6935 74.2926C70.378 73.8256 69.1827 73.1411 68.1758 72.2781C67.1689 71.4152 66.3703 70.3907 65.8254 69.2632C65.2805 68.1357 65 66.9273 65 65.7069V42.8966H80.7714V42.0517V42.0517Z" fill="#777E94"/>
<path d="M80 104.048C76.96 110.939 73.1347 116.639 68.524 121.148L63.812 115.144C70.652 107.899 75.288 98.1707 77.72 85.96L85.092 87.252C84.332 90.748 83.496 94.016 82.584 97.056H96.72V84.288H103.94V97.056H128.336V104.048H103.94V119.78H126.816V126.772H103.94V144.1H133.2V151.244H65.788V144.1H96.72V126.772H74.984V119.78H96.72V104.048H80Z" fill="#1677FF"/>
</g>
<defs>
<clipPath id="clip0_1566_19284">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

5
src/static/icons_ui/icon_qiju_end.svg

@ -1,5 +0,0 @@
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M37.4167 144.283C38.8533 144.283 40.231 144.854 41.2468 145.87C42.2627 146.886 42.8333 148.263 42.8333 149.7V160.225H157V149.7C157 148.263 157.571 146.886 158.587 145.87C159.602 144.854 160.98 144.283 162.417 144.283C163.853 144.283 165.231 144.854 166.247 145.87C167.263 146.886 167.833 148.263 167.833 149.7V165.642C167.833 166.353 167.693 167.057 167.421 167.714C167.149 168.372 166.75 168.969 166.247 169.472C165.744 169.975 165.147 170.374 164.49 170.646C163.832 170.918 163.128 171.058 162.417 171.058H37.4167C36.7053 171.058 36.001 170.918 35.3438 170.646C34.6866 170.374 34.0895 169.975 33.5865 169.472C33.0835 168.969 32.6845 168.372 32.4123 167.714C32.1401 167.057 32 166.353 32 165.642V149.7C32 148.263 32.5707 146.886 33.5865 145.87C34.6023 144.854 35.9801 144.283 37.4167 144.283Z" fill="#777E94"/>
<path d="M160 83C160 115.585 133.585 142 101 142C68.4152 142 42 115.585 42 83C42 50.4152 68.4152 24 101 24C133.585 24 160 50.4152 160 83Z" stroke="#777E94" stroke-width="12"/>
<rect x="75" y="56" width="53" height="53" rx="5" fill="#035DFF"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

4
src/static/icons_ui/icon_qiju_num.svg

@ -1,4 +0,0 @@
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M29.1411 141C30.7698 141 32.3318 141.725 33.4835 143.015C34.6352 144.305 35.2822 146.054 35.2822 147.878V161.243H164.718V147.878C164.718 146.054 165.365 144.305 166.516 143.015C167.668 141.725 169.23 141 170.859 141C172.488 141 174.05 141.725 175.201 143.015C176.353 144.305 177 146.054 177 147.878V168.122C177 169.025 176.841 169.919 176.533 170.754C176.224 171.588 175.772 172.347 175.201 172.985C174.631 173.624 173.954 174.131 173.209 174.476C172.464 174.822 171.665 175 170.859 175H29.1411C28.3346 175 27.5361 174.822 26.791 174.476C26.0459 174.131 25.3689 173.624 24.7987 172.985C24.2284 172.347 23.7761 171.588 23.4675 170.754C23.1588 169.919 23 169.025 23 168.122V147.878C23 146.054 23.647 144.305 24.7987 143.015C25.9504 141.725 27.5124 141 29.1411 141Z" fill="#777E94"/>
<path d="M39.2063 104.375V58.75C39.4146 54.7917 41.3938 52.7083 45.1438 52.5C47.2271 52.7083 48.8938 53.6458 50.1438 55.3125L75.4563 89.0625H75.7688V58.75C75.9771 54.7917 77.9563 52.7083 81.7063 52.5C85.4563 52.7083 87.4354 54.7917 87.6438 58.75V104.375C87.4354 108.125 85.4563 110 81.7063 110C79.6229 110 77.9563 109.271 76.7063 107.812L51.3938 74.375H51.0813V104.375C50.8729 108.125 48.8938 110 45.1438 110C41.3938 110 39.4146 108.125 39.2063 104.375ZM118.719 100C128.302 99.5833 133.406 93.4375 134.031 81.5625C133.406 69.8958 128.302 63.75 118.719 63.125C109.344 63.75 104.344 69.8958 103.719 81.5625C104.344 93.2292 109.344 99.375 118.719 100ZM118.719 110.312C101.635 109.271 92.4688 99.6875 91.2188 81.5625C92.4688 63.2292 101.635 53.4375 118.719 52.1875C135.594 53.4375 144.76 63.2292 146.219 81.5625C144.969 99.8958 135.802 109.479 118.719 110.312ZM151.044 104.688C151.46 100.938 153.544 98.8542 157.294 98.4375C161.044 98.8542 163.127 100.938 163.544 104.688C163.335 108.229 161.252 110.104 157.294 110.312C153.335 110.104 151.252 108.229 151.044 104.688Z" fill="#1677FF"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.9 KiB

5
src/static/icons_ui/icon_qiju_start.svg

@ -1,5 +0,0 @@
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M37.4167 146.283C38.8533 146.283 40.231 146.854 41.2468 147.87C42.2627 148.886 42.8333 150.263 42.8333 151.7V162.225H157V151.7C157 150.263 157.571 148.886 158.587 147.87C159.602 146.854 160.98 146.283 162.417 146.283C163.853 146.283 165.231 146.854 166.247 147.87C167.263 148.886 167.833 150.263 167.833 151.7V167.642C167.833 168.353 167.693 169.057 167.421 169.714C167.149 170.372 166.75 170.969 166.247 171.472C165.744 171.975 165.147 172.374 164.49 172.646C163.832 172.918 163.128 173.058 162.417 173.058H37.4167C36.7053 173.058 36.001 172.918 35.3438 172.646C34.6866 172.374 34.0895 171.975 33.5865 171.472C33.0835 170.969 32.6845 170.372 32.4123 169.714C32.1401 169.057 32 168.353 32 167.642V151.7C32 150.263 32.5707 148.886 33.5865 147.87C34.6023 146.854 35.9801 146.283 37.4167 146.283Z" fill="#777E94"/>
<path d="M127.417 78.1699C130.75 80.0944 130.75 84.9056 127.417 86.8301L89.167 108.914C85.8337 110.838 81.667 108.433 81.667 104.584V60.4164C81.667 56.5674 85.8337 54.1617 89.167 56.0862L127.417 78.1699Z" fill="#035DFF"/>
<circle cx="99.917" cy="83" r="59" stroke="#777E94" stroke-width="12"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

12
src/static/icons_ui/icon_return_num.svg

@ -1,12 +0,0 @@
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1411_18432)">
<path d="M34 52.1899C34 50.983 34.2803 49.788 34.8248 48.6731C35.3694 47.5581 36.1675 46.545 37.1737 45.6917C38.1799 44.8383 39.3745 44.1614 40.6891 43.6995C42.0038 43.2377 43.4128 43 44.8358 43H72.4179V54.6962H47.791V163.304H152.209V54.6962H127.582V43H155.164C156.587 43 157.996 43.2377 159.311 43.6995C160.626 44.1614 161.82 44.8383 162.826 45.6917C163.832 46.545 164.631 47.5581 165.175 48.6731C165.72 49.788 166 50.983 166 52.1899V165.81C166 167.017 165.72 168.212 165.175 169.327C164.631 170.442 163.832 171.455 162.826 172.308C161.82 173.162 160.626 173.839 159.311 174.3C157.996 174.762 156.587 175 155.164 175H44.8358C43.4128 175 42.0038 174.762 40.6891 174.3C39.3745 173.839 38.1799 173.162 37.1737 172.308C36.1675 171.455 35.3694 170.442 34.8248 169.327C34.2803 168.212 34 167.017 34 165.81V52.1899Z" fill="#777E94"/>
<path d="M99.5 37.8276C98.8528 37.8276 98.2119 37.9368 97.6139 38.1491C97.016 38.3614 96.4726 38.6726 96.015 39.0648C95.5573 39.4571 95.1943 39.9227 94.9466 40.4352C94.6989 40.9477 94.5714 41.497 94.5714 42.0517V48.6414C94.5714 50.2546 93.8237 51.8018 92.4927 52.9425C91.1618 54.0833 89.3566 54.7241 87.4743 54.7241H78.8V63.1724H120.2V54.7241H111.526C109.643 54.7241 107.838 54.0833 106.507 52.9425C105.176 51.8018 104.429 50.2546 104.429 48.6414V42.0517C104.429 41.497 104.301 40.9477 104.053 40.4352C103.806 39.9227 103.443 39.4571 102.985 39.0648C102.527 38.6726 101.984 38.3614 101.386 38.1491C100.788 37.9368 100.147 37.8276 99.5 37.8276V37.8276ZM80.7714 42.0517C80.7714 37.7945 82.7446 33.7117 86.2569 30.7014C89.7692 27.6912 94.5329 26 99.5 26C104.467 26 109.231 27.6912 112.743 30.7014C116.255 33.7117 118.229 37.7945 118.229 42.0517V42.8966H134V65.7069C134 66.9273 133.72 68.1357 133.175 69.2632C132.63 70.3907 131.831 71.4152 130.824 72.2781C129.817 73.1411 128.622 73.8256 127.307 74.2926C125.991 74.7596 124.581 75 123.157 75H75.8429C74.419 75 73.009 74.7596 71.6935 74.2926C70.378 73.8256 69.1827 73.1411 68.1758 72.2781C67.1689 71.4152 66.3703 70.3907 65.8254 69.2632C65.2805 68.1357 65 66.9273 65 65.7069V42.8966H80.7714V42.0517V42.0517Z" fill="#777E94"/>
<path d="M71.336 84.44C76.6053 88.6453 80.8867 92.6227 84.18 96.372L78.936 101.54C75.9467 97.6893 71.7413 93.5853 66.32 89.228L71.336 84.44ZM114.504 152.536C112.021 152.536 107.537 152.485 101.052 152.384C96.2893 152.333 92.2867 151.903 89.044 151.092C86.156 150.231 83.5213 148.457 81.14 145.772C80.076 144.505 79.1387 143.872 78.328 143.872C76.7573 143.872 74.0213 147.292 70.12 154.132L64.8 149.192C68.6 143.011 72.02 139.16 75.06 137.64V116.132H64.876V109.444H81.824V138.248L82.888 139.312C84.6107 141.339 86.4093 142.859 88.284 143.872C90.6653 144.987 94.0093 145.62 98.316 145.772C103.991 145.873 109.057 145.924 113.516 145.924C115.948 145.924 119.799 145.873 125.068 145.772C128.513 145.721 131.528 145.595 134.112 145.392L132.288 152.536H114.504ZM107.208 117.424C111.109 119.552 114.757 121.832 118.152 124.264C120.787 121.832 122.965 119.527 124.688 117.348L129.856 121.376C128.032 123.555 125.879 125.784 123.396 128.064C126.993 130.749 130.236 133.485 133.124 136.272L128.64 141.592C121.851 134.651 113.339 128.241 103.104 122.364L107.208 117.424ZM97.556 103.972V109.444H121.04V103.972H97.556ZM121.04 98.044V92.572H97.556V98.044H121.04ZM97.556 115.828V133.84C102.268 132.979 106.752 131.889 111.008 130.572L112.604 137.108C106.169 138.78 98.5187 140.351 89.652 141.82L88.056 135.74C89.728 135.132 90.564 134.195 90.564 132.928V86.188H128.108V115.828H97.556Z" fill="#1677FF"/>
</g>
<defs>
<clipPath id="clip0_1411_18432">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

4
src/static/icons_ui/icon_senditem.svg

@ -1,4 +0,0 @@
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M64.35 34.6333C62.936 34.6337 61.5782 35.187 60.5667 36.175L40.5417 55.725C39.9628 56.2235 39.4326 56.776 38.9583 57.375C37.2065 59.572 36.2517 62.2983 36.25 65.1083V153.183C36.25 159.683 41.35 165.375 48.15 165.375H151.85C158.65 165.375 163.75 159.692 163.75 153.183V65.1083C163.749 63.3342 163.367 61.5809 162.631 59.9666C161.895 58.3523 160.822 56.9145 159.483 55.75L139.433 36.1666C138.42 35.1817 137.063 34.6315 135.65 34.6333H64.35V34.6333ZM141.083 52.9166H58.925L66.5583 45.4666H133.442L141.075 52.9166H141.083ZM47.325 64.25L47.6667 63.9166C47.8091 63.8172 47.9765 63.7595 48.15 63.75H151.85C151.983 63.75 152.167 63.8 152.342 63.9166L152.667 64.2333C152.839 64.492 152.926 64.7978 152.917 65.1083V153.183C152.917 154.158 152.217 154.542 151.85 154.542H48.15C47.7833 154.542 47.0833 154.158 47.0833 153.183V65.1083C47.0758 64.8006 47.1631 64.498 47.3333 64.2416L47.325 64.25Z" fill="#777E94"/>
<path d="M104.8 122.275C104.329 122.738 103.955 123.289 103.698 123.897C103.441 124.505 103.308 125.158 103.305 125.818C103.302 126.478 103.429 127.132 103.68 127.743C103.931 128.353 104.301 128.908 104.767 129.375C105.233 129.842 105.788 130.212 106.398 130.464C107.008 130.715 107.662 130.844 108.322 130.841C108.982 130.839 109.635 130.706 110.243 130.45C110.852 130.194 111.403 129.82 111.867 129.35L128.533 112.684C129.461 111.757 129.988 110.503 130 109.192V109.15V109.1C129.991 107.788 129.463 106.534 128.533 105.609L111.867 88.9419C111.403 88.4717 110.852 88.0978 110.243 87.8419C109.635 87.586 108.982 87.453 108.322 87.4507C107.662 87.4484 107.008 87.5768 106.398 87.8285C105.788 88.0802 105.233 88.4503 104.767 88.9172C104.301 89.3842 103.931 89.9389 103.68 90.5494C103.429 91.1598 103.302 91.8139 103.305 92.4739C103.308 93.134 103.441 93.7868 103.698 94.3949C103.955 95.003 104.329 95.5543 104.8 96.0169L112.933 104.15H75C73.6739 104.15 72.4022 104.677 71.4645 105.615C70.5268 106.552 70 107.824 70 109.15C70 110.476 70.5268 111.748 71.4645 112.686C72.4022 113.623 73.6739 114.15 75 114.15H112.933L104.8 122.275Z" fill="#035DFF"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

11
src/static/icons_ui/icon_supplier.svg

@ -1,11 +0,0 @@
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1409_18426)">
<circle cx="100" cy="100" r="70.4839" stroke="#777E94" stroke-width="11.0323"/>
<path d="M87.8487 81.5651H97.1815V65.9848H104.586V81.5651H116.695V65.9848H124.023V81.5651H133.664V88.661H124.023V105.013H135.824V112.031H85.6891V105.013H97.1815V88.661H87.8487V81.5651ZM104.586 105.013H116.695V88.661H104.586V105.013ZM120.629 113.497C127.211 120.953 132.096 127.226 135.284 132.317L128.651 136.867C125.257 131.108 120.578 124.552 114.613 117.199L120.629 113.497ZM106.283 117.353C102.221 124.964 97.5157 131.571 92.168 137.176L85.8434 132.471C91.1396 127.38 95.716 121.261 99.5725 114.114L106.283 117.353ZM73.5026 96.0655C71.1887 98.8422 68.7976 101.542 66.3295 104.164L63.9384 96.374C71.8057 87.4784 77.6933 77.0401 81.6012 65.0592L88.5429 68.2987C86.5375 74.1606 83.9922 79.8168 80.907 85.2673V136.944H73.5026V96.0655Z" fill="#035DFF"/>
</g>
<defs>
<clipPath id="clip0_1409_18426">
<rect width="200" height="200" fill="white"/>
</clipPath>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

8
src/static/icons_ui/icons_common_recceipt.svg

@ -1,8 +0,0 @@
<svg width="56" height="45" viewBox="0 0 56 45" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.9">
<path d="M35.8381 38.768C35.8381 41.9326 38.4151 44.5096 41.5797 44.5096C44.7442 44.5096 47.3213 41.9326 47.3213 38.768C47.3213 35.6035 44.7442 33.0264 41.5797 33.0264C38.4151 33.0264 35.8381 35.6035 35.8381 38.768ZM8.19165 38.6478C8.19165 41.8124 10.7687 44.3894 13.9332 44.3894C17.0978 44.3894 19.6748 41.8124 19.6748 38.6478C19.6748 35.4833 17.0978 32.9062 13.9332 32.9062C10.7687 32.9062 8.19165 35.4833 8.19165 38.6478Z" fill="#5A7CF3"/>
<path d="M46.38 9.25331H37.0066V3.63189C37.0066 1.75586 35.9517 0.353842 34.0757 0H5.03391C2.92421 0 1.04817 1.05485 0 2.93088V36.5459H5.03391C5.96858 32.4467 9.60048 29.5158 13.9334 29.5158C18.2663 29.5158 21.8982 32.4467 22.8328 36.5459H32.5535C33.4882 32.4467 37.1201 29.5158 41.4529 29.5158C45.7858 29.5158 49.4177 32.4467 50.3524 36.5459H55.2728V25.6502L46.38 9.25331ZM37.2402 25.0627V13.5862H43.7963L50.3524 25.0627H37.2402Z" fill="#5A7CF3"/>
<path d="M15.8155 14.5996H25.7847C27.0032 14.5996 28.0001 15.6796 28.0001 16.9996C28.0001 18.3196 27.0032 19.3996 25.7847 19.3996H15.8155C14.597 19.3996 13.6001 18.3196 13.6001 16.9996C13.6001 15.6796 14.597 14.5996 15.8155 14.5996Z" fill="#F5F5F5"/>
<path d="M16.1599 11C16.7199 11 17.2799 11.2182 17.7279 11.6545C18.6239 12.5273 18.6239 13.8364 17.7279 14.7091L15.3759 17L17.7279 19.2909C18.6239 20.1636 18.6239 21.4727 17.7279 22.3455C16.8319 23.2182 15.4879 23.2182 14.5919 22.3455L10.6719 18.5273C10.2239 18.0909 9.9999 17.5455 9.9999 17C9.9999 16.4545 10.2239 15.9091 10.6719 15.4727L14.5919 11.6545C14.9279 11.2182 15.5999 11 16.1599 11Z" fill="#F5F5F5"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

9
src/static/icons_ui/icons_common_sjadd.svg

@ -1,9 +0,0 @@
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.333252" y="78.1895" width="95.8124" height="8.25969" rx="4.12984" fill="#6989F5"/>
<path opacity="0.9" d="M18.6421 5.50586H80.3145C83.9763 5.50586 87.0599 8.58948 87.0599 12.2513V79.7054C87.0599 83.3672 83.9763 86.4508 80.3145 86.4508H18.6421C14.9803 86.4508 11.8967 83.3672 11.8967 79.7054V12.2513C11.8967 8.58948 14.9803 5.50586 18.6421 5.50586Z" fill="#5A7CF3"/>
<path d="M58.7014 73.5086C58.7014 78.9851 60.877 84.2373 64.7494 88.1098C68.6219 91.9823 73.8741 94.1578 79.3506 94.1578C84.8271 94.1578 90.0794 91.9823 93.9518 88.1098C97.8243 84.2373 99.9998 78.9851 99.9998 73.5086C99.9998 68.0321 97.8243 62.7799 93.9518 58.9074C90.0794 55.0349 84.8271 52.8594 79.3506 52.8594C73.8741 52.8594 68.6219 55.0349 64.7494 58.9074C60.877 62.7799 58.7014 68.0321 58.7014 73.5086Z" fill="#5FCB94"/>
<path d="M82.9302 69.6747V83.3985C82.9302 85.0759 81.4434 86.4482 79.6263 86.4482C77.8092 86.4482 76.3224 85.0759 76.3224 83.3985V69.6747C76.3224 67.9974 77.8092 66.625 79.6263 66.625C81.4434 66.625 82.9302 67.9974 82.9302 69.6747Z" fill="#F5F5F5"/>
<path d="M87.8861 70.1508C87.8861 70.9217 87.5857 71.6926 86.985 72.3093C85.7836 73.5427 83.9815 73.5427 82.7801 72.3093L79.6264 69.0715L76.4727 72.3093C75.2713 73.5427 73.4692 73.5427 72.2678 72.3093C71.0663 71.0758 71.0663 69.2257 72.2678 67.9922L77.5239 62.5959C78.1246 61.9792 78.8755 61.6708 79.6264 61.6708C80.3773 61.6708 81.1281 61.9792 81.7289 62.5959L86.985 67.9922C87.5857 68.4548 87.8861 69.3799 87.8861 70.1508Z" fill="#F5F5F5"/>
<rect x="21.8086" y="31.9375" width="28.0829" height="6.60775" rx="3.30387" fill="#EEF2FE"/>
<rect x="21.8086" y="48.4551" width="37.9946" height="6.60775" rx="3.30387" fill="#EEF2FE"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

BIN
src/static/images/profile.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

Loading…
Cancel
Save