You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

30 lines
725 B

// pages/mine/mine.js
var app = getApp()
var network = require("../../utils/net.js");
Page({
data: {
meName: "",
mePhone: 0,
avatarUrl: "../../imgs/carsApply.png"
},
onLoad: function(options) {
// var that = this;
// // 获取用户信息
// var method = '/MainSystem/B3MiniProgramRpc/Rpcs/ManagerRpc/AccountRpc/GetBindEmpolyee';
// var params = [
// app.globalData.openID,
// ];
// network.newRequestLoading(method, params, function(res) {
// //res就是我们请求接口返回的数据
// that.setData({
// meName: res.result.Bind_Name,
// mePhone: res.result.Phone,
// avatarUrl: res.result.HeadImgUrl
// })
// })
},
})