| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | <template>	<view>		<page-head :title="title"></page-head>		<view class="uni-padding-wrap uni-common-mt">			<view class="uni-hello-text uni-center">请在下方输入电话号码</view>			<input class="input uni-common-mt" type="number" name="input" @input="bindInput" />			<view class="uni-btn-v uni-common-mt">				<button @tap="makePhoneCall" type="primary" :disabled="disabled">拨打</button>			</view>		</view>	</view></template><script>	export default {		data() {			return {				title: 'makePhoneCall',				disabled: true			}		},		methods: {			bindInput: function (e) {				this.inputValue = e.detail.value				if (this.inputValue.length > 0) {					this.disabled = false				} else {					this.disabled = true				}			},			makePhoneCall: function () {				uni.makePhoneCall({					phoneNumber: this.inputValue,					success: () => {						console.log("成功拨打电话")					}				})			}		}	}</script><style>	.input {		height: 119rpx;		line-height: 119rpx;		font-size: 78rpx;		border-bottom: 1rpx solid #E2E2E2;		text-align:center;	}</style>
 |