vue 弹窗 模板

html 复制代码
<template>
    <el-dialog
      title="选择批号"
      :visible.sync="showFlag"
      width="800px"
      append-to-body
      :destroy-on-close="true"
      @open="handleOpen"
    >
      <el-form :model="queryParams" ref="queryForm" :inline="true">
        <el-form-item label="规格" prop="specs">
          <el-input v-model="queryParams.specs" placeholder="请输入规格" clearable size="small"/>
        </el-form-item>
    
        <el-form-item label="品名" prop="itemInfo_ItemName">
          <el-input v-model="queryParams.itemInfo_ItemName" placeholder="请输入料品名称" clearable size="small"/>
        </el-form-item>
        <el-form-item>
          <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
          <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
        </el-form-item>
      </el-form>
  
      <el-table 
        v-loading="loading" 
        :data="binList" 
        @selection-change="handleSelectionChange"
        @row-dblclick="handleRowDbClick">
        <el-table-column type="selection" width="55" />
        <el-table-column label="行号" align="center" prop="docLineNo" />
        <el-table-column label="品名" align="center" prop="itemInfo_ItemName" />
        <el-table-column label="规格" align="center" prop="specs" />
        <el-table-column label="可退货数量" align="center" prop="applyQtyTU1" />
        <el-table-column label="批号" align="center" prop="lotInfo_LotCode" />
        <el-table-column label="番号" align="center" prop="seiBanCode" />
      </el-table>
  
      <pagination
        v-show="total>0"
        :total="total"
        :page.sync="queryParams.pageNum"
        :limit.sync="queryParams.pageSize"
        @pagination="getList"
      />
  
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="confirmSelect">确 定</el-button>
        <el-button @click="cancel">取 消</el-button>
      </div>
    </el-dialog>
  </template>
  
  <script>

  import {   getListReturnDataByReceipt3 } from "@/api/mes/xs/salesreturnreceipt";



  export default {
    name: "BinSelect",
    data() {
      return {
        docLineRemainingQty: new Map(),
        showFlag: false,
        loading: false,
        selectedRows: [],
        total: 0,
        binList: [],
        queryParams: {
          pageNum: 1,
          pageSize: 10,
          docNo:null,
          itemInfo_ItemName: null, //料品名称
          specs:null, //规格
          // applyQtyTU1:null, //可退货数量
          // lotInfo_LotCode:null, //批号
          // seiBanCode:null, //番号
        }
      };
    },
    methods: {
      handleOpen() {
        console.log('Dialog opened, showFlag:', this.showFlag);
      },
      getList() {
        this.loading = true;
      
        getListReturnDataByReceipt3(this.queryParams).then(response => {
          this.binList = response.rows;
          this.binList.forEach(item => {
            const remainingQty = this.docLineRemainingQty.get(item.itemInfo_ItemCode) || 0;
            item.applyQtyTU1 = remainingQty; // Assign the remaining quantity to the item
          });
          console.log(this.binList);
          this.total = response.total;
          this.loading = false;
        });
      },
      handleQuery() {
        this.queryParams.pageNum = 1;
        this.getList();
      },
      resetQuery() {
        this.resetForm("queryForm");
        this.handleQuery();
      },
      handleSelectionChange(selection) {
        this.selectedRows = selection;
      },
      handleRowDbClick(row) {
        if (this.$refs.table) {
            this.$refs.table.toggleRowSelection(row);
        } else {
            console.error("表格引用未定义");
        }
      },
      confirmSelect() {
        if (this.selectedRows.length > 0) {
          this.$emit('onSelected', this.selectedRows);
          this.cancel();
        } else {
          this.$message.warning('请至少选择一条数据');
        }
      },
      cancel() {
        this.showFlag = false;
        this.selectedRows = [];
      }
    }
  };
  </script>
    
html 复制代码
      <el-col :span="1.5">
            <el-button 
                type="primary" 
                icon="el-icon-plus" 
                size="mini" 
                @click="handleQueryReturnDataByReceipt"
                :disabled="!form.returnOrderId"
                v-hasPermi="['mes/xs:salesreturnreceipt:add']"
            >配件选择</el-button>
          </el-col>
          <ReturnDataByReceipt ref="ReturnDataByReceipt" @onSelected="onReturnDataByReceiptSelected" :size="'large'"></ReturnDataByReceipt>
         
          <el-col :span="1.5">

效果

html 复制代码
 onReturnDataByReceiptSelected(selected){}
     
相关推荐
午安~婉2 小时前
Electron桌面应用聊天(续)
前端·javascript·electron
哟哟耶耶3 小时前
vue3-单文件组件css功能(:deep,:slotted,:global,useCssModule,v-bind)
前端·javascript·css
是罐装可乐3 小时前
深入理解“句柄(Handle)“:从浏览器安全到文件系统访问
前端·javascript·安全
华科易迅4 小时前
Vue如何集成封装Axios
前端·javascript·vue.js
不是az4 小时前
CSS知识点记录
前端·javascript·css
昵称暂无14 小时前
.NET 高级开发 | i18n 原理、实现一个 i18n 框架
javascript·c#·.net
h_jQuery5 小时前
vue使用gm-crypto对数据进行sm4加密处理
前端·javascript·vue.js
阿赛工作室5 小时前
Vue中onBeforeUnmount不触发的解决方案
前端·javascript·vue.js
浩星6 小时前
electron系列1:Electron不是玩具,为什么桌面应用需要它?
前端·javascript·electron
_院长大人_6 小时前
Vue + ECharts 实现价格趋势分析图
前端·vue.js·echarts