feat: 逻辑补全,登录首页样式调整

pull/76/head
刘释隆 1 year ago
parent 45c074009a
commit cad7cea19f

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="64px" height="64px" viewBox="0 0 64 64" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>右箭头</title>
<defs>
<rect id="path-1" x="0" y="0" width="64" height="64"></rect>
</defs>
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="PrevailCloud-Design-图标集" transform="translate(-2504.000000, -8416.000000)">
<g id="右箭头" transform="translate(2536.000000, 8448.000000) scale(-1, 1) translate(-2536.000000, -8448.000000) translate(2504.000000, 8416.000000)">
<mask id="mask-2" fill="white">
<use xlink:href="#path-1"></use>
</mask>
<g id="蒙版"></g>
<path d="M28.2032063,13.8205721 C28.5937306,13.4300478 29.2268955,13.4300478 29.6174198,13.8205721 L29.6174198,13.8205721 L31.7387402,15.9418924 C32.1292645,16.3324167 32.1292645,16.9655817 31.7387402,17.356106 L31.7387402,17.356106 L20.0942055,28.9996789 L52.663654,29 C53.2159388,29 53.663654,29.4477153 53.663654,30 L53.663654,33 C53.663654,33.5522847 53.2159388,34 52.663654,34 L20.0952055,33.9996789 L31.7387402,45.643894 C32.1292645,46.0344183 32.1292645,46.6675833 31.7387402,47.0581076 L29.6174198,49.1794279 C29.2268955,49.5699522 28.5937306,49.5699522 28.2032063,49.1794279 L11.9379919,32.9142136 C11.1569433,32.133165 11.1569433,30.866835 11.9379919,30.0857864 L13.3522055,28.6715729 L13.3592055,28.6636789 Z" id="形状结合" fill="#FFFFFF" mask="url(#mask-2)"></path>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

@ -138,6 +138,9 @@ const showSearch = ref(false);
function setShowSearch(value: boolean) {
showSearch.value = value;
if(!value){
inputChange('')
}
}
// key
@ -161,7 +164,6 @@ watch(asideValue, (newVal) => {
});
const inputChange = (keyword) => {
console.log("Search Component", keyword);
emit("inputChange", keyword);
};
</script>

@ -765,7 +765,11 @@ async function refreshHandler(searchId?: any) {
}
function filterTableData(keyword) {
tableData.value = tableData.value.filter(item => item.id.includes(keyword))
if(keyword){
tableData.value = tableData.value.filter(item => item.id.includes(keyword))
}else{
query(pagination.page, pagination.pageSize)
}
}
defineExpose({
filterTableData,

File diff suppressed because it is too large Load Diff

@ -62,7 +62,7 @@ function close() {
</div>
<div class="text">企业级 SaaS 智能审批解决方案</div>
<img class="img-icon-2" src="../../assets/images/login/img-icon-2.png" alt="" />
<div class="btn-login-2 f-c-c" @click="showLogin"> -></div>
<div class="flex btn-login-2 f-c-c" @click="showLogin"> <SvgIcon name="right_arrow" class="right_arrow"/></div>
<div class="item-wrap f-c">
<div class="item">
<img class="item-img" src="../../assets/images/login/item-1.png" alt="" />
@ -300,5 +300,9 @@ function close() {
color: #FF4E4F !important;
font-size: .75rem !important;
}
.right_arrow{
height: 1.25rem !important;
width: 1.25rem !important;
margin-top: .2rem;
}
</style>

Loading…
Cancel
Save