clll
2023-12-15 68e28b5e14ba2de103921aa1ab10f6df7b445ae9
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<script setup>
import {reactive, ref} from 'vue'
import {ElTable} from "element-plus"
 
 
 
 
const form = reactive({
  lckh:'',
  xsdh:'',
})
 
 
const tableData = [
  {
    reportingWorkTime:'2021-01-01',
    salesOrderNo:'NG23010101',
    processCardNo:'NG23010101A01',
    entryName:'xxxx',
    productName:"xxxxxxxxx",
    reportingWorkNo:"BG2301010001",
    floorNumber:"D4-010-01",
    area:'23.11',
    reportingProcess:'钢化',
    qualityInspector:"张三",
    serialNumber:'1',
    singlePieceName: '6mm白玻平钢(外)',
    marking: '1',
    pieces: '(外)',
    processCardNumber: '11',
    width: '575',
    height:"2241",
    shape: '普形',
    upCompletedQuantity: '12',
    completedQuantity: '1',
    numberBroken:'2',
    reasonType: '机器',
    reasonDamage:'气泡超标',
    responsibilityProcess:'中空',
    responsibilityTeams:'中空一班',
    responsibilityPersonnel:'',
    responsibilityDevice:'中空3#线',
  },
  {
    reportingWorkTime:'2021-01-01',
    salesOrderNo:'NG23010101',
    processCardNo:'NG23010101A01',
    entryName:'xxxx',
    productName:"xxxxxxxxx",
    reportingWorkNo:"BG2301010001",
    floorNumber:"D4-010-01",
    area:'23.11',
    reportingProcess:'钢化',
    qualityInspector:"张三",
    serialNumber:'1',
    singlePieceName: '6mm白玻平钢(外)',
    marking: '1',
    pieces: '(外)',
    processCardNumber: '11',
    width: '575',
    height:"2241",
    shape: '普形',
    upCompletedQuantity: '12',
    completedQuantity: '1',
    numberBroken:'2',
    reasonType: '机器',
    reasonDamage:'气泡超标',
    responsibilityProcess:'中空',
    responsibilityTeams:'中空一班',
    responsibilityPersonnel:'',
    responsibilityDevice:'中空3#线',
  },
  {
    reportingWorkTime:'2021-01-01',
    salesOrderNo:'NG23010101',
    processCardNo:'NG23010101A01',
    entryName:'xxxx',
    productName:"xxxxxxxxx",
    reportingWorkNo:"BG2301010001",
    floorNumber:"D4-010-01",
    area:'23.11',
    reportingProcess:'钢化',
    qualityInspector:"张三",
    serialNumber:'1',
    singlePieceName: '6mm白玻平钢(外)',
    marking: '1',
    pieces: '(外)',
    processCardNumber: '11',
    width: '575',
    height:"2241",
    shape: '普形',
    upCompletedQuantity: '12',
    completedQuantity: '1',
    numberBroken:'2',
    reasonType: '机器',
    reasonDamage:'气泡超标',
    responsibilityProcess:'中空',
    responsibilityTeams:'中空一班',
    responsibilityPersonnel:'',
    responsibilityDevice:'中空3#线',
  },
  {
    reportingWorkTime:'2021-01-01',
    salesOrderNo:'NG23010101',
    processCardNo:'NG23010101A01',
    entryName:'xxxx',
    productName:"xxxxxxxxx",
    reportingWorkNo:"BG2301010001",
    floorNumber:"D4-010-01",
    area:'23.11',
    reportingProcess:'钢化',
    qualityInspector:"张三",
    serialNumber:'1',
    singlePieceName: '6mm白玻平钢(外)',
    marking: '1',
    pieces: '(外)',
    processCardNumber: '11',
    width: '575',
    height:"2241",
    shape: '普形',
    upCompletedQuantity: '12',
    completedQuantity: '1',
    numberBroken:'2',
    reasonType: '机器',
    reasonDamage:'气泡超标',
    responsibilityProcess:'中空',
    responsibilityTeams:'中空一班',
    responsibilityPersonnel:'',
    responsibilityDevice:'中空3#线',
  },
]
</script>
 
<template>
  <div>
<!--    <div id="head" style="width: 900px;">-->
<!--      <el-input placeholder="流程卡号" v-model="form.xsdh" style="width: 200px"/>-->
<!--      &nbsp;-->
 
<!--      <el-input placeholder="项目名称" v-model="form.lckh" style="width: 200px"/>-->
<!--      &nbsp;-->
<!--      <el-button type="primary">查询</el-button>-->
 
<!--    </div>-->
 
    <div>
      <el-button class="btn_bc" type="primary">保存</el-button>
      <el-table
 
          :data="tableData"
          style="width: 100%"
 
      >
        <el-table-column type="selection" width="55" />
        <el-table-column prop="reportingWorkTime" label="报工时间" width="155" >
 
        </el-table-column>
        <el-table-column sortable prop="salesOrderNo" label="销售单号" width="120" />
        <el-table-column sortable prop="processCardNo" label="流程卡号" width="130" />
        <el-table-column prop="entryName" label="项目名称" width="120" :show-overflow-tooltip='true'/>
        <el-table-column prop="productName" label="产品名称" width="120" :show-overflow-tooltip='true'/>
        <el-table-column sortable prop="reportingWorkNo" label="报工编号" width="120"/> >
        <el-table-column  prop="serialNumber" label="序号" width="60" />
        <el-table-column prop="singlePieceName" :show-overflow-tooltip='true' label="单片名称" width="120" />
        <el-table-column prop="floorNumber" label="楼层编号" width="120" />
        <el-table-column prop="marking" label="标记" width="60" />
        <el-table-column prop="pieces" label="片标记" width="70" />
        <el-table-column prop="processCardNumber" label="流程卡数量" width="95" />
        <el-table-column prop="width" label="宽" width="60" />
        <el-table-column prop="height" label="高" width="60" />
        <el-table-column prop="area" label="面积" width="65" />
        <el-table-column prop="shape" label="形状" :show-overflow-tooltip='true' width="60" />
        <el-table-column prop="numberBroken" label="次破数量" width="85" />
        <el-table-column prop="reasonType" label="次破类型" :show-overflow-tooltip='true' width="85" />
        <el-table-column prop="reasonDamage" label="次破原因" :show-overflow-tooltip='true' width="85" />
        <el-table-column prop="responsibilityDevice" label="责任设备" :show-overflow-tooltip='true' width="85" />
        <el-table-column prop="reportingProcess" label="报工工序" :show-overflow-tooltip='true' width="85" />
        <el-table-column prop="responsibilityProcess" label="责任工序" :show-overflow-tooltip='true' width="85" />
        <el-table-column prop="responsibilityTeams" label="责任班组" :show-overflow-tooltip='true' width="85" />
        <el-table-column prop="responsibilityPersonnel" label="责任人员" :show-overflow-tooltip='true' width="85" />
        <el-table-column prop="qualityInspector" label="质检员" width="80" />
 
 
 
 
 
      </el-table><!-- <h1>{{msg}}</h1> -->
    </div>
  </div>
</template>
 
<style scoped>
 
 
.processCard{
  width: 140px;
}
.processesSt{
  height: 33px;
  width: 80px;
  background-color: #409eff;
  color: white;
  border: none;
  border-radius: 5px;
}
#titleTable tr,#titleTable td{
  border: 1px solid #000;
}
#titleTable{
  border-collapse: collapse;
  text-align: center;
  width: 100%;
  height: 100%;
}
#titleTable td{
  width: 100px;
  height: 30px;
}
#titleTable td:nth-child(1){
  width: 100px;
  height: 30px;
}
#titleTable td:nth-child(2){
  width: 100px;
}
.chaxun{
  background-color:#D5EAFF;
  border: none;
}
 
.btn_bc{
  float: right;
}
</style>