noStartTaskDetail.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <view class="djTaskDetail">
  3. <uni-card>
  4. <!-- 代煎作业质控标题 -->
  5. <uni-section title="代煎作业质控" type="line" class="djTaskDetail_title">
  6. <template v-slot:right>
  7. <view class="right_title">不合格数<view class="right_text">0</view></view>
  8. </template>
  9. </uni-section>
  10. <!-- 代煎数 -->
  11. <view class="djNum">
  12. <view class="djNum_title">代煎7贴:<view class="djNum_text">0/10</view></view>
  13. <view class="djNum_title">代煎14贴:<view class="djNum_text">0/10</view></view>
  14. </view>
  15. </uni-card>
  16. </view>
  17. <view class="icon" style="display: flex;flex-direction: column;">
  18. <image src="/static///noDate.png"
  19. style="margin: 0 auto;height: 150px;width:250px;margin-top: 90px;"></image>
  20. <text style="margin: 0 auto;color: rgba(102, 102, 102, 1);">
  21. 暂无数据
  22. </text>
  23. </view>
  24. </template>
  25. <script setup>
  26. import { reactive } from "vue";
  27. const pageData=reactive({
  28. djTaskList:[
  29. {
  30. cfbh:'111111',
  31. ts:'1',
  32. jcx:'1',
  33. bhgx:'1'
  34. },
  35. {
  36. cfbh:'222222',
  37. ts:'2',
  38. jcx:'2',
  39. bhgx:'2'
  40. }
  41. ]
  42. })
  43. // 跳转详情界面
  44. const toDetail=(e)=>{
  45. console.log(e)
  46. uni.navigateTo({
  47. url:"/pages/ypczk/zkTask/djTask?status=get"
  48. })
  49. }
  50. </script>
  51. <style lang="scss" scoped>
  52. @import './index.scss'
  53. </style>