瀏覽代碼

bug修改

asd26269546 1 年之前
父節點
當前提交
ab016eefd6
共有 2 個文件被更改,包括 3 次插入2 次删除
  1. 2 1
      src/views/index.vue
  2. 1 1
      src/views/process/dealWith/index.vue

+ 2 - 1
src/views/index.vue

@@ -10,7 +10,7 @@
 						<i class="icon iconfont icon-iconm_waixht"></i>
 					</div>
 				</li>
-				<li class="theme2" @click="toUrl('DealWith',1)">
+				<li class="theme2" @click="toUrl('DealWith',2)">
 					<div class="num">{{haveInitiatedData.total}}</div>
 					<div class="label">我的发起(未结束)</div>
 					<div class="icon-box">
@@ -285,6 +285,7 @@ onMounted(() => {})
 				color: #333333;
 				position: relative;
 				border-radius: 10px;
+				cursor: pointer;
 				.label {
 					font-size: 14px;
 					margin-top: 10px;

+ 1 - 1
src/views/process/dealWith/index.vue

@@ -348,7 +348,7 @@ const changeStatus = (row) => {
 }
 onMounted(() => {
 	const route = useRoute();
-	sourceList.value.pagination.status = route.query.type
+	sourceList.value.pagination.status = route.query.type ? route.query.type : 1
 	getList()
 })