/*
软件作者:https://xuhss.com/oxox/pro
*/
"ui";
/*
* @Author: 笔青居
* @Date: 2018-11-03 14:25:48
* @email: 644613693@qq.com
* @lastEditors: 笔青居
* @LastEditTime: 2019-05-13 15:56:13
* @Description: 脚本仓库,用来上传以及下载代码使用,对代码有疑问可以加Q群:715332614
*/
const baseUrl="https://www.biqingju.com/";
const marketUrl="http://www.biqingju.com:8888/autojs/api/v3/market/appList";
const versionCode=2;
const versionName="0.0.2";
const myImei="";
const curFileName="脚本仓库.js";
var currentPage=1;
//主题色
const themeColor="#aaccaa";
if(!app.autojs.versionCode||app.autojs.versionCode<310){
toast("AutoJs版本过,请使用最新版本。");
exit();
}
ui.layout(
<vertical>
<appbar>
<toolbar bg={themeColor} id="toolbar" title="笔青居 {{this.versionName}}"/>
<tabs bg={themeColor} id="tabs"/>
</appbar>
<viewpager bg={themeColor} id="viewpager" >
<frame >
<vertical focusable="true" focusableInTouchMode="true" >
<input id="search_local" marginTop="8" marginLeft="18" marginRight="18" bg="#eeeeee" paddingLeft="18" paddingRight="18" hint="本地搜索"/>
<list id="list" marginTop="4" marginLeft="16" marginRight="16" marginBottom="16">
<text text="{{this.displayName}}" textColor="#4a3113" textSize="18sp" margin="5 0 5 10"/>
</list>
</vertical>
<progressbar w="64" h="64" id="pro_local" layout_gravity="center" marginBottom="64"/>
</frame>
<frame>
<vertical focusable="true" focusableInTouchMode="true">
<input id="search_service" marginTop="8" marginLeft="18" marginRight="18" bg="#eeeeee" paddingLeft="18" paddingRight="18" hint="服务端搜索"/>
<list id="list2" layout_weight="1" h="0" marginTop="4" marginLeft="16" marginRight="16" marginBottom="16" >
<text text="{{this.displayName}}" textColor="{{this.displayColor}}" textSize="18sp" margin="5 0 5 10"/>
</list>
</vertical>
<progressbar w="64" h="64" id="pro_service" layout_gravity="center" marginBottom="64"/>
</frame>
<frame>
<vertical w="*" focusable="true" focusableInTouchMode="true">
<input id="search_market" marginTop="8" marginLeft="18" marginRight="18" bg="#eeeeee" paddingLeft="18" paddingRight="18" hint="应用市场搜索"/>
<grid spanCount="3" id="list3" layout_weight="1" h="0" marginTop="4" marginLeft="16" marginRight="16" marginBottom="16" >
<vertical layout_gravity="center" w="*" padding="8">
<img scaleType="centerCrop" layout_gravity="center" w="48" h="48" src="{{this.displayImg}}" />
<text w="*" textColor="red" lines="1" ellipsize="end" marginLeft="8" gravity="center" text="{{this.displayName}}" textColor="#4a3113" textSize="18sp" />
</vertical>
</grid>
<button id="more_market" style="Widget.AppCompat.Button.Colored" bg="#009688" >加载更多</button>
</vertical>
<progressbar w="64" h="64" id="pro_market" layout_gravity="center" marginBottom="64"/>
</frame>
</viewpager>
</vertical>
);
function main(){
checkVersion();
//存储本地名称列表,用来与服务器对比是否有相同的文件
localNameList=[];
//存放本地文件列表初始化
localList=[];
serviceList=[];
marketList=[];
//获取当前脚本所在目录
basePath=engines.myEngine().cwd();
toast("当前所读取的目录是->"+basePath);
notifyLocalFiles();
notifyServicaFiles();
notifyMarketFiles();
uiInit();
//0是滚动 1是固定
// ui.tabs.setTabMode(0);
}
/**
* 刷新应用商店的列表
*/
function notifyMarketFiles(){
ui.pro_market.setVisibility(0);
threads.start(function() {
log("currewn-->"+currentPage)
var res=http.postJson(marketUrl, {
"appName": "",
"pageNo": currentPage,
"pageSize":1
});
if(res.statusCode != 200){
toast("请求失败: " + res.statusCode + " " + res.statusMessage);
return;
}
var reqData=res.body.json();
if(reqData["code"]!=200){
toast("请求失败: " + reqData["code"] + " " + reqData["message"]);
return;
}
log(reqData);
//增加页码
currentPage++;
if(reqData["data"]["totalPage"]<=currentPage){
ui.run(function(){
//当前是最后一页,不显示加载更多按钮
ui.more_market.setVisibility(8);
});
}
var serviceList=reqData["data"]["list"];
var tempList=[];
serviceList.forEach(item=>{
item["displayName"]=item["appName"];
if(item["imgUrl"]){
item["displayImg"]=item["imgUrl"];
}else{
//使用默认图
item["displayImg"]="http://bmob-cdn-21628.b0.upaiyun.com/2018/11/14/9de8d9d7406aaf6b8012eb7e2628fd13.jpeg";
}
tempList.push(item)
});
ui.run(function(){
ui.pro_market.setVisibility(8);
marketList=marketList.concat(tempList);
ui.list3.setDataSource(marketList);
});
});
}
/**
* 刷新本地文件夹
* 其中setVisbility 0是可见 8是隐藏
*/
function notifyLocalFiles(){
threads.start(function(){
readLoacalFiles(basePath,0);
//主线程对ui进行操作
ui.run(function(){
ui.pro_local.setVisibility(8);
ui.list.setDataSource(localList);
});
})
}
/**
* 刷新服务端脚本
*/
function notifyServicaFiles(){
ui.pro_service.setVisibility(0);
threads.start(function(){
let res = http.get(baseUrl+"codelist.php?"+"versionCode="+versionCode+"&user="+myImei);
if(res.statusCode != 200){
toast("请求失败: " + res.statusCode + " " + res.statusMessage);
return;
}
//清空已有的列表
serviceList=[];
str=res.body.string();
var tempList=JSON.parse(str);
tempList.forEach((item,position)=>{
let level=item["filePath"].split("/");
let fileName=item["fileName"];
let temp="";
if(level.length>2){
for (i=0; i<level.length-1; i++){
temp+=" ";
}
if(position<tempList.length-1&&tempList[position+1]["filePath"]!=item["filePath"]){
fileName=temp+"└─"+fileName;
}else{
fileName=temp+"└─"+fileName;
}
}else if(position==tempList.length-1){
fileName="└─"+fileName;
}else{
fileName="├─"+fileName;
}
if(localNameList.indexOf(item["fileName"])!=-1){
item["displayName"]=fileName;
item["displayColor"]="#4a3113";
serviceList.push(item);
}else if(item["filePath"]=="/代码未审核/"||item["fileName"=="代码未审核"]){
item["displayName"]=fileName;
item["displayColor"]="#d71345";
serviceList.push(item);
}else if(item["type"]==0){
item["displayName"]=fileName;
item["displayColor"]="#4a3113";
serviceList.push(item);
没有合适的资源?快使用搜索试试~ 我知道了~
AutoJs源码-脚本仓库
共1个文件
js:1个
需积分: 14 0 下载量 159 浏览量
2022-11-16
06:04:25
上传
评论
收藏 5KB 7Z 举报
温馨提示
AutoJs源码-脚本仓库。本资源购买前提醒:本源码都是实际autojs项目模板,安装好autojs直接运行即可打开。1、支持低版本autojs。2、资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!。3、安装过程详见具体资源,不会使用autojs谨慎下载
资源推荐
资源详情
资源评论
收起资源包目录
AutoJs源码-脚本仓库.7z (1个子文件)
AutoJs源码-脚本仓库.js 17KB
共 1 条
- 1
资源评论
[虚幻私塾】
- 粉丝: 335
- 资源: 1558
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 技术资料分享SD卡资料很好的技术资料.zip
- 技术资料分享SD卡-中文学习笔记很好的技术资料.zip
- 蓝桥杯java模拟试题.pdf
- SBC-TLE926x DEMO 工程
- 身份id图片生成器纯娱乐
- 利用HTML5+css3+jQuery技术完成App端页面开发,后台管理系统页面开发 移动端为hybird App Ap
- 技术资料分享SD卡中文数据手册很好的技术资料.zip
- ACM高精度运算ACM(ACM high precision operation ACM).pdf
- Wi-Fi 7技术与应用展望_20241108_093604.pptx
- JavaScript Array对象详解-javascript技巧.pdf
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功