审核详情标签贴右边

This commit is contained in:
WindowBird 2025-11-26 15:12:24 +08:00
parent eb3a3c1a27
commit 05124c2f6e
3 changed files with 12 additions and 3 deletions

View File

@ -852,7 +852,10 @@ const loadOptions = async () => {
label: item.name || item.projectName || '',
value: item.id || ''
})).filter(item => item.label && item.value);
// console.log('projectRes',projectRes);
// console.log('projectOptions',projectOptions.value);
projectColumns.value = [projectOptions.value];
// console.log('projectOptions',[projectOptions.value]);
}
//

View File

@ -15,12 +15,15 @@
<view class="info-row">
<text class="info-label">任务类型</text>
<view class="info-value">
<uv-tags
<uv-tags
:text="getTaskTypeLabel(detailData.task?.type)"
type="success"
size="mini"
:plain="false"
></uv-tags>
</view>
</view>
<view class="info-row">
@ -464,7 +467,10 @@ onLoad((options) => {
font-size: 14px;
color: #333;
flex: 1;
text-align: right;
display: flex;
justify-content: flex-end;
}
.card-title {

View File

@ -79,7 +79,7 @@ export const useDictStore = defineStore('dict', {
async loadDictData(forceRefresh = false) {
// 如果已加载且不强制刷新,直接返回
if (this.isLoaded && !forceRefresh) {
return Promise.resolve(this.dictList)
return Promise.resolve(this.dictList)
}
try {