소스 검색

常错词不能为纯数字

dev
jyt 2 년 전
부모
커밋
f8147b63b1
2개의 변경된 파일20개의 추가작업 그리고 4개의 파일을 삭제
  1. +10
    -2
      pages/mine/details.vue
  2. +10
    -2
      pages/mine/details2.vue

+ 10
- 2
pages/mine/details.vue 파일 보기

@@ -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 파일 보기

@@ -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() {


불러오는 중...
취소
저장