wanshenmean
15 小时以前 fcf0f53de620c6f3c6218e59dbdeff01fda4eb3b
Code/WMS/WIDESEA_WMSClient/src/extension/stock/stockInfo.jsx
@@ -3,9 +3,9 @@
let extension = {
  components: {
    //查询界面扩展组件
    gridHeader: "",
    gridBody: "",
    gridFooter: "",
    gridHeader: '',
    gridBody: '',
    gridFooter: '',
    //新建、编辑弹出框扩展组件
    modelHeader: "",
    modelBody: "",
@@ -25,30 +25,24 @@
        render: (h, { row, column, index }) => {
          return (
            <div>
              <el-button
                type="primary"
                size="small"
                onClick={($e) => {
                  this.handleInbound(row);
                }}
              >
                进站
              </el-button>
                onClick={($e) => { this.handleInbound(row); }}
              >进站</el-button>
              <el-button
                type="success"
                size="small"
                style="margin-left: 8px"
                onClick={($e) => {
                  this.handleOutbound(row);
                }}
              >
                出站
              </el-button>
                onClick={($e) => { this.handleOutbound(row); }}
              >出站</el-button>
            </div>
          );
        },
      });
    },
    // 托盘进站操作
    async handleInbound(row) {
@@ -120,6 +114,7 @@
      }
    },
    onInited() {
      // 框架初始化配置后
    },