截流自动化的商城平台
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.

ShopContentLogic.php 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693
  1. <?php
  2. namespace app\api\logic;
  3. use app\common\basics\Logic;
  4. use app\common\enum\GoodsEnum;
  5. use app\common\enum\ShopAdEnum;
  6. use app\common\enum\ShopEnum;
  7. use app\common\logic\QrCodeLogic;
  8. use app\common\model\dev\DevRegion;
  9. use app\common\model\shop\ShopAd;
  10. use app\common\model\shop\ShopGoods as shopGoodsModel;
  11. use app\common\server\ConfigServer;
  12. use app\common\server\UrlServer;
  13. use app\common\model\goods\Goods;
  14. use app\common\model\shop\Shop;
  15. use app\common\model\shop\ShopFollow;
  16. use app\common\model\content\ClosureCategory;
  17. use app\common\model\content\Closure;
  18. use app\common\model\shop\Shop as shopModel;
  19. use app\common\model\content\EquiCategory as EquiCategoryModel;
  20. use think\facade\Event;
  21. class ShopContentLogic extends Logic
  22. {
  23. /*
  24. * 获取机器秘钥
  25. */
  26. public static function codeInfo($code='',$mcode='')
  27. {
  28. if(empty($code) || empty($mcode)){
  29. $data = [
  30. 'status' => 105,
  31. 'msg' => "参数不正确,不能为空!"
  32. ];
  33. return $data;
  34. }
  35. $where = [
  36. "del" => 0,
  37. "is_show" => 1,
  38. "pid" => 0, //必须是电脑
  39. "code" => $code
  40. ];
  41. $item = EquiCategoryModel::where($where)->find();
  42. //判断商家服务
  43. if(!empty($item)) {
  44. $expire_time = shopModel::where('id', $item['shop_id'])->value('expire_time');
  45. //dump($expire_time);
  46. if($expire_time < time()){
  47. $data = [
  48. 'status' => 107,
  49. 'msg' => "商户服务当前套餐到期,到期时间".date('Y-m-d H:i:s',$expire_time)."!"
  50. ];
  51. return $data;
  52. }
  53. }
  54. if(empty($item))
  55. {
  56. $data = [
  57. 'status' => 101,
  58. 'msg' => "秘钥错误,找不到设备!"
  59. ];
  60. }else if(empty($item['machine_code']))
  61. {
  62. //验证秘钥是否合法
  63. $res = self::getCodeIs($item['shop_id'],$code);
  64. if($res === false){
  65. $data = [
  66. 'status' => 106,
  67. 'msg' => "超出套餐服务电脑数量!"
  68. ];
  69. }else {
  70. //未绑定机器码 那么进行绑定
  71. $row = EquiCategoryModel::where(['id' => $item['id']])->update([
  72. "machine_code" => $mcode,
  73. ]);
  74. if ($row == 1) {
  75. $data = [
  76. 'status' => 100,
  77. 'msg' => "绑定机器码成功!"
  78. ];
  79. } else {
  80. $data = [
  81. 'status' => 102,
  82. 'msg' => "绑定机器码失败!"
  83. ];
  84. }
  85. }
  86. }else{
  87. //验证秘钥是否合法
  88. $res = self::getCodeIs($item['shop_id'],$code);
  89. if($res === false){
  90. $data = [
  91. 'status' => 106,
  92. 'msg' => "超出套餐服务电脑数量!"
  93. ];
  94. }else {
  95. //var_dump($mcode);
  96. //var_dump($item['machine_code']);
  97. //机器码已存在
  98. if($item['machine_code'] != $mcode){
  99. //机器码不一致
  100. $data = [
  101. 'status' => 103,
  102. 'msg' => "该秘钥已绑定其他设备,操作失败!"
  103. ];
  104. }else{
  105. $data = [
  106. 'status' => 100,
  107. 'msg' => "已绑定该机器码!"
  108. ];
  109. }
  110. }
  111. }
  112. return $data;
  113. }
  114. public static function getCodeIs($shop_id,$code)
  115. {
  116. //首先获取合法的电脑数量是多少
  117. $tid = shopModel::where('id',$shop_id)->value('tid');
  118. if ((int)$tid === 0) {
  119. //未配置
  120. $count_pc = 1;
  121. $count_mobile = 3;
  122. $count_run = 3;
  123. } else if ((int)$tid > 0) {
  124. //查找配置
  125. $one = shopGoodsModel::where('id', $tid)->find();
  126. $count_pc = $one['pc_num'];
  127. $count_mobile = $one['mobile_num'];
  128. $count_run = $one['run_num'];
  129. } else {
  130. //其他
  131. $count_pc = 1;
  132. $count_mobile = 3;
  133. $count_run = 3;
  134. }
  135. //调用合法的秘钥是哪些
  136. $where = [
  137. "del" => 0, //未删除
  138. //"is_show" => 1,
  139. "pid" => 0, //必须是电脑
  140. "shop_id" => $shop_id
  141. ];
  142. $code_list = EquiCategoryModel::where($where)->order('id asc')->limit($count_pc)->column('code');
  143. //var_dump($code);
  144. if(in_array($code,$code_list)){
  145. return true;
  146. }
  147. return false;
  148. }
  149. /*
  150. * getComputer
  151. * 获取电脑 根据code
  152. */
  153. public static function getComputer($code){
  154. if(empty($code)){
  155. $data = [
  156. 'status' => 105,
  157. 'msg' => "参数不正确,不能为空!"
  158. ];
  159. return $data;
  160. }
  161. $where = [
  162. "del" => 0,
  163. "is_show" => 1,
  164. "pid" => 0, //必须是电脑
  165. "code" => $code
  166. ];
  167. $item = EquiCategoryModel::where($where)->find();
  168. if(empty($item))
  169. {
  170. $data = [
  171. 'status' => 101,
  172. 'msg' => "秘钥错误,找不到设备!"
  173. ];
  174. }else{
  175. $data = [
  176. 'status' => 100,
  177. 'msg' => "设备存在!",
  178. 'item' => $item
  179. ];
  180. }
  181. return $data;
  182. }
  183. /*
  184. * 获取手机配置
  185. */
  186. public static function getDefaultMobile($data){
  187. //判断是否绑定配置
  188. if(empty($data['pz'])){
  189. $data = [
  190. 'status' => 101,
  191. 'msg' => "请对该设备绑定默认配置!"
  192. ];
  193. }else{
  194. $pz = json_decode($data['pz'],true);
  195. //获取小红书appid
  196. $app_id = ClosureCategory::where([
  197. 'name' => '小红书',
  198. 'shop_id' => $data['shop_id']
  199. ])->value('id');
  200. if(empty($app_id)){
  201. $data = [
  202. 'status' => 102,
  203. 'msg' => "找不到名为小红书的appID!"
  204. ];
  205. }else{
  206. //读取默认配置
  207. foreach ($pz as $k=>$v){
  208. if((int)$v['cid'] === (int)$app_id){
  209. //读取具体配置对象 $v['val']
  210. $item = Closure::where(['id'=>$v['val']])->find();
  211. if(empty($item['json_data'])){
  212. $data = [
  213. 'status' => 103,
  214. 'msg' => "找不到配置对象记录!"
  215. ];
  216. }else{
  217. $data = [
  218. 'status' => 100,
  219. 'msg' => "存在默认配置!",
  220. 'data' => json_decode($item['json_data'],true)
  221. ];
  222. $data['data']['ver'] = $v['ver'];
  223. }
  224. }
  225. }
  226. }
  227. }
  228. //查询默认配置
  229. return $data;
  230. }
  231. /*
  232. * 获取手机列表
  233. */
  234. public static function getMobile($data)
  235. {
  236. //限制手机数量 首先获取合法的手机数量是多少
  237. $tid = shopModel::where('id',$data['shop_id'])->value('tid');
  238. if ((int)$tid === 0) {
  239. //未配置
  240. $count_pc = 1;
  241. $count_mobile = 3;
  242. $count_run = 3;
  243. } else if ((int)$tid > 0) {
  244. //查找配置
  245. $one = shopGoodsModel::where('id', $tid)->find();
  246. $count_pc = $one['pc_num'];
  247. $count_mobile = $one['mobile_num'];
  248. $count_run = $one['run_num'];
  249. } else {
  250. //其他
  251. $count_pc = 1;
  252. $count_mobile = 3;
  253. $count_run = 3;
  254. }
  255. //只调用允许数量 按id排序即可 后台不可更改排序
  256. $list = EquiCategoryModel::where(['pid'=>$data['id'],'is_show'=>1,'del'=>0,'is_user'=>1])
  257. ->order('id asc')
  258. ->limit($count_run)
  259. ->select();
  260. if(empty($list)){
  261. $data = [
  262. 'status' => 100,
  263. 'msg' => "找不到手机设备,全部使用默认配置!"
  264. ];
  265. }else{
  266. //获取小红书appid
  267. $app_id = ClosureCategory::where([
  268. 'name' => '小红书',
  269. 'shop_id' => $data['shop_id']
  270. ])->value('id');
  271. if(empty($app_id)){
  272. $data = [
  273. 'status' => 102,
  274. 'msg' => "找不到名为小红书的appID!"
  275. ];
  276. }else{
  277. $pz_list = [];
  278. $ids = [];
  279. //dump($list->toArray());die;
  280. foreach ($list as $k=>$v){
  281. //没有配置指定 就使用默认的配置
  282. if(!empty($v['pz'])){
  283. $pz = json_decode($v['pz'],true);
  284. foreach ($pz as $kk=>$vv){
  285. //小红书
  286. if((int)$vv['cid'] === (int)$app_id){
  287. $pz_list[] = $v['name'];
  288. $ids[] = $vv['val'];
  289. $ver[] = $vv['ver']; //版本号
  290. }
  291. }
  292. }
  293. }
  294. if(empty($ids)){
  295. $data = [
  296. 'status' => 100,
  297. 'msg' => "不存在手机配置,使用默认配置"
  298. ];
  299. }else{
  300. $data = [
  301. 'status' => 100,
  302. 'data' => $pz_list,
  303. 'ids' => $ids,
  304. 'ver' => $ver
  305. ];
  306. }
  307. }
  308. }
  309. return $data;
  310. }
  311. /*
  312. * 获取手机配置
  313. */
  314. public static function getMobileConfig($data,$ids,$ver)
  315. {
  316. $res = [];
  317. if(!empty($ids)){
  318. $list = Closure::where('id','in',$ids)->select();
  319. //用配置id 作 key 如果配置id相同 就会覆盖
  320. /* foreach ($list as $k=>$v){
  321. if(!empty($v['json_data'])){
  322. $res[$data[(int)$v['id']]] = json_decode($v['json_data'],true);
  323. $res[$data[(int)$v['id']]]['ver'] = $ver[(int)$v['id']]; //追加版本号
  324. }
  325. }*/
  326. //重写
  327. $pz_list = [];
  328. foreach ($list as $k=>$v){
  329. if(!empty($v['json_data'])) {
  330. $pz_list[$v['id']] = $v;
  331. }
  332. }
  333. foreach ($ids as $k=>$v){
  334. if(!empty($pz_list[$v])){
  335. $res[$data[$k]] = json_decode($pz_list[$v]['json_data'],true);
  336. $res[$data[$k]]['ver'] = $ver[$k]; //追加版本号
  337. }
  338. }
  339. }
  340. return $res;
  341. }
  342. /**
  343. * 获取店铺信息
  344. */
  345. public static function getShopInfo($shopId, $userId, $params = [])
  346. {
  347. // 记录统计信息(访问商铺用户量)
  348. Event::listen('ShopStat', 'app\common\listener\ShopStat');
  349. event('ShopStat', $shopId);
  350. $where = [
  351. 'del' => 0,
  352. 'id' => $shopId
  353. ];
  354. $field = [
  355. 'id', 'create_time', 'name', 'logo', 'background',
  356. 'type', 'score', 'star', 'intro',
  357. 'visited_num', 'cover', 'banner', 'is_freeze',
  358. 'is_run', 'expire_time',
  359. 'province_id', 'city_id', 'district_id', 'address',
  360. 'run_start_time', 'run_end_time', 'weekdays',
  361. ];
  362. $shop = Shop::field($field)
  363. ->where($where)
  364. ->append([ 'type_desc', 'is_expire' ])
  365. ->findOrEmpty();
  366. if($shop->isEmpty()) {
  367. return [];
  368. }else{
  369. $shop = $shop->toArray();
  370. }
  371. //
  372. $shop['logo'] = UrlServer::getFileUrl($shop['logo'] ? : ShopEnum::DEFAULT_LOGO);
  373. $shop['background'] = UrlServer::getFileUrl($shop['background'] ? : ShopEnum::DEFAULT_BG);
  374. $shop['cover'] = UrlServer::getFileUrl($shop['cover'] ? :ShopEnum::DEFAULT_COVER);
  375. $shop['banner'] = UrlServer::getFileUrl($shop['banner'] ? : ShopEnum::DEFAULT_BANNER);
  376. $shop['run_start_time'] = $shop['run_start_time'] ? date('H:i:s', $shop['run_start_time']) : '';
  377. $shop['run_end_time'] = $shop['run_end_time'] ? date('H:i:s', $shop['run_end_time']) : '';
  378. $shop['province'] = DevRegion::getAreaName($shop['province_id']);
  379. $shop['city'] = DevRegion::getAreaName($shop['city_id']);
  380. $shop['district'] = DevRegion::getAreaName($shop['district_id']);
  381. $shop['qr_code'] = (new QrCodeLogic)->shopQrCode($shop['id'], $params['terminal'] ?? '');
  382. // 在售商品
  383. // 销售中商品:未删除/审核通过/已上架
  384. $onSaleWhere = [
  385. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  386. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  387. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  388. ];
  389. $shop['on_sale_count'] = Goods::where($onSaleWhere)->where('shop_id', $shopId)->count();
  390. // 店铺推荐商品
  391. $shop['goods_list'] = Goods::field('id,image,name,min_price,market_price')
  392. ->where($onSaleWhere)
  393. ->where([
  394. 'shop_id' => $shop['id'],
  395. 'is_recommend' => 1, // 推荐商品
  396. ])
  397. ->limit(9)
  398. ->select()
  399. ->toArray();
  400. // 用户是否关注店铺
  401. $shop['shop_follow_status'] = 0;
  402. if($userId) { // 用户已登录
  403. $shopFollow = ShopFollow::where(['user_id'=>$userId, 'shop_id'=>$shopId])->findOrEmpty();
  404. if(!$shopFollow->isEmpty()) {
  405. $shop['shop_follow_status'] = $shopFollow['status'];
  406. }
  407. }
  408. $shop['follow_num'] = ShopFollow::where(['shop_id' => $shopId,'status' => 1])->count('id');
  409. $image = ConfigServer::get('shop_customer_service', 'image', '', $shopId);
  410. $shop['customer_image'] = $image ? UrlServer::getFileUrl($image) : '';
  411. $shop['customer_wechat'] = ConfigServer::get('shop_customer_service', 'wechat', '', $shopId);
  412. $shop['customer_phone'] = ConfigServer::get('shop_customer_service', 'phone', '', $shopId);
  413. // 店铺广告
  414. $adWhere = [
  415. [ 'shop_id', '=', $shopId ],
  416. [ 'status', '=', 1 ],
  417. ];
  418. $shop['ad'] = [
  419. 'pc' => ShopAd::where($adWhere)->where('terminal', ShopAdEnum::TERMINAL_PC)->append([ 'link_path', 'link_query' ])->order('sort desc,id desc')->select()->toArray(),
  420. 'mobile' => ShopAd::where($adWhere)->where('terminal', ShopAdEnum::TERMINAL_MOBILE)->append([ 'link_path', 'link_query' ])->order('sort desc,id desc')->select()->toArray(),
  421. ];
  422. return $shop;
  423. }
  424. /**
  425. * 店铺列表
  426. */
  427. public static function getShopList($get)
  428. {
  429. $where = [
  430. ['is_freeze', '=', 0], // 未冻结
  431. ['del', '=', 0], // 未删除
  432. ['is_run', '=', 1], // 未暂停营业
  433. ];
  434. // 店铺名称
  435. if(isset($get['name']) && !empty($get['name'])) {
  436. $where[] = ['name', 'like', '%'. trim($get['name']. '%')];
  437. }
  438. // 主营类目
  439. if(isset($get['shop_cate_id']) && !empty($get['shop_cate_id'])) {
  440. $where[] = ['cid', '=', $get['shop_cate_id']];
  441. }
  442. $order = [
  443. 'weight' => 'asc',
  444. 'score' => 'desc',
  445. 'id' => 'desc'
  446. ];
  447. $list = Shop::field('id,type,name,logo,background,visited_num,cover,banner')
  448. ->where($where)
  449. // 无限期 或 未到期
  450. ->whereRaw('expire_time =0 OR expire_time > '. time())
  451. ->order($order)
  452. ->page($get['page_no'], $get['page_size'])
  453. ->select()
  454. ->toArray();
  455. $count = Shop::where($where)
  456. // 无限期 或 未到期
  457. ->whereRaw('expire_time =0 OR expire_time > '. time())
  458. ->count();
  459. $onSaleWhere = [
  460. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  461. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  462. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  463. ];
  464. foreach($list as &$shop) {
  465. $shop['goods_list'] = Goods::field('id,image,name,min_price,market_price')
  466. ->where($onSaleWhere)
  467. ->where([
  468. 'shop_id' => $shop['id'],
  469. ])
  470. ->limit(10)
  471. ->select()
  472. ->toArray();
  473. $shop['on_sale_goods'] = count($shop['goods_list']);
  474. // logo及背景图
  475. $shop['logo'] = $shop['logo'] ? UrlServer::getFileUrl($shop['logo']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_LOGO);
  476. $shop['background'] = $shop['background'] ? UrlServer::getFileUrl($shop['background']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_BG);
  477. $shop['cover'] = $shop['cover'] ? UrlServer::getFileUrl($shop['cover']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_COVER);
  478. $shop['banner'] = $shop['banner'] ? UrlServer::getFileUrl($shop['banner']) : '';
  479. }
  480. $more = is_more($count, $get['page_no'], $get['page_size']);
  481. $data = [
  482. 'list' => $list,
  483. 'count' => $count,
  484. 'more' => $more,
  485. 'page_no' => $get['page_no'],
  486. 'page_isze' => $get['page_size']
  487. ];
  488. return $data;
  489. }
  490. /**
  491. * @notes 附近店铺列表
  492. * @param $get
  493. * @return array
  494. * @throws \think\db\exception\DataNotFoundException
  495. * @throws \think\db\exception\DbException
  496. * @throws \think\db\exception\ModelNotFoundException
  497. * @author ljj
  498. * @date 2022/9/20 4:29 下午
  499. */
  500. public static function getNearbyShops($get)
  501. {
  502. $where = [
  503. ['is_freeze', '=', 0], // 未冻结
  504. ['del', '=', 0], // 未删除
  505. ['is_run', '=', 1], // 未暂停营业
  506. ['city_id', '=', $get['city_id']],
  507. ];
  508. // 店铺名称
  509. if(isset($get['name']) && !empty($get['name'])) {
  510. $where[] = ['name', 'like', '%'. trim($get['name']. '%')];
  511. }
  512. // 主营类目
  513. if(isset($get['shop_cate_id']) && !empty($get['shop_cate_id'])) {
  514. $where[] = ['cid', '=', $get['shop_cate_id']];
  515. }
  516. $city = DevRegion::where('id',$get['city_id'])->field('db09_lng,db09_lat')->findOrEmpty()->toArray();
  517. $list = Shop::field('id,name,logo,background,visited_num,cover,banner,st_distance_sphere(point('.$city['db09_lng'].','.$city['db09_lat'].'),point(longitude, latitude)) as distance')
  518. ->where($where)
  519. // 无限期 或 未到期
  520. ->whereRaw('expire_time =0 OR expire_time > '. time())
  521. ->order('distance asc')
  522. ->page($get['page_no'], $get['page_size'])
  523. ->select()
  524. ->toArray();
  525. $count = Shop::where($where)
  526. // 无限期 或 未到期
  527. ->whereRaw('expire_time =0 OR expire_time > '. time())
  528. ->count();
  529. $onSaleWhere = [
  530. ['del', '=', GoodsEnum::DEL_NORMAL], // 未删除
  531. ['status', '=', GoodsEnum::STATUS_SHELVES], // 上架中
  532. ['audit_status', '=', GoodsEnum::AUDIT_STATUS_OK], // 审核通过
  533. ];
  534. foreach($list as &$shop) {
  535. $shop['goods_list'] = Goods::field('id,image,name,min_price,market_price')
  536. ->where($onSaleWhere)
  537. ->where([
  538. 'shop_id' => $shop['id'],
  539. ])
  540. ->select()
  541. ->toArray();
  542. $shop['on_sale_goods'] = count($shop['goods_list']);
  543. // logo及背景图
  544. $shop['logo'] = $shop['logo'] ? UrlServer::getFileUrl($shop['logo']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_LOGO);
  545. $shop['background'] = $shop['background'] ? UrlServer::getFileUrl($shop['background']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_BG);
  546. $shop['cover'] = $shop['cover'] ? UrlServer::getFileUrl($shop['cover']) : UrlServer::getFileUrl(ShopEnum::DEFAULT_COVER);
  547. $shop['banner'] = $shop['banner'] ? UrlServer::getFileUrl($shop['banner']) : '';
  548. //转换距离单位
  549. if ($shop['distance'] < 1000) {
  550. $shop['distance'] = round($shop['distance']).'m';
  551. }else {
  552. $shop['distance'] = round($shop['distance'] / 1000,2).'km';
  553. }
  554. }
  555. $more = is_more($count, $get['page_no'], $get['page_size']);
  556. $data = [
  557. 'list' => $list,
  558. 'count' => $count,
  559. 'more' => $more,
  560. 'page_no' => $get['page_no'],
  561. 'page_isze' => $get['page_size']
  562. ];
  563. return $data;
  564. }
  565. public static function getXhsDefaultAppuim()
  566. {
  567. $data = [
  568. '默认' => '',
  569. "搜索列表" => '//androidx.recyclerview.widget.RecyclerView[@class="androidx.recyclerview.widget.RecyclerView"]/android.widget.FrameLayout[@class="android.widget.FrameLayout"]/android.widget.RelativeLayout[@class="android.widget.RelativeLayout"]/android.widget.TextView[@class="android.widget.TextView" and @text!=""]',
  570. "推荐列表" => '//androidx.recyclerview.widget.RecyclerView[@class="androidx.recyclerview.widget.RecyclerView"]/android.widget.LinearLayout[@class="android.widget.LinearLayout" and @content-desc!=""]',
  571. '推荐列表元素' => '//android.widget.LinearLayout[@content-desc="变量1"]',
  572. '搜索列表元素' => '//android.widget.TextView[@text="变量1"]',
  573. "私信发送按钮" => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.TextView[contains(@text,"发送")]',
  574. '判断当前是否视频' => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.Button[@content-desc="分享"]',
  575. '视频评论数' => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.Button[contains(@content-desc,"评论")]',
  576. '视频分享按钮' => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.Button[@content-desc="分享"]',
  577. '视频获取账号名称' => '//android.widget.Button[contains(@content-desc,"作者") and @class="android.widget.Button"]/android.widget.LinearLayout[@class="android.widget.LinearLayout"]/android.widget.TextView[@class="android.widget.TextView"]',
  578. "视频获取点赞按钮" => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.Button[contains(@content-desc,"点赞")]',
  579. "视频获取收藏按钮" => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.Button[contains(@content-desc,"收藏")]',
  580. "视频详情返回按钮" => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.Button[contains(@content-desc,"返回")]'
  581. ];
  582. return $data;
  583. }
  584. public static function getXhsDefaultU2()
  585. {
  586. $data = [
  587. '默认' => ''
  588. ];
  589. return $data;
  590. }
  591. public static function getXhsAppuim_1()
  592. {
  593. // /parent::*[1]/
  594. $data = [
  595. "默认" => '',
  596. "搜索列表" => '//androidx.recyclerview.widget.RecyclerView[@class="androidx.recyclerview.widget.RecyclerView"]/android.widget.FrameLayout[@class="android.widget.FrameLayout"]/android.widget.RelativeLayout[@class="android.widget.RelativeLayout"]/android.widget.TextView[@class="android.widget.TextView" and @text!=""]',
  597. "推荐列表" => '//androidx.recyclerview.widget.RecyclerView[@class="androidx.recyclerview.widget.RecyclerView"]/android.widget.FrameLayout[@class="android.widget.FrameLayout" and @content-desc!=""]',
  598. '推荐列表元素' => '//android.widget.FrameLayout[@content-desc="变量1"]',
  599. '搜索列表元素' => '//android.widget.TextView[@text="变量1"]',
  600. "私信发送按钮" => '//android.widget.RelativeLayout[@class="android.widget.RelativeLayout"]/android.widget.TextView[contains(@text,"发送")]',
  601. '判断当前是否视频' => '//android.widget.FrameLayout[@class="android.widget.FrameLayout" and @index="1"]/android.widget.LinearLayout[@index="0"]/android.widget.LinearLayout[@index="3"]/android.widget.TextView[@class="android.widget.TextView"]',
  602. '视频评论数' => '//android.widget.FrameLayout[@class="android.widget.FrameLayout" and @index="1"]/android.widget.LinearLayout[@index="0"]/android.widget.LinearLayout[@index="1"]/android.widget.TextView[@class="android.widget.TextView"]',
  603. '视频分享按钮' => '//android.widget.FrameLayout[@class="android.widget.FrameLayout" and @index="1"]/android.widget.LinearLayout[@index="0"]/android.widget.LinearLayout[@index="4"]/android.widget.ImageView[@class="android.widget.ImageView"]',
  604. '视频获取账号名称' => '//android.widget.FrameLayout[@class="android.widget.FrameLayout"]/android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.LinearLayout[@class="android.widget.LinearLayout"]/android.widget.LinearLayout[@class="android.widget.LinearLayout"]/android.widget.TextView[@class="android.widget.TextView"]',
  605. "视频获取点赞按钮" => '//android.widget.FrameLayout[@class="android.widget.FrameLayout" and @index="1"]/android.widget.LinearLayout[@index="0"]/android.widget.LinearLayout[@index="0"]/android.widget.TextView[@class="android.widget.TextView"]',
  606. "视频获取收藏按钮" => '//android.widget.FrameLayout[@class="android.widget.FrameLayout" and @index="1"]/android.widget.LinearLayout[@index="0"]/android.widget.LinearLayout[@index="2"]/android.widget.TextView[@class="android.widget.TextView"]',
  607. "视频详情返回按钮" => '//android.view.ViewGroup[@class="android.view.ViewGroup"]/android.widget.ImageView[contains(@content-desc,"返回")]'
  608. ];
  609. return $data;
  610. }
  611. public static function getXhsU2_1()
  612. {
  613. $data = [
  614. '默认' => ''
  615. ];
  616. return $data;
  617. }
  618. }