Authored by Tao

modify channel && news && newsDetail

... ... @@ -122,7 +122,7 @@ export default {
}
},
mounted() {
// this.showPlayer();
this.showPlayer();
},
beforeDestroy() {
if (this.player) {
... ... @@ -131,9 +131,7 @@ export default {
},
methods: {
async parentHandleclick() {
this.showPlayer();
await this.delay(1000);
// await this.delay(1000);
this.player.play();
const timeId = setTimeout(() => {
... ...
... ... @@ -123,7 +123,7 @@ export default {
this.$createDialog({
type: 'confirm',
title: '',
content: `确定以${this.price}出售此商品`,
content: `确定以¥${this.price}立即出售此商品`,
confirmBtn: {
text: '确定出售',
active: true,
... ... @@ -140,7 +140,7 @@ export default {
this.sellerPublish({price: this.price, skup: this.skup, address_id: this.addressInfo.address_id})
.then((res) => {
if (res && res.data && res.data.code == 200) {
if (res && res.code && res.code == 200) {
this.$createToast({
time: 1000,
type: 'txt',
... ...