gaoluyang
5 天以前 a0111e18d44d0c78e5479f6dfba7b80c29fd0ebf
湟水峡
1.入库管理、出库台账添加产品大类和规格型号查询条件
已修改2个文件
35 ■■■■■ 文件已修改
src/views/inventoryManagement/dispatchLog/Record.vue 19 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/inventoryManagement/receiptManagement/Record.vue 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/inventoryManagement/dispatchLog/Record.vue
@@ -12,6 +12,16 @@
                    clearable
                    @change="handleQuery"
                />
        <span class="search_title ml10">产品大类:</span>
        <el-input v-model="searchForm.productName"
                  style="width: 240px"
                  placeholder="请输入"
                  clearable/>
        <span class="search_title ml10">规格型号:</span>
        <el-input v-model="searchForm.model"
                  style="width: 240px"
                  placeholder="请输入"
                  clearable/>
        <span class="search_title ml10">来源:</span>
        <el-select v-model="searchForm.recordType"
                   style="width: 240px"
@@ -143,6 +153,8 @@
const data = reactive({
    searchForm: {
        supplierName: "",
        productName: "",
        model: "",
        timeStr: "",
    recordType: "",
    }
@@ -541,6 +553,13 @@
</script>
<style scoped lang="scss">
.search_form {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}
.print-preview-dialog {
    .el-dialog__body {
        padding: 0;
src/views/inventoryManagement/receiptManagement/Record.vue
@@ -15,6 +15,11 @@
                  style="width: 240px"
                  placeholder="请输入"
                  clearable/>
        <span class="search_title ml10">规格型号:</span>
        <el-input v-model="searchForm.model"
                  style="width: 240px"
                  placeholder="请输入"
                  clearable/>
        <span class="search_title ml10">来源:</span>
        <el-select v-model="searchForm.recordType"
                  style="width: 240px"
@@ -135,6 +140,7 @@
const data = reactive({
  searchForm: {
    productName: "",
    model: "",
    timeStr: "",
    recordType: "",
  },
@@ -162,6 +168,7 @@
  const params = {...page, topParentProductId: props.productId};
  params.timeStr = searchForm.value.timeStr;
  params.productName = searchForm.value.productName;
  params.model = searchForm.value.model;
  params.recordType = searchForm.value.recordType;
  getStockInRecordListPage(params)
      .then(res => {
@@ -246,7 +253,14 @@
});
</script>
<style scoped lang="scss"></style>
<style scoped lang="scss">
.search_form {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
</style>