审核详情标签贴右边
This commit is contained in:
parent
eb3a3c1a27
commit
05124c2f6e
|
|
@ -852,7 +852,10 @@ const loadOptions = async () => {
|
||||||
label: item.name || item.projectName || '',
|
label: item.name || item.projectName || '',
|
||||||
value: item.id || ''
|
value: item.id || ''
|
||||||
})).filter(item => item.label && item.value);
|
})).filter(item => item.label && item.value);
|
||||||
|
// console.log('projectRes',projectRes);
|
||||||
|
// console.log('projectOptions',projectOptions.value);
|
||||||
projectColumns.value = [projectOptions.value];
|
projectColumns.value = [projectOptions.value];
|
||||||
|
// console.log('projectOptions',[projectOptions.value]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 加载任务类型
|
// 加载任务类型
|
||||||
|
|
|
||||||
|
|
@ -15,12 +15,15 @@
|
||||||
<view class="info-row">
|
<view class="info-row">
|
||||||
<text class="info-label">任务类型</text>
|
<text class="info-label">任务类型</text>
|
||||||
<view class="info-value">
|
<view class="info-value">
|
||||||
<uv-tags
|
|
||||||
|
<uv-tags
|
||||||
:text="getTaskTypeLabel(detailData.task?.type)"
|
:text="getTaskTypeLabel(detailData.task?.type)"
|
||||||
type="success"
|
type="success"
|
||||||
size="mini"
|
size="mini"
|
||||||
:plain="false"
|
:plain="false"
|
||||||
></uv-tags>
|
></uv-tags>
|
||||||
|
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="info-row">
|
<view class="info-row">
|
||||||
|
|
@ -464,7 +467,10 @@ onLoad((options) => {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #333;
|
color: #333;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
text-align: right;
|
display: flex;
|
||||||
|
|
||||||
|
justify-content: flex-end;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-title {
|
.card-title {
|
||||||
|
|
|
||||||
|
|
@ -79,7 +79,7 @@ export const useDictStore = defineStore('dict', {
|
||||||
async loadDictData(forceRefresh = false) {
|
async loadDictData(forceRefresh = false) {
|
||||||
// 如果已加载且不强制刷新,直接返回
|
// 如果已加载且不强制刷新,直接返回
|
||||||
if (this.isLoaded && !forceRefresh) {
|
if (this.isLoaded && !forceRefresh) {
|
||||||
return Promise.resolve(this.dictList)
|
return Promise.resolve(this.dictList)
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user