123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <view class="djTaskDetail">
- <uni-card>
- <!-- 代煎作业质控标题 -->
- <uni-section title="代煎作业质控" type="line" class="djTaskDetail_title">
- <template v-slot:right>
- <view class="right_title">不合格数<view class="right_text">0</view></view>
- </template>
- </uni-section>
- <!-- 代煎数 -->
- <view class="djNum">
- <view class="djNum_title">代煎7贴:<view class="djNum_text">0/10</view></view>
- <view class="djNum_title">代煎14贴:<view class="djNum_text">0/10</view></view>
- </view>
- </uni-card>
- </view>
-
- <view class="icon" style="display: flex;flex-direction: column;">
- <image src="/static///noDate.png"
- style="margin: 0 auto;height: 150px;width:250px;margin-top: 90px;"></image>
- <text style="margin: 0 auto;color: rgba(102, 102, 102, 1);">
- 暂无数据
- </text>
- </view>
- </template>
- <script setup>
- import { reactive } from "vue";
- const pageData=reactive({
- djTaskList:[
- {
- cfbh:'111111',
- ts:'1',
- jcx:'1',
- bhgx:'1'
- },
- {
- cfbh:'222222',
- ts:'2',
- jcx:'2',
- bhgx:'2'
- }
- ]
- })
- // 跳转详情界面
- const toDetail=(e)=>{
- console.log(e)
- uni.navigateTo({
- url:"/pages/ypczk/zkTask/djTask?status=get"
- })
- }
- </script>
- <style lang="scss" scoped>
- @import './index.scss'
- </style>
|