feat:样品分析

This commit is contained in:
houjunxiang
2025-10-14 18:16:51 +08:00
parent b5aed8573a
commit 5916b8c833
14 changed files with 574 additions and 671 deletions

View File

@@ -11,7 +11,7 @@
<view class="mt3 mb3">{{ task.taskName }}{{ task.assayOper }}</view>
<view class="x-f">
<u-icon name="clock"></u-icon>
<text class="ml5">{{ task.taskOperTime }}</text>
<text class="ml5">{{ taskOperatorTime }}</text>
</view>
</u-col>
</u-row>
@@ -19,7 +19,7 @@
</template>
<script setup>
import { computed } from 'vue'
import nx from '@/nx'
const props = defineProps({
task: {
@@ -36,6 +36,7 @@ const props = defineProps({
}
})
const taskOperatorTime = nx.$dayjs(props.task.taskOperatorTime).format('YYYY-MM-DD HH:mm:ss')
const emit = defineEmits(['click'])
const handleClick = () => {