| | |
| | | <el-col :span="6"> |
| | | <el-form-item label="过滤"> |
| | | <el-select v-model="query.ColName" style="width:190px"> |
| | | <el-option value="0" label=""></el-option> |
| | | <!-- <el-option value="0" label=""></el-option> --> |
| | | <el-option v-for="col in filterColumns" :key="col.field" :value="col.field" :label="col.title" /> |
| | | </el-select> |
| | | </el-form-item> |
| | |
| | | <el-col :span="6"> |
| | | <el-form-item label="过滤1"> |
| | | <el-select v-model="query.ColName1" style="width:190px"> |
| | | <el-option value="0" label=""></el-option> |
| | | <!-- <el-option value="0" label=""></el-option> --> |
| | | <el-option v-for="col in filterColumns" :key="col.field" :value="col.field" :label="col.title" /> |
| | | </el-select> |
| | | </el-form-item> |
| | |
| | | <el-col :span="6"> |
| | | <el-form-item label="过滤2"> |
| | | <el-select v-model="query.ColName2" style="width:190px"> |
| | | <el-option value="0" label=""></el-option> |
| | | <!-- <el-option value="0" label=""></el-option> --> |
| | | <el-option v-for="col in filterColumns" :key="col.field" :value="col.field" :label="col.title" /> |
| | | </el-select> |
| | | </el-form-item> |
| | |
| | | HSourceBillNo: '', |
| | | Warehouse: '', |
| | | Hmaker: '', |
| | | ColName: '0', |
| | | Comparator: '0', |
| | | ColName: '', |
| | | Comparator: '', |
| | | ColContent: '', |
| | | ColName1: '0', |
| | | Comparator1: '0', |
| | | ColName1: '', |
| | | Comparator1: '', |
| | | ColContent1: '', |
| | | ColName2: '0', |
| | | Comparator2: '0', |
| | | ColName2: '', |
| | | Comparator2: '', |
| | | ColContent2: '' |
| | | }, |
| | | timeCycles: [ |
| | |
| | | this.selectedRows = selection; |
| | | }, |
| | | onBillNoClick(row) { |
| | | const id = row.hmainid || row.HInterID; |
| | | window.open('./Fb_StepFoldinBillEdit.html?OperationType=3&linterid=' + id, '_blank'); |
| | | const table = this.$refs.mainTable; |
| | | if (table) { |
| | | try { |
| | | table.clearSelection(); |
| | | table.toggleRowSelection(row, true); |
| | | } catch (e) { |
| | | if (table.setCurrentRow) table.setCurrentRow(row); |
| | | } |
| | | } |
| | | this.selectedRows = [row]; |
| | | this.operationType = '3'; |
| | | this.currentId = row.hmainid || row.HInterID || row.HItemID || ''; |
| | | this.editDialogVisible = true; |
| | | }, |
| | | get_BarCodeDetail() { |
| | | if (this.selectedRows.length !== 1) { |