|
|
|
@ -37,14 +37,14 @@
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="4" v-for="(bazi,key) in list" :key="key" class="text-center">
|
|
|
|
|
<el-col :span="6" v-for="(bazi,key) in list" :key="key" class="text-center">
|
|
|
|
|
<BaziPanel :info="bazi" @baziPanel="getValue"></BaziPanel>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<pagination style="height: 20px"
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page-sizes=[24,48,96]
|
|
|
|
|
:page-sizes=[12,24,36]
|
|
|
|
|
:page.sync="filterQuery.page"
|
|
|
|
|
:limit.sync="filterQuery.limit"
|
|
|
|
|
@pagination="getList"
|
|
|
|
@ -185,7 +185,7 @@ export default {
|
|
|
|
|
orderId: null,
|
|
|
|
|
code: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 24
|
|
|
|
|
limit: 12
|
|
|
|
|
},
|
|
|
|
|
total: 0,
|
|
|
|
|
list: [],
|
|
|
|
@ -193,7 +193,7 @@ export default {
|
|
|
|
|
filterQuery: {
|
|
|
|
|
name: '',
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 24
|
|
|
|
|
limit: 12
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
sickerAdNum:null,
|
|
|
|
@ -250,13 +250,8 @@ export default {
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.orderListDate = response.data || []
|
|
|
|
|
if (this.orderListDate.length > 0){
|
|
|
|
|
this.idQuery = this.orderListDate[0]
|
|
|
|
|
}else {
|
|
|
|
|
this.idQuery.fromCorp = this.idQuery.fromCorp
|
|
|
|
|
this.idQuery.sickerAdNum = this.idQuery.sickerAdNum
|
|
|
|
|
this.sickerAdNum =this.idQuery.sickerAdNum
|
|
|
|
|
}
|
|
|
|
|
this.sickerAdNum = info.adNum
|
|
|
|
|
this.addOrderVisible = true
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message)
|
|
|
|
|