|
@@ -367,6 +367,18 @@ export default {
|
|
provinceList: [],
|
|
provinceList: [],
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+
|
|
|
|
+ watch: {
|
|
|
|
+ 'formData.firstClubType': function (nVal, oVal) {
|
|
|
|
+ if (nVal === 1) {
|
|
|
|
+ this.formData.secondClubType = 1
|
|
|
|
+ } else if (nVal === 2) {
|
|
|
|
+ this.formData.secondClubType = 5
|
|
|
|
+ } else {
|
|
|
|
+ this.formData.secondClubType = ''
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ },
|
|
computed: {
|
|
computed: {
|
|
lgnlatText() {
|
|
lgnlatText() {
|
|
return this.lnglat ? this.lnglat.join(',') : ''
|
|
return this.lnglat ? this.lnglat.join(',') : ''
|
|
@@ -581,6 +593,17 @@ export default {
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
+.club-info {
|
|
|
|
+ ::v-deep {
|
|
|
|
+ .el-input.is-active .el-input__inner,
|
|
|
|
+ .el-input__inner:focus {
|
|
|
|
+ @include themify($themes) {
|
|
|
|
+ border-color: themed('color');
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
// pc端
|
|
// pc端
|
|
@media screen and (min-width: 768px) {
|
|
@media screen and (min-width: 768px) {
|
|
.position-select {
|
|
.position-select {
|
|
@@ -681,8 +704,8 @@ export default {
|
|
display: inline-block;
|
|
display: inline-block;
|
|
width: 16px;
|
|
width: 16px;
|
|
height: 16px;
|
|
height: 16px;
|
|
- background: url(~assets/theme-images/common/icon-position.png)
|
|
|
|
- no-repeat center;
|
|
|
|
|
|
+ background: url(~assets/theme-images/common/icon-position.png) no-repeat
|
|
|
|
+ center;
|
|
background-size: 16px 16px;
|
|
background-size: 16px 16px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -796,8 +819,8 @@ export default {
|
|
display: inline-block;
|
|
display: inline-block;
|
|
width: 3.58vw;
|
|
width: 3.58vw;
|
|
height: 3.58vw;
|
|
height: 3.58vw;
|
|
- background: url(~assets/theme-images/common/icon-position.png)
|
|
|
|
- no-repeat center;
|
|
|
|
|
|
+ background: url(~assets/theme-images/common/icon-position.png) no-repeat
|
|
|
|
+ center;
|
|
background-size: 3.58vw;
|
|
background-size: 3.58vw;
|
|
}
|
|
}
|
|
}
|
|
}
|