+
@@ -590,8 +590,19 @@ export default {
}
},
cellClassNew() {
- if (this.cellCount === 1) return 'container-1'
- if (this.cellCount === 4) return 'container-4'
+ return index => {
+ if (this.cellCount === 1) return 'container-1'
+ if (this.cellCount === 4) return 'container-4'
+ if (this.cellCount === 6) return 'box' + index
+ }
+ },
+
+ playerContent() {
+ return index => {
+ if (this.cellCount === 6) return 'container-6'
+
+ if (this.cellCount === 1 || this.cellCount === 4) return 'container-9'
+ }
},
},
@@ -601,7 +612,7 @@ export default {
}
-
diff --git a/vue.config.js b/vue.config.js
index 41c9d26..31daeb8 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -38,8 +38,8 @@ module.exports = {
// target: `http://localhost:18080`,
// target: 'http://192.168.0.176:18080',
// target: 'http://192.168.0.58:19090', // 杰
- target: 'http://192.168.0.38:18080', // 测试环境
- // target: 'http://218.21.27.6:1999/prod-api', // 生产环境
+ // target: 'http://192.168.0.38:18080', // 测试环境
+ target: 'http://218.21.27.6:1999/prod-api', // 生产环境
// target: 'http://192.168.0.14:38080', // 郝志权
// target: 'http://192.168.2.122:18080', // 梁超
changeOrigin: true,