e8db9d37e2ef39e75bb49288e9e2c091df6b01d2..a78db39695a48b7a9b0b2f8a37a0c9cd32bfb6b4
2025-09-01 maven
yys
a78db3 对比 | 目录
2025-09-01 maven
Merge remote-tracking branch 'origin/dev_huangjin' into dev_huangjin
d592b1 对比 | 目录
2025-09-01 maven
yys 出库台账新增编号
a6fcac 对比 | 目录
2025-09-01 spring
打包优化
5351d8 对比 | 目录
已修改2个文件
26 ■■■■ 文件已修改
src/views/inventoryManagement/index.vue 24 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/inventoryManagement/issueManagement/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/inventoryManagement/index.vue
@@ -127,18 +127,18 @@
            <pagination :total="total" layout="total, sizes, prev, pager, next, jumper"
                                    :page="page.current" :limit="page.size" @pagination="paginationChange" />
        </div>
        <Modal ref="modalRef" @success="handleQuery"></Modal>
        <files-dia ref="filesDia"></files-dia>
        <!-- <Modal ref="modalRef" @success="handleQuery"></Modal> -->
        <!-- <files-dia ref="filesDia"></files-dia> -->
    </div>
</template>
<script setup>
import { ref, onMounted, reactive, toRefs, nextTick, getCurrentInstance } from 'vue'
import dayjs from "dayjs";
import Modal from "./Modal.vue";
import FilesDia from "./filesDia.vue";
// import Modal from "./Modal.vue";
// import FilesDia from "./filesDia.vue";
import Pagination from "@/components/Pagination/index.vue";
import {lavorIssueListPage, deleteLedger, update} from "@/api/lavorissce/ledger.js";
import {listPage, deleteLedger, update} from "@/api/lavorissce/ledger.js";
import {ElMessageBox, ElMessage} from "element-plus";
const { proxy } = getCurrentInstance();
import { getCurrentMonth } from "@/utils/util"
@@ -162,7 +162,7 @@
const { searchForm } = toRefs(data);
const modalRef = ref();
const filesDia = ref();
// const filesDia = ref();
const multipleList = ref([]);
const jidu = ref([
    {
@@ -192,7 +192,7 @@
const getList = async () => {
    tableLoading.value = true;
    const params = { ...searchForm.value, ...page.value };
    lavorIssueListPage(params).then(res => {
    listPage(params).then(res => {
        tableLoading.value = false;
        tableData.value = res.data.records;
        total.value = res.data.total;
@@ -256,11 +256,11 @@
    })
}
// 打开附件弹框
const openFilesFormDia = (row) => {
    nextTick(() => {
        filesDia.value?.openDialog( row,'收入')
    })
};
// const openFilesFormDia = (row) => {
//     nextTick(() => {
//         filesDia.value?.openDialog( row,'收入')
//     })
// };
// 事件处理函数
const handleSelectionChange = (selection) => {
    multipleList.value = selection;
src/views/inventoryManagement/issueManagement/index.vue
@@ -196,7 +196,7 @@
// 提交表单
const submitForm = () => {
  let num = Number(form.value.inboundQuantity)
  if(num < 1 || num > currentRowNum.value){
  if(num <= 0 || num > currentRowNum.value){
    return proxy.$modal.msgWarning("请填入有效数字")
  }
  proxy.$refs["formRef"].validate(valid => {