This commit is contained in:
xiaozhiyong
2023-04-07 15:25:20 +08:00
parent c50f14f14c
commit 4164ce1b5c
8 changed files with 103 additions and 94 deletions

View File

@@ -93,7 +93,6 @@ export default {
},
created() {
this.orderData = JSON.parse(this.$route.query.order)
console.log('this.orderData', this.orderData)
this.time = this.getCountDownTime(this.orderData.createTime)
this.updateDetails()
@@ -102,7 +101,6 @@ export default {
methods: {
cardListFn() {
let networkId = this.$pinia.state.value.user.user?.networkId
// console.log('this.$pinia.value', networkId)
let company = this.orderData.companyAccounts
? this.orderData.companyAccounts
.filter(item => {
@@ -123,7 +121,6 @@ export default {
return item
})
: []
console.log('other', other)
this.cardList = [...company, ...other]
},
updateDetails() {