Compare commits

..

No commits in common. "2def830fc3a1519e5999dfa21b3a9b3532ff95da" and "b2f252602895157fddd458fa691a5e5a9a6a29de" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@
<!-- Content --> <!-- Content -->
<view class="text-sm text-gray-600 mb-5 flex items-start"> <view class="text-sm text-gray-600 mb-5 flex items-start">
<text class="text-gray-400 mr-2 field-label">:</text> <text class="text-gray-400 mr-2 field-label">:</text>
<text>{{ item.person || '-' }}</text> <text>{{ item.person || '-' }}</text>
</view> </view>

View File

@ -54,7 +54,7 @@ const articleIds = computed(() => {
function goToDetail(article) { function goToDetail(article) {
if (!article?._id) return; if (!article?._id) return;
uni.navigateTo({ url: `/pages/article/article-detail?id=${article._id}&corpId=${props.team.corpId}` }); uni.navigateTo({ url: `/pages/article/article-detail?id=${article._id}` });
} }
const loadArticles = async () => { const loadArticles = async () => {

View File

@ -48,7 +48,7 @@
<!-- Content --> <!-- Content -->
<view class="text-sm text-gray-600 mb-5 flex items-start"> <view class="text-sm text-gray-600 mb-5 flex items-start">
<text class="text-gray-400 mr-2 field-label">:</text> <text class="text-gray-400 mr-2 field-label">:</text>
<text>{{ item.person || '-' }}</text> <text>{{ item.person || '-' }}</text>
</view> </view>