Commit 85782a45 authored by Mac's avatar Mac

1

parent 9d584bbb
......@@ -54,7 +54,7 @@
<q-input filled v-model="msg.OrderId" @keyup.enter.native="getList()" label="订单号" />
</div> -->
<div class="col-3">
<q-btn :loading="loading1" color="primary" size="11px" label="返回" @click="goreturn" style="margin-left:10px"/>
<q-btn  color="primary" size="11px" label="返回" @click="goreturn" style="margin-left:10px"/>
</div>
</div>
</div>
......@@ -62,6 +62,8 @@
<el-table
ref="filterTable"
:data="tableData"
v-loading = 'loading'
:header-cell-style="{backgroundColor:'#f5f6f7', color: '#a8a8b3'}"
border
style="width: 100%">
......@@ -159,6 +161,7 @@
this.loading = true;
getSellCommissionUserList(this.msg).then(res => {
if (res.Code == 1) {
this.loading = false;
this.tableData = res.Data;
this.SchoolNamelist = [];
this.DeptNamelist = [];
......
......@@ -38,7 +38,7 @@
<div class="page-search row items-center">
<div class="col row wrap q-mr-lg q-col-gutter-md">
<div class="col-3">
<q-btn :loading="loading1" color="primary" size="11px" label="返回" @click="goreturn" style="margin-left:10px"/>
<q-btn  color="primary" size="11px" label="返回" @click="goreturn" style="margin-left:10px"/>
</div>
</div>
</div>
......@@ -46,6 +46,8 @@
<el-table
ref="filterTable"
:data="tableData"
v-loading = 'loading'
:header-cell-style="{backgroundColor:'#f5f6f7', color: '#a8a8b3'}"
border
style="width: 100%">
......@@ -176,6 +178,8 @@
this.loading = true;
getSellCommissionForOrderList(this.msg).then(res => {
if (res.Code == 1) {
this.loading = false;
this.tableData = res.Data
this.SchoolNamelist = [];
this.DeptNamelist = [];
......
......@@ -68,6 +68,7 @@
<el-table
ref="filterTable"
:data="tableData"
v-loading = 'loading'
:header-cell-style="{backgroundColor:'#f5f6f7', color: '#a8a8b3'}"
border
style="width: 100%">
......@@ -183,6 +184,8 @@
this.loading = true;
getSellCommissionPeriodsPageList(this.msg).then(res => {
if (res.Code == 1) {
this.loading = false;
this.tableData = res.Data.PageData
this.total = res.Data.Count
}
......
......@@ -37,7 +37,7 @@
<div class="page-body userCommissionDetails">
<div class="page-search row items-center">
<div style="margin-right: 10px;">
<q-btn :loading="loading1" color="primary" size="11px" label="返回" @click="goreturn" style="margin-left:10px"/>
<q-btn color="primary" size="11px" label="返回" @click="goreturn" style="margin-left:10px"/>
</div>
<div class="col row wrap q-mr-lg q-col-gutter-md">
<div class="col-3">
......@@ -62,6 +62,8 @@
<el-table
ref="filterTable"
:data="tableData"
v-loading = 'loading'
:header-cell-style="{backgroundColor:'#f5f6f7', color: '#a8a8b3'}"
border
style="width: 100%">
......@@ -176,6 +178,7 @@
this.loading = true;
getSellCommissionUserDetailList(this.msg).then(res => {
if (res.Code == 1) {
this.loading = false;
this.tableData = res.Data
}
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment