|
|
@@ -199,6 +199,24 @@
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col v-bind="styleResponsive ? { lg: 6, md: 12 } : { span: 6 }">
|
|
|
+ <el-form-item label="对账状态:" prop="isReconciliation">
|
|
|
+ <el-select
|
|
|
+ filterable
|
|
|
+ placeholder="请选择"
|
|
|
+ v-model="where.isReconciliation"
|
|
|
+ clearable
|
|
|
+ class="w100"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in isReconciliationOp"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<el-col v-bind="styleResponsive ? { lg: 18, md: 12 } : { span: 18 }">
|
|
|
<div class="ele-form-actions">
|
|
|
<el-button
|
|
|
@@ -241,7 +259,8 @@
|
|
|
categoryName: '',
|
|
|
categoryCode: '',
|
|
|
targetWarehouse: '',
|
|
|
- sourceWarehouse: ''
|
|
|
+ sourceWarehouse: '',
|
|
|
+ isReconciliation: ''
|
|
|
};
|
|
|
return {
|
|
|
// 表单数据
|
|
|
@@ -265,7 +284,11 @@
|
|
|
value: 2,
|
|
|
label: '已完成'
|
|
|
}
|
|
|
- ]
|
|
|
+ ],
|
|
|
+ isReconciliationOp: [
|
|
|
+ { value: 0, label: '未对账' },
|
|
|
+ { value: 1, label: '已对账' },
|
|
|
+ ],
|
|
|
};
|
|
|
},
|
|
|
computed: {
|