调用移动端本地化特性
1、二维码、条码扫描 //点击扫描二维码
public override void AfterButtonClick(AfterButtonClickEventArgs e)
{
this.View.CodeScan(); //调用二维码、条码扫描
}
//扫描结果返回,参数e为二维码、条码结果字符串
public override void AfterCodeScan(string e)
{
this.Model.SetValue("FCode", e);
}
2、移动客户端地图定位
public override void AfterButtonClick(AfterButtonClickEventArgs e)
{
this.View.LocateMobileClient(LocationProvider.LBS_PROVIDER, true); //调用定位服务
}
//定位结果返回,参数e为位置信息
public override void AfterMobileClientLocated(MobileClientLocatedEventArgs e)
{
//PlunInHelper.SaveSignInInfo(this.Context, e.Latitude, e.Longitude, e.Desc);
}
3、打开指定URL地址
JSONArray array = new JSONArray();
JSONObject obj = new JSONObject();
obj.Put("url", "http://www.kingdee.com");
obj.Put("title", "title");
obj.Put("urltitle", "urltitle");
array.Add(obj);
this.View.AddAction("openUrlWindow", array);
4、打电话
this.View.SendCall("13800000000");
调用移动端本地化特性
本文2024-09-23 04:07:36发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-163300.html