askbot-dragon 0.7.8 → 0.7.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "askbot-dragon",
3
- "version": "0.7.8",
3
+ "version": "0.7.9",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -477,7 +477,7 @@ export default {
477
477
  }
478
478
  },
479
479
  width: 0,
480
- required: true,
480
+ required: false,
481
481
  value: null,
482
482
  },
483
483
  {
@@ -183,7 +183,7 @@
183
183
  <div class="form-link"></div>
184
184
  <div class="form-submit-btn">
185
185
  <el-button style="border-color: #366aff;color: white;background-color: #366aff" round class="submitClass" size="small" @click="submitClick" :disabled="disableds">
186
- <i class="el-icon-check" v-if="disableds"></i>
186
+ <i class="el-icon-check" v-if="!disableds"></i>
187
187
  {{submitValue}}
188
188
  </el-button>
189
189
  </div>
@@ -427,7 +427,7 @@
427
427
  <div class="form-link"></div>
428
428
  <div class="form-submit-btn">
429
429
  <van-button round type="info" class="submitClass" @click="submitClick" :disabled="disableds">
430
- <i class="el-icon-check" v-if="disableds"></i>
430
+ <i class="el-icon-check" v-if="!disableds"></i>
431
431
  {{submitValue}}
432
432
  </van-button>
433
433
  </div>
@@ -609,10 +609,12 @@ export default {
609
609
  if(this.disable===true)
610
610
  {
611
611
  this.disableds=true
612
+ this.submitValue = '已提交'
612
613
  }
613
614
  else
614
615
  {
615
616
  this.disableds=false
617
+ this.submitValue = '提交'
616
618
  }
617
619
  },
618
620
  beforeMount() {
@@ -1148,6 +1150,7 @@ export default {
1148
1150
  }
1149
1151
  this.$emit('submitClick',this.formShow)
1150
1152
  this.disableds = true
1153
+ this.submitValue = '已提交'
1151
1154
  },
1152
1155
  //日期的点击事件
1153
1156
  dateClick(id) {
@@ -1641,6 +1644,12 @@ export default {
1641
1644
  background-color: transparent!important;
1642
1645
  border-radius: 9px!important;
1643
1646
  }
1647
+ /deep/.el-textarea__inner{
1648
+ border-color: #E0E6F7!important;
1649
+ background-color: transparent!important;
1650
+ border-radius: 9px!important;
1651
+ padding: 9px 15px!important;
1652
+ }
1644
1653
  /deep/.el-upload--picture-card{
1645
1654
  background-color: #FFFFFF;
1646
1655
  border: 1px solid #E0E6F7;
@@ -1844,6 +1853,9 @@ export default {
1844
1853
  /deep/.van-field__control{
1845
1854
  min-height: 40px;
1846
1855
  }
1856
+ /deep/textarea{
1857
+ padding: 7px 0;
1858
+ }
1847
1859
  /deep/.van-dropdown-menu__bar{
1848
1860
  box-shadow: none!important;
1849
1861
  }
@@ -77,14 +77,14 @@ export default {
77
77
  top: 50px;
78
78
  i{
79
79
  color: #366aff;
80
- font-size: 30px;
80
+ font-size: 26px;
81
81
  }
82
82
  }
83
83
  }
84
84
  .voice-tip{
85
85
  width: 100%;
86
86
  position: absolute;
87
- top: -30px;
87
+ top: -35px;
88
88
  display: flex;
89
89
  align-items: center;
90
90
  justify-content: center;
@@ -94,7 +94,7 @@ export default {
94
94
  .close-voice{
95
95
  width: 100%;
96
96
  position: absolute;
97
- top: -20px;
97
+ top: -35px;
98
98
  display: flex;
99
99
  align-items: center;
100
100
  justify-content: center;