Browse Source

常错词不能为纯数字

dev
jyt 2 years ago
parent
commit
f8147b63b1
2 changed files with 20 additions and 4 deletions
  1. +10
    -2
      pages/mine/details.vue
  2. +10
    -2
      pages/mine/details2.vue

+ 10
- 2
pages/mine/details.vue View File

@@ -138,7 +138,7 @@
<viwe class="tian-view-t1"></viwe>
<viwe class="tian-view-t2">常错词:</viwe>
<viwe class="tian-view-t3">
<input type="text" v-model="thewrongword" class="tian-input" placeholder="请输入" />
<input type="text" v-model="thewrongword" :disabled="true" class="tian-input" placeholder="请输入" />
</viwe>
</view>
<view class="tian-view">
@@ -195,7 +195,7 @@
</view>
</view>
<u-toast ref="uToast" />
</view>
</template>

@@ -743,6 +743,13 @@
},
//确认加入常错词
Confirmtheexit() {
let reg = /^[0-9]+$/
if(reg.test(this.thewrongword)){
this.$refs.uToast.show({
title: '错误词不能为纯数字',
type: 'warning',
})
}else{
if (this.thewrongword) {
if (this.reswrongword) {
let parames = {
@@ -779,6 +786,7 @@
});
return
}
}
},
//取消加入常错词
Cancelout() {


+ 10
- 2
pages/mine/details2.vue View File

@@ -221,7 +221,7 @@
<viwe class="tian-view-t1"></viwe>
<viwe class="tian-view-t2">常错词:</viwe>
<viwe class="tian-view-t3">
<input type="text" v-model="thewrongword" class="tian-input" placeholder="请输入" />
<input type="text" v-model="thewrongword" :disabled="true" class="tian-input" placeholder="请输入" />
</viwe>
</view>
<view class="tian-view">
@@ -487,7 +487,7 @@
<view class="bounced3-2" @tap="roletab()">确认</view>
</view>
</view>
<u-toast ref="uToast" />
</view>
</template>

@@ -1445,6 +1445,13 @@
},
//确认加入常错词
Confirmtheexit() {
let reg = /^[0-9]+$/
if(reg.test(this.thewrongword)){
this.$refs.uToast.show({
title: '错误词不能为纯数字',
type: 'warning',
})
}else{
if (this.thewrongword) {
if (this.reswrongword) {
let parames = {
@@ -1484,6 +1491,7 @@
});
return
}
}
},
//取消加入常错词
Cancelout() {


Loading…
Cancel
Save