/**
* 手机端的电话、邮件的API<br>
* * <strong>
* 页面需要导入的文件
* <ul>
* <li>cmp-telmail.js</li>
* </ul>
* </strong>
* @module telephone
* @subtitle 电话短信
*/
/**
* 电话类,支持打电话,sms发信息
* @class tel
*/
/**
* 打电话
* @namespace cmp
* @method call
* @param {Object} options 配置参数
* @param {Number} options.phoneNum 电话号码
* @param {Function} options.success 成功回调
* @param {Function} [options.error] 失败回调
* @example
* ```
* <script>
* cmp.tel.call({
* phoneNum:12345678901
* success:function(){
* //do something
* },
* error:function(error){
* }
* });
* </script>
* ```
*/
/**
* 发短信
* @namespace cmp
* @method sms
* @param {Object} options 配置参数
* @param {Number} options.phoneNum 电话号码
* @param {String} options.message 短信内容
* @param {Function} options.success 成功回调
* @param {Function} [options.error] 失败回调
* @example
* ```
* <script>
* cmp.tel.sms({
* phoneNum:12345678901,
* message:"发一个短信"
* success:function(){
* //do something
* },
* error:function(error){
* }
* });
* </script>
* ```
*/
/**
* 查找电话号码
* @namespace cmp
* @method findPhoneNum
* @param {Object} options 配置参数
* @param {Number} options.phoneNum 电话号码
* @param {Function} options.success 成功回调
* @param {Function} [options.error] 失败回调
* @example
* ```
* <script>
* cmp.tel.findPhoneNum({
* phoneNum:12345678901,
* success:function(){
* //do something
* },
* error:function(error){
* }
* });
* </script>
* ```
*/
/**
* 同步到手机通讯录
* @namespace cmp
* @method syncToLocal
* @param {Object} options 配置参数
* @param {String} options.name 用户名
* @param {Number} options.mobilePhone 移动电话
* @param {Number} options.officePhone 办公电话
* @param {String} options.email E-mail地址
* @param {String} options.imageData 用户头像 图片base64编码
* @param {Function} options.success 成功回调
* @param {Function} [options.error] 失败回调
* @example
* ```
* <script>
* cmp.tel.findPhoneNum({
* mobilePhone:12345678901,
* officePhone:888888,
* email:9999999@qq.com,
* imageData:"",
* success:function(){
* //do something
* },
* error:function(error){
* }
* });
* </script>
* ```
*/
/**
* 邮件类
* @class mail
*/
/**
* 邮件发送
* @namespace cmp
* @method send
* @param {Object} options 配置参数
* @param {String} options.bodystr 邮件内容
* @param {String} options.attname 邮件附件名称
* @param {String} options.attadata 邮件附件数据 需要文件的二进制数据
* @param {Function} options.success 成功回调
* @param {Function} [options.error] 失败回调
* @example
* ```
* <script>
* cmp.mail.send({
* bodystr:"发给老板的邮件",
* attname:"一个附件",
* attadata:null,
* success:function(){
* //do something
* },
* error:function(error){
* }
* });
* </script>
* ```
*/