详细问题描述
**
switch 状态切换后 input值内容被清空
在页面上修改input值,switch切换对input不受影响
在程序中动态修改input值 switch一切换就会变成页面上输入的值
eg: 1、页面上输入 123 后,switch切换 123不变 (正常)
2、通过程序或者微信开发工具控制台修改input值后,switch切换后,input值清空,(异常)
**
直接贴代码吧:
<view class="content">
<image class="logo" src="/static/logo.png"></image>
<view class="text-area">
<text class="title">{{title}}</text>
</view>
<form>
<switch @change="change" :checked="isBus?true:false"></switch>
<input name="name" v-model="name" type="text" />
</form>
</view>
</template>
<script>
export default {
data() {
return {
title: 'Hello',
isBus: '',
name: ''
}
},
onLoad() {
},
methods: {
change(e) {
this.isBus = e.detail.value;
}
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}
.text-area {
display: flex;
justify-content: center;
}
.title {
font-size: 36rpx;
color: #8f8f94;
}
</style>```
## 联系方式
[QQ: 1763197391]