spring
2 天以前 36ac3e1218aa0c68ead17885c31a5a6a9e07c362
src/views/consumablesLogistics/stockManagement/Qualified.vue
@@ -7,11 +7,16 @@
                  style="width: 240px"
                  placeholder="请输入"
                  clearable/>
        <span class="search_title ml10">规格型号:</span>
        <el-input v-model="searchForm.model"
                  style="width: 240px"
                  placeholder="请输入"
                  clearable/>
        <el-button type="primary" @click="handleQuery" style="margin-left: 10px">搜索</el-button>
      </div>
      <div>
         <el-button type="primary" @click="isShowNewModal = true">新增库存</el-button>
        <el-button type="info" plain icon="Upload" @click="isShowImportModal = true">
         <el-button type="primary" @click="isShowNewModal = true" v-if="hasCDispatchCancel">新增库存</el-button>
        <el-button type="info" plain icon="Upload" @click="isShowImportModal = true" v-if="hasCDispatchCancel">
          导入库存
        </el-button>
        <el-button @click="handleOut">导出</el-button>
@@ -31,10 +36,10 @@
        <!-- <el-table-column label="采购员" prop="purchaser" show-overflow-tooltip /> -->
        <el-table-column label="备注" prop="remark"  show-overflow-tooltip />
        <el-table-column label="最近更新时间" prop="updateTime" show-overflow-tooltip />
        <el-table-column fixed="right" label="操作" min-width="60" align="center">
        <el-table-column fixed="right" label="操作" min-width="60" align="center" v-if="hasCDispatchCancel">
          <template #default="scope">
            <el-button link type="primary" size="small" @click="showSubtractModal(scope.row)" :disabled="scope.row.unLockedQuantity === 0">出库</el-button>
            <el-button link type="primary" size="small" v-if="scope.row.unLockedQuantity > 0" @click="showFrozenModal(scope.row)">冻结</el-button>
            <!-- <el-button link type="primary" size="small" v-if="scope.row.unLockedQuantity > 0" @click="showFrozenModal(scope.row)">冻结</el-button> -->
            <el-button link type="primary" size="small" v-if="scope.row.lockedQuantity > 0" @click="showThawModal(scope.row)">解冻</el-button>
          </template>
        </el-table-column>
@@ -69,9 +74,10 @@
<script setup>
import pagination from '@/components/PIMTable/Pagination.vue'
import { ref, reactive, toRefs, onMounted, getCurrentInstance } from 'vue'
import { ref, reactive, toRefs, computed, onMounted, getCurrentInstance } from 'vue'
import {ElMessage, ElMessageBox} from "element-plus";
import { getConsumablesInListPage } from "@/api/consumablesLogistics/consumablesIn.js";
import { checkPermi } from "@/utils/permission.js";
const NewStockInventory = defineAsyncComponent(() => import("@/views/consumablesLogistics/stockManagement/New.vue"));
const SubtractStockInventory = defineAsyncComponent(() => import("@/views/consumablesLogistics/stockManagement/Subtract.vue"));
const ImportStockInventory = defineAsyncComponent(() => import("@/views/consumablesLogistics/stockManagement/Import.vue"));
@@ -86,6 +92,7 @@
  size: 100,
})
const total = ref(0)
const hasCDispatchCancel = computed(() => checkPermi(['c_dispatch_cancel']));
// 是否显示新增弹框
const isShowNewModal = ref(false)
// 是否显示领用弹框
@@ -99,6 +106,7 @@
const data = reactive({
  searchForm: {
    productName: '',
    model: '',
  }
})
const { searchForm } = toRefs(data)