项目排产,甘特图待完善

This commit is contained in:
砂糖
2025-07-16 11:25:16 +08:00
parent 4c0df26d3d
commit da226892fa
11 changed files with 1433 additions and 9 deletions

View File

@@ -14,10 +14,14 @@
<image class="entry-icon" src="/static/images/shigong.png" mode="aspectFit" />
<text class="entry-text">施工进度</text>
</view>
<view class="entry-item" @click="goTask">
<image class="entry-icon" src="/static/images/task.png" mode="aspectFit"></image>
<text class="entry-text">任务中心</text>
</view>
<view class="entry-item" @click="goTask">
<image class="entry-icon" src="/static/images/task.png" mode="aspectFit"></image>
<text class="entry-text">任务中心</text>
</view>
<view class="entry-item" @click="goSchedule">
<image class="entry-icon" src="/static/images/paichan.png" mode="aspectFit"></image>
<text class="entry-text">项目排产</text>
</view>
</view>
</view>
</template>
@@ -59,11 +63,16 @@ export default {
url: '/pages/workbench/construction/construction'
});
},
goTask() {
uni.navigateTo({
url: '/pages/workbench/task/task'
})
}
goTask() {
uni.navigateTo({
url: '/pages/workbench/task/task'
})
},
goSchedule() {
uni.navigateTo({
url: '/pages/workbench/reportSchedule/reportSchedule'
})
}
},
};
</script>