任务ID:{{ item.title }}
@@ -164,22 +175,26 @@ onMounted(() => {
display: flex;
flex-flow: row wrap;
align-items: center;
- justify-content: flex-start;
+ // justify-content: flex-start;
+ justify-content: space-between;
flex: 1;
.item {
- width: 23%;
+ min-width: 14.125rem;
border: 1px solid #ededed;
border-radius: 3px;
padding: 8px 10px;
- margin-right: 10px;
+ margin-right: 20px;
+ margin-bottom: 16px;
.top {
display: flex;
flex-flow: row nowrap;
align-items: center;
justify-content: flex-start;
.img {
- width: 50%;
- height: 70px;
+ width: 84px;
+ height: 55px;
+ // height: auto;
+ object-fit: cover;
border-radius: 3px;
.check_box {
margin-left: 8px;
@@ -202,15 +217,21 @@ onMounted(() => {
align-items: center;
justify-content: flex-start;
.tag_item {
- width: 31px;
- height: 14px;
+ min-width: 31px;
+ min-height: 14px;
font-size: 10px;
+ padding: 1px 3px;
font-weight: bolder;
text-align: left;
// color: #507afd;
line-height: 14px;
letter-spacing: 0.1px;
margin-right: 8px;
+ // opacity: 0.1;
+ background: #c0f7e4;
+ border-radius: 2px;
+ text-align: center;
+ white-space: nowrap
}
}
}
@@ -219,6 +240,9 @@ onMounted(() => {
flex-flow: row nowrap;
align-items: center;
justify-content: flex-end;
+ div {
+ cursor: pointer;
+ }
.resovle_action {
font-size: 12px;
font-weight: bolder;
@@ -230,7 +254,7 @@ onMounted(() => {
font-size: 12px;
font-weight: bolder;
text-align: left;
- color: #ff4e4f;
+ color: #FF4E4F;
line-height: 17px;
margin-left: 15px;
}
diff --git a/src/views/final/index.vue b/src/views/final/index.vue
index 102a011..20d020f 100644
--- a/src/views/final/index.vue
+++ b/src/views/final/index.vue
@@ -3,6 +3,8 @@ import { ref } from 'vue'
import Aside from './aside/Aside.vue'
import Content from './content/Content.vue'
import ListContent from './content/ListContent.vue'
+import Robot from '@/components/Robot/index.vue'
+
defineOptions({
name: 'FinalMain',
@@ -24,6 +26,8 @@ function inputChange(keyword) {
+
+
diff --git a/src/views/home/aside/comp/items/IzShowAll.vue b/src/views/home/aside/comp/items/IzShowAll.vue
index 37908b4..132c576 100644
--- a/src/views/home/aside/comp/items/IzShowAll.vue
+++ b/src/views/home/aside/comp/items/IzShowAll.vue
@@ -5,7 +5,7 @@ import { useConfig } from '@/store/modules/asideConfig'
const props = defineProps({
value: {
type: Boolean,
- default: true,
+ default: false,
},
label: {
type: String,
diff --git a/src/views/home/content/Content.vue b/src/views/home/content/Content.vue
index fdc5e9b..87c3a39 100644
--- a/src/views/home/content/Content.vue
+++ b/src/views/home/content/Content.vue
@@ -378,7 +378,7 @@ async function tasksLoadingCloseCallback() {
async function showLoginSuccessModal() {
const modal = LoginSuccessModalRef.value as any;
- // modal.showModal()
+ modal.showModal()
}
// 包id
@@ -621,6 +621,11 @@ const loadImgOver = (item) => {
console.log("loadImgOver", item);
setTimeout(() => (item.loadOver = true), 2000);
};
+
+defineExpose({
+ showLoginSuccessModal
+})
+