12345678910111213141516171819202122232425262728293031 |
- const app = getApp()
- Page({
-
- data: {
- bindPhone: ''
- },
-
- onLoad(options) {
- this.setData({
- bindPhone: app.globalData.userInfo.phoneNumber
- })
- },
-
- handleLinkus() {
- wx.showModal({
- content: '感谢您选择ITT,如你有疑问,欢迎您拨打打电话:400-,我们的客服人员在早上9点到晚上18点都会在线为您服务',
- confirmColor: '#333',
- showCancel: false
- })
- }
- })
|