Browse Source

增加字段“垛位备注”

YL2767 2 months ago
parent
commit
1c345b5a0a
2 changed files with 17 additions and 4 deletions
  1. 4
    0
      src/view/ware/store.vue
  2. 13
    4
      src/view/ware/storechange.vue

+ 4
- 0
src/view/ware/store.vue View File

65
 					</el-table-column>
65
 					</el-table-column>
66
 					<el-table-column prop="productionPlace" label="产地" width="250" show-overflow-tooltip header-align="center">
66
 					<el-table-column prop="productionPlace" label="产地" width="250" show-overflow-tooltip header-align="center">
67
 					</el-table-column>
67
 					</el-table-column>
68
+					<el-table-column prop="remark1" label="垛位备注" width="250" show-overflow-tooltip header-align="center">
69
+					</el-table-column>
68
 					<el-table-column prop="tallyPeople" label="吊装工" width="250" show-overflow-tooltip header-align="center">
70
 					<el-table-column prop="tallyPeople" label="吊装工" width="250" show-overflow-tooltip header-align="center">
69
 				    </el-table-column>
71
 				    </el-table-column>
70
 					<el-table-column prop="remark" label="备注" width="150" show-overflow-tooltip header-align="center">
72
 					<el-table-column prop="remark" label="备注" width="150" show-overflow-tooltip header-align="center">
178
 				</el-table-column>
180
 				</el-table-column>
179
 				<el-table-column prop="合约号" label="合约号" width="100" show-overflow-tooltip header-align="center">
181
 				<el-table-column prop="合约号" label="合约号" width="100" show-overflow-tooltip header-align="center">
180
 				</el-table-column>
182
 				</el-table-column>
183
+				<el-table-column prop="垛位备注" label="垛位备注" width="100" show-overflow-tooltip header-align="center">
184
+				</el-table-column>
181
 			</el-table>
185
 			</el-table>
182
 
186
 
183
 		</el-dialog>
187
 		</el-dialog>

+ 13
- 4
src/view/ware/storechange.vue View File

47
 						<el-input v-model="query.ordNo" size="small" style="width:120px;margin-left: -8px" @input="getOrdList">
47
 						<el-input v-model="query.ordNo" size="small" style="width:120px;margin-left: -8px" @input="getOrdList">
48
 						</el-input>
48
 						</el-input>
49
 					</el-form-item>
49
 					</el-form-item>
50
+
51
+					<el-form-item label="垛位备注" style="margin-left: -15px">
52
+						<el-input v-model="query.remark1" size="small" style="width:120px;margin-left: -8px">
53
+						</el-input>
54
+					</el-form-item>
50
 					<el-form-item label="" style="margin-top: 0px;margin-left: 10px">
55
 					<el-form-item label="" style="margin-top: 0px;margin-left: 10px">
51
 						<el-button @click="handleSearch" size="small"  type="primary">查询</el-button>
56
 						<el-button @click="handleSearch" size="small"  type="primary">查询</el-button>
52
 						<el-button @click="showChangeCustomer" size="small"  type="primary">货权转移</el-button>
57
 						<el-button @click="showChangeCustomer" size="small"  type="primary">货权转移</el-button>
101
 				</el-table-column>
106
 				</el-table-column>
102
 				<el-table-column prop="remark" label="备注" width="150" show-overflow-tooltip header-align="center">
107
 				<el-table-column prop="remark" label="备注" width="150" show-overflow-tooltip header-align="center">
103
 				</el-table-column>
108
 				</el-table-column>
109
+				<el-table-column prop="remark1" label="垛位备注" width="200" show-overflow-tooltip header-align="center">
110
+				</el-table-column>
104
 				<el-table-column prop="addTime" label="入库时间" width="200" show-overflow-tooltip header-align="center">
111
 				<el-table-column prop="addTime" label="入库时间" width="200" show-overflow-tooltip header-align="center">
105
 				</el-table-column>
112
 				</el-table-column>
106
 			</el-table>
113
 			</el-table>
225
 					materialName: '',
232
 					materialName: '',
226
 					standard: '',
233
 					standard: '',
227
 					customerName: '',
234
 					customerName: '',
228
-					plateNo: '',
235
+					plateNo: [],
229
 					wareId:'',
236
 					wareId:'',
230
-					ordNo:'',
237
+					ordNo:[],
231
 					fkcustmerName:'',
238
 					fkcustmerName:'',
239
+					remark1:''
232
 				},
240
 				},
233
 				multipleSelection: [],
241
 				multipleSelection: [],
234
 				tableData: [],
242
 				tableData: [],
425
 					materialName: this.query.materialName,
433
 					materialName: this.query.materialName,
426
 					standard: this.query.standard,
434
 					standard: this.query.standard,
427
 					customerName: this.query.customerName,
435
 					customerName: this.query.customerName,
428
-					plateNo: this.query.plateNo == "" ? this.query.plateNo : this.query.plateNo.join(','),
429
-					ordNo: this.query.ordNo == "" ? this.query.ordNo : this.query.ordNo.join(',')
436
+					plateNo: this.query.plateNo.length == 0 ? '' : this.query.plateNo.join(','),
437
+					ordNo: this.query.ordNo == 0 ? '' : this.query.ordNo.join(','),
438
+					remark1: this.query.remark1
430
 				}
439
 				}
431
 				console.log(param);
440
 				console.log(param);
432
 				axios.get(url, param).then(response => {
441
 				axios.get(url, param).then(response => {

Loading…
Cancel
Save