新框架PDA前端(祈禧6月初版本)
南骏 池
3 天以前 3ff569f00d22919e47cab8fb6d7d9867fd115d97
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<%@ Page Title="" Language="C#" MasterPageFile="~/Mst.master" AutoEventWireup="true" %>
 
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
        <style>
            .bg-info {
                background-color: #fff;
            }
            .custom-title {
                margin-right: 4px;
                vertical-align: middle;
            }
        </style>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder2" Runat="Server">
        <van-nav-bar
          title="检验详情"
          left-text="返回"
          left-arrow
          @click-left="GoBack1()"
        ></van-nav-bar>
        <div>
            <van-cell-group>
              <van-field label="项目名称" colon="true" v-model="formData.fcheckItem" readonly ></van-field>
              <van-field label="规格要求" colon="true" v-model="formData.fspecRequ" readonly ></van-field>
              <van-field label="检验方法" colon="true" v-model="formData.inspectionMethod" readonly ></van-field>
              <van-field label="检验工具" colon="true" v-model="formData.fcheckTool" readonly ></van-field>
              <van-field label="检验数" colon="true" v-model="formData.checkQyt" readonly ></van-field>
              <van-field label="检验标准编码" colon="true" v-model="formData.sampleSizeNo" readonly ></van-field>
              <van-field label="检验水平" colon="true" v-model="formData.fcheckLevel" readonly ></van-field>
              <van-field label="接收水平" colon="true" v-model="formData.facLevel" readonly ></van-field>
              <van-field label="下限" colon="true" v-model="formData.fdownAllow" readonly ></van-field>
              <van-field label="标准值" colon="true" v-model="formData.fstand" readonly ></van-field>
              <van-field label="上限" colon="true" v-model="formData.fupAllow" readonly ></van-field>
              <van-field label="AC数" colon="true" v-model="formData.facQty" readonly ></van-field>
              <van-field label="RE数" colon="true" v-model="formData.freQty" readonly ></van-field>
              <van-field label="不合格数" colon="true" v-model="formData.fngQty" readonly ></van-field>
              <van-field label="预览结果" colon="true" v-model="formData.result" readonly ></van-field>
              <van-field label="不合格描述" colon="true" v-model="formData.remarks" readonly ></van-field>
              <van-field label="检测结果" colon="true" v-model="formData.fcheckResu" placeholder="没有最大值和最小值时填写0(未通过检验)或1(通过检验)" ></van-field>
              <van-button type="info" v-if="tableData.length < formData.checkQyt" @click="submit">保存</van-button>
            </van-cell-group>
        </div>
          <van-tabs color="#000" title-active-color="#0283EF" style="padding-bottom: 120px;">
              <van-tab title="检验结果" class="mySolid font">
                  <van-row type="flex" justify="center">
                       <van-col span="2">编号</van-col>
                      <van-col span="6">判定标识</van-col>
                      <van-col span="8">检验结果</van-col>
                      <van-col span="8">修改</van-col>
                  </van-row>
                  <van-row  v-for="(item,index) in tableData" :key="index"  type="flex" justify="center">
                        <van-col span="2" center class="text-left padding-left">
                             {{index + 1}}
                        </van-col>
                       <van-col span="6" center class="text-left padding-left">
                           <van-cell center
                            center :title="item.fstand"></van-cell>
                      </van-col>
                      <van-col center span="8">
                          <van-cell center
                            center :title="item.fcheckResu"></van-cell>
                      </van-col>
                      <van-col span="8">
                           <van-button type="danger" v-if="isNumber" @click="toDetail(item)" :disabled="fsubmit == 1">修改</van-button>
                           <van-button type="danger" v-if="!isNumber" @click="numberEdit(item)" :disabled="fsubmit == 1">{{editResult(item.fcheckResu)}}</van-button>
                      </van-col>
                </van-row>
              </van-tab>
           </van-tabs>
 
            <van-popup
                  v-model="showPopup"
                  closeable
                  position="bottom"
                  style=" height: 40% ">
                <van-field label="检验结果" colon="true" v-model="editData.fcheckResu" ></van-field>
                <van-button type="danger" @click="eidt">修改</van-button>
            </van-popup>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder3" Runat="Server">
    <comloading  v-if="isLoading"></comloading>
  <%--<comback ></comback>--%>
</asp:Content>
<asp:Content ID="Content4" ContentPlaceHolderID="ContentPlaceHolder4" Runat="Server">
 <script src="../Js/LLJ/detail.js?<%=114 %>"></script>
</asp:Content>