初始化

master
法外狂徒张三 2024-09-03 16:49:55 +08:00
parent c4fb628d38
commit 5cd630aa03
1 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<el-table v-loading="loading" :data="datawarehouseList" @selection-change="handleSelectionChange"> <el-table :data="datawarehouseList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" /> <el-table-column type="selection" width="55" align="center" />
<el-table-column label="订单id" align="center" prop="orderId" /> <el-table-column label="订单id" align="center" prop="orderId" />
<el-table-column label="订单编号" align="center" prop="orderBian" /> <el-table-column label="订单编号" align="center" prop="orderBian" />
@ -71,7 +71,6 @@ export default {
methods: { methods: {
/** 查询订单详情列表 */ /** 查询订单详情列表 */
getList() { getList() {
this.loading = true;
getDatawarehouse().then(response=>{ getDatawarehouse().then(response=>{
this.datawarehouseList = response.data; this.datawarehouseList = response.data;
}) })