Quellcode durchsuchen

修改界面,改成主页面形式

kindring vor 1 Jahr
Ursprung
Commit
f2f6631508

+ 11 - 0
api/sony.js

@@ -0,0 +1,11 @@
+import { sonyItems } from '../data/sony_item.js'
+
+/**
+ * 获取索尼功能实现清单
+ * @returns {Promise} [err,sonyItems]
+ */
+export function loadSonyItem(){
+    return new Promise((resolve,reject)=>{
+        resolve([null,sonyItems])
+    })
+}

+ 22 - 2
app.json

@@ -1,12 +1,32 @@
 {
   "pages":[
     "pages/index/index",
-    "pages/logs/logs"
+    "pages/old/index",
+    "pages/tools/tools"
   ],
+  "tabBar": {
+    "list": [
+        {
+            "pagePath": "pages/index/index",
+            "iconPath": "icons/png/index.png",
+            "selectedIconPath": "icons/png/index-active.png"
+        },
+        {
+          "pagePath": "pages/old/index",
+          "iconPath": "icons/png/cam.png",
+          "selectedIconPath": "icons/png/cam-active.png"
+        },
+        {
+          "pagePath": "pages/tools/tools",
+          "iconPath": "icons/png/ble.png",
+          "selectedIconPath": "icons/png/ble-active.png"
+        }
+    ]
+},
   "window":{
     "backgroundTextStyle":"light",
     "navigationBarBackgroundColor": "#fff",
-    "navigationBarTitleText": "索尼遥控",
+    "navigationBarTitleText": "蓝牙控制器",
     "navigationBarTextStyle":"black"
   },
   "style": "v2",

+ 176 - 1
app.wxss

@@ -23,10 +23,185 @@
   background-color: #c2b8b8;
   box-shadow: 1px 1px 5px black;
 }
+
+/* 方块组件 */
+.rounded-chunk{
+  width: 100%;
+  height: auto;
+  /* display: flex; */
+  padding: 5px;
+  box-sizing: border-box;
+}
+.rounded-chunk > .chunk{
+  width: 100%;
+  height: auto;
+  display: flex;
+  flex-direction: column;
+  justify-content: center;
+  align-items: center;
+  background-color: #f5f5f5;
+  border-radius: 3px;
+  box-shadow: 1px 1px 5px black;
+}
+.chunk-title{
+  width: 100%;
+  font-size: large;
+  height: auto;
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  padding: 5px;
+  box-sizing: border-box;
+  background-color: #f5f5f5;
+  box-shadow: 1px 1px 5px black;
+}
+
+.c-content{
+  width: 100%;
+  height: auto;
+  display: flex;
+  flex-direction: column;
+  justify-content: center;
+  align-items: center;
+  padding: 5px;
+  box-sizing: border-box;
+  background-color: #f5f5f5;
+  box-shadow: 1px 1px 5px black;
+}
+
+.line{
+  width: 100%;
+  height: 35px;
+  display: flex;
+  box-sizing: border-box;
+  align-items: center;
+  background-color: #f5f5f5;
+  padding:  5px;
+}
+.line > .info{
+  width: 70%;
+  height: 100%;
+  display: flex;
+  /* justify-content: center; */
+  align-items: center;
+  box-sizing: border-box;
+  border-right: 1px solid #d9d9d9;
+}
+.line > .select{
+  width: 30%;
+  height: 100%;
+  display: flex;
+  justify-content: center;
+  align-items: center;
+}
+
+.align-left{
+  text-align: left;
+}
+/** 上半圆 **/
+.rounded-t{
+  border-radius: 3px 3px 0 0;
+}
+
+/** 下半圆 **/
+.rounded-b{
+  border-radius: 0 0 3px 3px;
+}
+.hr-b{
+  border-bottom: 1px solid #d9d9d9;
+}
+.hr-t{
+  border-top: 1px solid #d9d9d9;
+}
+
+/* 字体大小 */
+.bool-font{
+  font-weight: bold;
+}
+
+.font-xxl{
+  font-size: xx-large;
+}
+.font-xl{
+  font-size: x-large;
+}
+.font-l{
+  font-size: large;
+}
+.font-m{
+  font-size: medium;
+}
+.font-s{
+  font-size: small;
+}
+.font-xs{
+  font-size: x-small;
+}
+
+/* 字体颜色 */
+.red{
+  color: red;
+}
+.black{
+  color: black;
+}
+.gray{
+  color: gray;
+}
+.white{
+  color: white;
+}
+.green{
+  color: green;
+}
+
+/* 横向排列 */
+.flex-row{
+  display: flex;
+  flex-direction: row;
+  justify-content: center;
+  align-items: center;
+}
+
+.w-full{
+  width: 100%;
+}
 .mx-10{
   margin-left: 10px;
   margin-right: 10px;
 }
 .text-red{
   color: red;
-}
+}
+
+.mt-sm{
+  margin-top: 5px;
+}
+.mt{
+  margin-top: 10px;
+}
+.mt-xl{
+  margin-top: 15px;
+}
+.mt-xxl{
+  margin-top: 20px;
+}
+.p2{
+  padding: 2px;
+}
+.pt-2{
+  padding-top: 2px;
+}
+.pb-2{
+  padding-bottom: 2px;
+}
+.pl-2{
+  padding-left: 2px;
+}
+.pr-2{
+  padding-right: 2px;
+}
+
+.rounded{
+  border-radius: 3px;
+}

+ 27 - 0
components/fnState/fnState.js

@@ -0,0 +1,27 @@
+// components/led..js
+Component({
+  /**
+   * 组件的属性列表
+   * state: 0 未实现 1 已实现 2 开发中 3 已废弃 4 实现未测试 5 实现待优化
+   */
+  properties: {
+    state: {
+      type: Number,
+      default: 0
+    },
+  },
+
+  /**
+   * 组件的初始数据
+   */
+  data: {
+
+  },
+
+  /**
+   * 组件的方法列表
+   */
+  methods: {
+
+  }
+})

+ 3 - 0
components/fnState/fnState.json

@@ -0,0 +1,3 @@
+{
+  "component": true
+}

+ 10 - 0
components/fnState/fnState.wxml

@@ -0,0 +1,10 @@
+<!--components/led..wxml-->
+<!-- state: 0 未实现 1 已实现 2 开发中 3 已废弃 4 实现未测试 5 实现待优化 -->
+<view class="fnState">
+    <view wx:if="{{state === 0}}" class="fnState__item {{state == 0 ? 'fnState__item--not' : ''}}">未实现</view>
+    <view wx:if="{{state === 1}}" class="fnState__item {{state == 1 ? 'fnState__item--done' : ''}}">√</view>
+    <view wx:if="{{state === 2}}" class="fnState__item {{state == 2 ? 'fnState__item--dev' : ''}}">开发中</view>
+    <view wx:if="{{state === 3}}" class="fnState__item {{state == 3 ? 'fnState__item--abandon' : ''}}">X</view>
+    <view wx:if="{{state === 4}}" class="fnState__item {{state == 4 ? 'fnState__item--test' : ''}}">实现未测试</view>
+    <view wx:if="{{state === 5}}" class="fnState__item {{state == 5 ? 'fnState__item--optimize' : ''}}">实现待优化</view>
+</view>

+ 36 - 0
components/fnState/fnState.wxss

@@ -0,0 +1,36 @@
+/* components/fnState.wxss */
+/* state: 0 未实现 1 已实现 2 开发中 3 已废弃 4 实现未测试 5 实现待优化 */
+.fnState__item{
+  width: 100%;
+  height: auto;
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  padding: 2px;
+  box-sizing: border-box;
+  /* background-color: #f5f5f5; */
+  /* box-shadow: 1px 1px 5px black; */
+}
+
+.fnState__item--not{
+  color: #7a7777;
+}
+.fnState__item--done{
+  color: #09db4f;
+  font-size: x-large;
+}
+.fnState__item--dev{
+  background-color: #f5f5f5;
+  color: rgb(230, 230, 22);
+}
+
+.fnState__item--abandon{
+  color: #eb0000;
+  font-size: x-large;
+}
+.fnState__item--test{
+  color: #7a7777;
+}
+.fnState__item--optimize{
+  color: #7a7777;
+}

+ 41 - 0
data/sony_item.js

@@ -0,0 +1,41 @@
+// 索尼功能实现清单
+
+// state: 0 未实现 1 已实现 2 开发中 3 已废弃 4 实现未测试 5 实现待优化
+export const sonyItems = [
+    {
+        fnKey: "sortControl",
+        title: '快门控制',
+        desc: '通过蓝牙控制相机快门',
+        state: 1
+    },
+    {
+        fnKey: "sortControl1",
+        title: '快门控制1',
+        desc: '通过蓝牙控制相机快门',
+        state: 0
+    },
+    {
+        fnKey: "sortControl2",
+        title: '快门控制',
+        desc: '通过蓝牙控制相机快门',
+        state: 2
+    },
+    {
+        fnKey: "sortControl3",
+        title: '快门控制',
+        desc: '通过蓝牙控制相机快门',
+        state: 3
+    },
+    {
+        fnKey: "sortControl4",
+        title: '快门控制',
+        desc: '通过蓝牙控制相机快门',
+        state: 4
+    },
+    {
+        fnKey: "sortControl5",
+        title: '快门控制',
+        desc: '通过蓝牙控制相机快门',
+        state: 5
+    },
+]

+ 1 - 0
icons/ble.svg

@@ -0,0 +1 @@
+<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1699717711775" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5468" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M404.384 510.336l194.656-207.52a32 32 0 0 0-2.752-46.4l-220.224-184.896A32.032 32.032 0 0 0 323.456 96v334.048L150.208 258.176a31.968 31.968 0 1 0-45.056 45.44l209.984 208.32-210.784 224.704a32.032 32.032 0 0 0 46.688 43.808l172.416-183.84v360.896a32.064 32.064 0 0 0 32 32 31.936 31.936 0 0 0 23.232-9.984l220.224-232.192a32 32 0 0 0-0.672-44.736l-193.856-192.256z m-16.928-345.664l141.76 119.008-141.76 151.168V164.672z m0 712.608V583.68l143.488 142.336-143.488 151.264zM694.848 341.792a32 32 0 0 0-53.184 35.648 204.8 204.8 0 0 1 34.656 114.432 204.672 204.672 0 0 1-34.624 114.4 31.968 31.968 0 1 0 53.12 35.648 268.512 268.512 0 0 0 45.504-150.048 268.8 268.8 0 0 0-45.472-150.08zM886.528 326.432a441.536 441.536 0 0 0-41.152-77.024 32 32 0 1 0-53.184 35.616 379.648 379.648 0 0 1 64.16 211.744 380.512 380.512 0 0 1-64.16 211.744 32.032 32.032 0 0 0 53.184 35.648 443.328 443.328 0 0 0 74.976-247.36c0-58.88-11.392-116.192-33.824-170.368z" p-id="5469"></path></svg>

+ 1 - 0
icons/home.svg

@@ -0,0 +1 @@
+<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1699717538667" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2585" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M946.5 505L560.1 118.8l-25.9-25.9c-12.3-12.2-32.1-12.2-44.4 0L77.5 505c-12.3 12.3-18.9 28.6-18.8 46 0.4 35.2 29.7 63.3 64.9 63.3h42.5V940h691.8V614.3h43.4c17.1 0 33.2-6.7 45.3-18.8 12.1-12.1 18.7-28.2 18.7-45.3 0-17-6.7-33.1-18.8-45.2zM568 868H456V664h112v204z m217.9-325.7V868H632V640c0-22.1-17.9-40-40-40H432c-22.1 0-40 17.9-40 40v228H238.1V542.3h-96l370-369.7 23.1 23.1L882 542.3h-96.1z" p-id="2586"></path></svg>

+ 1 - 0
icons/nav_home-active.svg

@@ -0,0 +1 @@
+<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1699717638517" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3611" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M931.081481 416.426667L553.14963 74.334815C541.771852 62.577778 526.791111 56.888889 512 56.888889s-29.771852 5.688889-41.14963 17.445926L92.918519 416.426667c-10.998519 10.998519-17.066667 26.168889-17.066667 41.908148v449.611852C75.851852 940.562963 101.831111 967.111111 134.068148 967.111111h756.053333c32.047407 0 58.216296-26.548148 58.216297-59.354074v-449.422222c-0.18963-15.739259-6.257778-30.90963-17.256297-41.908148zM647.774815 853.333333H376.225185c-23.703704 0-42.856296-19.152593-42.856296-42.666666s19.152593-42.666667 42.856296-42.666667h271.739259c23.703704 0 42.856296 19.152593 42.856297 42.666667 0 23.703704-19.342222 42.666667-43.045926 42.666666z" fill="#FFFFFF" p-id="3612"></path></svg>

BIN
icons/png/ble-active.png


BIN
icons/png/ble.png


BIN
icons/png/cam-active.png


BIN
icons/png/cam.png


BIN
icons/png/index-active.png


BIN
icons/png/index.png


+ 75 - 452
pages/index/index.js

@@ -1,469 +1,92 @@
-// index.js
-// 获取应用实例
-const getBle =  require("../../utils/ble");
-const handle = require("../../utils/handle");
-const sleep = require("../../utils/sleep");
-const TimeClock = require('../../utils/timer');
-const app = getApp();
-const ble = getBle();
-
-let services = [];
-const timeClock = new TimeClock();
-const connectStateMap = {
-  0: {text:'未连接',color:"red"},
-  1:  {text:'扫描中',color:"greenYellow"},
-  2:  {text:'连接中',color:"#d8e84d"},
-  3:  {text:'已连接',color:"#00ff00"}
-}
-const bleStateEnum = {
-  notConnect: 0,
-  searching: 1,
-  connecting: 2,
-  connected: 3,
-}
-
-const bleServerMap = {
-  control: {
-    uuid:'8000CC00-CC00-FFFF-FFFF-FFFFFFFFFFFF',
-    text: '摄像控制服务',
-    listen: {
-      controlTip: '0000CC01',
-      controlType: '0000CC02',
-    },
-    code:{
+// pages/index/index.js
+import { loadSonyItem } from '../../api/sony.js'
+import { handle } from '../../utils/handle.js'
+Page({
 
-    }
-  },
-  location : {
-    uuid:'8000DD00-DD00-FFFF-FFFF-FFFFFFFFFFFF',
-    text: '相机定位服务'
-  },
-  remote : {
-    uuid:'8000FF00-FF00-FFFF-FFFF-FFFFFFFFFFFF',
-    text: '摄像机远程控制服务',
-    code:{
-      hold:{
-        firstUuid: '0000FF01',
-        command: {
-          cmd1:'0107',//Focus Down
-          shutterDown:'0109',//PRESS_TO_FOCUS
-          shutterUp:'0108',//HOLD_FOCUS
-          cmd4:'0106',//Focus Up
-        }
-      }
-    }
+  /**
+   * 页面的初始数据
+   */
+  data: {
+    sonyItems: []
   },
-  pariring : {
-    uuid:'8000EE00-EE00-FFFF-FFFF-FFFFFFFFFFFF',
-    text: '相机配对服务',
-    code: {
-      pariring: {
-        firstUuid: '0000EE01',
-        command: {
-          // 配对
-          connect: '06 08 01 00 00 00',
-          // 取消配对
-          disConnect: '06 08 02 00 00 00',
-          // 关机
-          poweroff:'03 08 13'
-        }
-      }
-    }
+
+  /**
+   * 生命周期函数--监听页面加载
+   */
+  async onLoad(options) {
+    // 获取索尼功能实现清单
+    let err,sonyItems;
+    [err,sonyItems] = await loadSonyItem()
+    if(err){
+      console.log(err)
+      return
+    }
+    console.log(sonyItems)
+    this.setData({
+      sonyItems: sonyItems
+    })
   },
 
-}
+  /**
+   * 生命周期函数--监听页面初次渲染完成
+   */
+  onReady() {
 
-let isOnceTimer = null;
-let isLongClick = false;// 是否为长按
-let isBulbState = false;// 是否处于b门模式下
-Page({
-  data: {
-    connectStateMap,
-    bleStateEnum,
-    isDebug: false,
-    ble:{
-      state: 0,
-      init: false,
-    },
-    remoteDev:{
-      connect: false,
-      devName: "",
-      devId: '',
-      shutter: false,
-    },
-    bleDevs:[],// 搜索到的蓝牙设备列表
-    motto: 'Hello World',
-    userInfo: {},
-    hasUserInfo: false,
-    shutterBtnY1: 0,
-    isHolder: false,
-    time_minute: 0,// 分
-    time_second: 0,// 秒
-    time_ms: 0,// 毫秒
-    canIUse: wx.canIUse('button.open-type.getUserInfo'),
-    canIUseGetUserProfile: false,
-    canIUseOpenData: wx.canIUse('open-data.type.userAvatarUrl') && wx.canIUse('open-data.type.userNickName') // 如需尝试获取用户信息可改为false
   },
-  async onShow(){
-    timeClock.setHook((msNum)=>{
-      // console.log(msNum);
-      let res = timeClock.parse(msNum)
-      // console.log(res);
-      this.setData({
-        time_minute:res.minute,
-        time_second:res.second,
-        time_ms:res.ms,
-      })
-    });
-    // 初始化蓝牙
-    
-    try {
-      console.log("init ble");
-      await ble.initBle();
-      ble.onSearch = this.onSearchHandle;
-      this.setData({
-        ble: {...this.data.ble,init: true},
-      })
-    } catch (error) {
-      console.log(error);
-      this.setData({
-        ble: {...this.data.ble,init: false},
-      })
-      wx.showModal({
-        title: '初始化蓝牙失败',
-        content: error.errMsg,
-        success (res) {
-          if (res.confirm) {
-            console.log('用户点击确定')
-          } else if (res.cancel) {
-            console.log('用户点击取消')
-          }
-        }
-      })
-    }
+
+  /**
+   * 生命周期函数--监听页面显示
+   */
+  onShow() {
+    // 配置导航栏
+    wx.setNavigationBarTitle({
+      title: '蓝牙工具箱'
+    })
   },
-  async holdFoucus(){
-    console.log("发送对焦命令");
+
+  /**
+   * 生命周期函数--监听页面隐藏
+   */
+  onHide() {
+
   },
+
   /**
-   * 
-   * @param {*} isDown 按下或者抬起快门
-   * @param {*} isBulb 是否为b门模式下释放快门
+   * 生命周期函数--监听页面卸载
    */
-  async devControlShutter(isDown = true,isBulb = false){
-    let cmds,waitTime=10;
-    let code = bleServerMap.remote.code.hold;
-    let dev = this.data.bleDevs.find(dev=>this.data.remoteDev.devId===dev.deviceId);
-    let server = services.find(s=>s.uuid === bleServerMap.remote.uuid);
-    if(!server){console.log('无法找到远程控制服务')}
-    let characteristic = server.characteristics.find(c=>c.uuid.startsWith(code.firstUuid));
-    if(!characteristic){return console.log('无法匹配到特征')}
-    if(isDown){
-      console.log('快门抬起')
-      // 发送抬起快门
-      cmds =[
-        code.command.shutterUp,
-      ]
-      if(isBulb){
-        // b 门模式下需要再次按下快门在进行释放
-        cmds.push(code.command.shutterDown);
-        cmds.push(code.command.shutterUp);
-      }
-    }else{
-      console.log('快门按下')
-      cmds =  [code.command.shutterDown]
-    }
-    for (let index = 0; index < cmds.length; index++) {
-      const cmd = cmds[index];
-      let [_err,_res] = await handle(ble.sendData(
-        dev.deviceId,
-        server.uuid,
-        characteristic.uuid,
-        cmd.replace(/\s/g,'')
-        ));
-        if(_err){
-          // console.log('发送命令失败');
-          console.error(_err);
-        }
-        // console.log('发送命令成功');
-        await sleep(waitTime);
-    }
+  onUnload() {
+
   },
-  async touchStartHandle(e){
-    // console.log("按钮按下");
-    // console.log(e);
-    // todo 获取当前的y信息
-    let touche = e.touches[0];
-    let y1 = 0;
-    if(touche){
-      y1 = touche.clientY;
-    }
-    this.data.shutterBtnY1 = y1;
-    isLongClick = false;
-    // 按住700毫秒后视作长按
-    isOnceTimer = setTimeout(()=>{
-      isLongClick = true;
-      isOnceTimer = null;
-    },
-    700);
-    if(this.data.isHolder){
-      // 已经按下,视作已经发送按下快门的操作
-      return false;
-    }else{
-      // todo 未按下,发送按下快门的操作
-      this.devControlShutter(false);
-      timeClock.start();
-    }
-    // 记录当前时间. 等抬起时再次获取
+
+  /**
+   * 页面相关事件处理函数--监听用户下拉动作
+   */
+  onPullDownRefresh() {
+
   },
-  async touchEndHandle(e){
-    console.log("按钮抬起");
-    clearTimeout(isOnceTimer);
-    isOnceTimer = null;
-    if(this.data.isHolder){
-      // 按住,not do sth
-      isBulbState = true;
-    }else{
-      // 抬起按钮
-      timeClock.stop();
-      if(isBulbState){
-        // 处于b门模式
-        console.log(`[b门长曝光结束] 曝光时长 ${this.data.time_minute}:${this.data.time_second}:${this.data.time_ms}`);
-        this.devControlShutter(true,true);
-        isBulbState = false;
-        return false;
-      }
-      if(isLongClick){
-        // 长按
-        this.devControlShutter(true);
-      }else{
-        // 短按,等待500ms 后发送抬起的命令
-        setTimeout(()=>{
-          console.log("短按,自动跟发一条抬起快门命令");
-          this.devControlShutter(true);
-        },500)
-      }
-      
-    }
+
+  /**
+   * 页面上拉触底事件的处理函数
+   */
+  onReachBottom() {
+
   },
-  async touchMoveHandle(e){
-    // console.log("按钮移动");
-    let touche = e.touches[0];
-    let y1 = this.data.shutterBtnY1;
-    let y2 = 0;
-    if(touche){
-      y2 = touche.clientY;
-    }
-    let endY = y2 - y1;
-    if(Math.abs(endY)<15){
-      // console.log("移动范围太小")
-      return false;
-    }
-    this.data.shutterBtnY1 = y2;
-    if(endY < 0){
-      console.log('+');
-      this.setData({
-        isHolder:true
-      })
-    }else{
-      console.log('-');
-      this.setData({
-        isHolder:false
-      })
-    }
+
+  /**
+   * 用户点击右上角分享
+   */
+  onShareAppMessage() {
+
   },
-  async connectDev(e){
-    let devId = e.currentTarget.dataset.dev;
-    let dev = this.data.bleDevs.find(dev=>devId===dev.deviceId);
-    let err,res;
-    if(!dev){
-      return wx.showToast({
-        title: '数据库异常,无法找寻设备',
-      })
+
+  toPage(e){
+    // 获取页面路径
+    let url = e.currentTarget.dataset.url
+    if(!url){
+      return
     }
-    console.log(dev);
-    // 连接设备
-      this.setData({
-        ble: {...this.data.ble,state: bleStateEnum.connecting},
-      });
-      [err,res] = await handle(ble.stopSearch());
-      if(err){return wx.showToast({ title: '关闭微信失败', })}
-      wx.showToast({
-        title: `尝试${dev.name}中...`,
-      })
-      [err,res] = await handle(ble.connectDev(devId));
-      if(err){
-        return wx.showToast({
-          title: '连接失败'+err.errMsg,
-        })
-      }
-      console.log('设备连接成功');
-      this.setData({
-        remoteDev: {
-          ...this.data.remoteDev,
-          devId: devId,
-          devName: dev.name
-        }
-      });
-      console.log(res);
-      // 然后呢? 
-      this.setData({
-        ble:{...this.data.ble,state:bleStateEnum.connected}
-      });
-      // 获取服务与特征
-      [err,res] = await handle(ble.getBleServices(devId));
-      if(err){
-        wx.showToast({
-          title: '搜索蓝牙服务失败',
-        });
-        return console.log(err);
-      }
-      res.forEach(async val=>{
-        console.log('******');
-        console.log(val.uuid);
-        let _err,_res;
-        if(val.uuid === bleServerMap.pariring.uuid ){
-          // 尝试直接向设备发起连接
-          console.log('设备配对服务');
-          // 获取特征值id
-          let code_pariring = bleServerMap.pariring.code.pariring
-          let characteristic = val.characteristics.find(c=>c.uuid.startsWith(code_pariring.firstUuid));
-          if(!characteristic){return console.log('无法配对')}
-          [_err,_res] = await handle(ble.sendData(
-            devId,
-            val.uuid,
-            characteristic.uuid,
-            code_pariring.command.connect.replace(/\s/g,'')
-            ));
-            if(_err){
-              wx.showToast({
-                title: 'Err:发送蓝牙数据失败??',
-              })
-              // 尝试关闭设备
-              setTimeout(async ()=>{
-                console.log('发送关机命令');
-                [_err,_res] = await handle(ble.sendData(
-                  devId,
-                  val.uuid,
-                  characteristic.uuid,
-                  code_pariring.command.disConnect.replace(/\s/g,'')
-                  ));
-                  if(_err){
-                    console.error(_err)
-                    wx.showToast({
-                      title: 'Err:发送设备关机命令失败??',
-                    })
-                  } else{
-                    wx.showToast({
-                      title: '发送关机命令成功??',
-                    });
-                  }
-              },10000);
-              
-               console.log(_err);
-            }
-            console.log(res);
-            wx.showToast({
-              title: '发送配对指令成功',
-            })
-        }else if(val.uuid === bleServerMap.control.uuid){
-          let listenCode = bleServerMap.control.listen;
-          // [_err,_res] = await handle(ble.listenData(devId,val.uuid,listenCode.controlTip));
-          // console.log(_res);
-          // [_err,_res] = await handle(ble.listenData(devId,val.uuid,listenCode.controlTip));
-          // console.log(_res);
-          // if(_err){
-          //   console.log('控制端口监听失败');
-          //   console.error(_err);
-          //   console.log('控制端口监听失败');
-          // }
-          // console.log('控制端口监听完成')
-        }else if(val.uuid === bleServerMap.pariring.uuid ){
-          // 尝试直接向设备发起连接
-          console.log('设备配对服务');
-          // 获取特征值id
-          let code = bleServerMap.remote.code.hold
-          let characteristic = val.characteristics.find(c=>c.uuid.startsWith(code.firstUuid));
-          if(!characteristic){return console.log('无法配对')}
-          
-            
-             
-            if(_err){
-              wx.showToast({
-                title: 'Err:发送快门控制命令失败',
-              })
-              // 尝试关闭设备
-              
-               console.log(_err);
-            }
-            console.log(res);
-            wx.showToast({
-              title: '发送按住快门指令成功',
-            })
-        }
-        console.log('******');
-        console.log(val.uuid);
-        val.characteristics.forEach(c=>{
-          console.log(c);
-        });
-        // 查看是否会有对应特征值
-        console.log('******');
-      })
-      wx.showToast({
-        title: '蓝牙服务搜索成功',
-      });
-      services = res;
-  },
-  // 事件处理函数
-  bindViewTap() {
     wx.navigateTo({
-      url: '../logs/logs'
-    })
-  },
-  async searchDevice(){
-    console.log("搜索 蓝牙设备");
-    if(!this.data.ble.init){
-      return wx.showModal({
-        title: '蓝牙错误',
-        content: "无法启用蓝牙!!!",
-        success (res) { }
-      }) 
-    }
-    this.setData({
-      ble: {...this.data.ble,state: bleStateEnum.searching},
-    });
-    ble.search(this.onSearchHandle);
-  },
-  onSearchHandle(device){
-    console.log('搜索到设备');
-    if(this.data.bleDevs.find(dev=>dev.deviceId === device.deviceId )){
-      return console.log('设备再次被搜索到');
-    }
-    console.log(device);
-    let arr = this.data.bleDevs;
-    arr.push(device);
-    this.setData({
-      bleDevs:arr
+      url: url
     })
-  },
-  tapState(){
-    switch(this.data.ble.state){
-      case bleStateEnum.notConnect:
-        this.searchDevice();
-        break;
-      case bleStateEnum.searching:
-        break;
-      case bleStateEnum.connecting:
-        break;
-      case bleStateEnum.connected:
-        break;
-    }
-  },
-  onLoad() {
-    if (wx.getUserProfile) {
-      this.setData({
-        canIUseGetUserProfile: true
-      })
-    }
-  },
-})
+  }
+})

+ 1 - 1
pages/index/index.json

@@ -1,6 +1,6 @@
 {
   "usingComponents": {
-    "led": "/components/stateLed/stateLed"
+    "fnState": "/components/fnState/fnState"
   },
   "disableScroll":true
 }

+ 30 - 55
pages/index/index.wxml

@@ -1,60 +1,35 @@
-<!--index.wxml-->
-<view class="container">
-  <view class="header" wx:if="{{isDebug}}">
-  {{ble.state}}
-  </view>
-  <view class="header">
-    <view class="state-info" bindtap="tapState">
-     <led color="{{connectStateMap[ble.state].color}}" width="15"/> {{connectStateMap[ble.state].text}}
-    </view>
-    <view class="state-msg" wx:if="{{ble.state == bleStateEnum.connected}}">
-      {{remoteDev.devName}}
-    </view>
-    <view class="state-msg" wx:if="{{ble.state == bleStateEnum.notConnect}}">
-      <view class="custom-info-btn" bindtap="searchDevice" >扫描</view>
-    </view>
-    <view class="state-msg" wx:if="{{ble.state == bleStateEnum.connecting}}">
-      <view class="custom-info-btn" bindtap="searchDevice" >重新扫描</view>
+<!-- 导航栏,索尼蓝牙遥控与蓝牙调试器工具 -->
+<view class="rounded-chunk">
+    <view class="chunk">
+        <!-- change log -->
+        <view class="chunk-title rounded-t">蓝牙控制器</view>
+        <view class="c-content rounded-b">
+            <!-- info -->
+            本工具用于调试蓝牙设备,包括蓝牙设备的搜索、连接、断开、发送数据、接收数据等功能。
+        </view>
     </view>
-  </view>
 
-  <view class="bleDevices" wx:if="{{ble.state == bleStateEnum.searching || ble.state == bleStateEnum.connecting }}">
-    <view class="title">
-      设备列表
-      <view class="mx-10 text-red">{{bleDevs.length}}</view>
-    </view>
-    <view class="devList">
-      <view class="devItem" wx:for="{{bleDevs}}" wx:key="deviceId" >
-        <view class="devInfo">
-          <view class="name">{{item.name}}</view>
-          <view class="devId">{{item.deviceId}}</view>
+    <view class="chunk mt">
+        <!-- change log -->
+        <view class="chunk-title rounded-t">索尼遥控</view>
+        <view class="c-content">
+            <!-- info -->
+            本工具用于控制索尼相机,拍照
         </view>
-        <view class="option">
-          <view class="custom-info-btn" data-dev="{{item.deviceId}}" bindtap="connectDev">连接</view>
-        </view>
-      </view>
-    </view>
-  </view>
+        <view class="c-content rounded-b">
+            
+            <view class="line hr-b" 
+            wx:for="{{sonyItems}}" 
+            wx:key="fnKey" 
+            wx:for-index="idx">
+                <view class="info align-left">{{item.title}}</view>
+                <!-- 判断是否为最后一个元素 -->
+                <view class="select {{idx === (sonyItems.length - 1) ? '':'bool-font'}}">
+                    <fnState state="{{item.state}}"></fnState>
+                </view>
+                
+            </view>
 
-  <view class="conetrol" wx:if="{{ble.state === bleStateEnum.connected}}">
-    <button bindtap="holdFoucus">对焦</button>
-    
-    <view class="center-row mt-5">
-      <view class="shutter-box">  
-      <view
-      class="shutter-btn {{isHolder?' shutter-holder':''}}" 
-      capture-bind:touchstart="touchStartHandle"
-      capture-bind:touchend="touchEndHandle"
-      capture-bind:touchmove="touchMoveHandle"
-    >
-      </view>
-    </view>
-    </view>
-    <view class="center-row mt-5" wx:if="{{isHolder}}">
-    <text>{{time_minute}}</text>:
-    <text>{{time_second}}</text>:
-    <text>{{time_ms}}</text>
+        </view>
     </view>
-    
-  </view>
-</view>
+</view>

+ 469 - 0
pages/old/index.js

@@ -0,0 +1,469 @@
+// index.js
+// 获取应用实例
+const getBle =  require("../../utils/ble");
+const handle = require("../../utils/handle");
+const sleep = require("../../utils/sleep");
+const TimeClock = require('../../utils/timer');
+const app = getApp();
+const ble = getBle();
+
+let services = [];
+const timeClock = new TimeClock();
+const connectStateMap = {
+  0: {text:'未连接',color:"red"},
+  1:  {text:'扫描中',color:"greenYellow"},
+  2:  {text:'连接中',color:"#d8e84d"},
+  3:  {text:'已连接',color:"#00ff00"}
+}
+const bleStateEnum = {
+  notConnect: 0,
+  searching: 1,
+  connecting: 2,
+  connected: 3,
+}
+
+const bleServerMap = {
+  control: {
+    uuid:'8000CC00-CC00-FFFF-FFFF-FFFFFFFFFFFF',
+    text: '摄像控制服务',
+    listen: {
+      controlTip: '0000CC01',
+      controlType: '0000CC02',
+    },
+    code:{
+
+    }
+  },
+  location : {
+    uuid:'8000DD00-DD00-FFFF-FFFF-FFFFFFFFFFFF',
+    text: '相机定位服务'
+  },
+  remote : {
+    uuid:'8000FF00-FF00-FFFF-FFFF-FFFFFFFFFFFF',
+    text: '摄像机远程控制服务',
+    code:{
+      hold:{
+        firstUuid: '0000FF01',
+        command: {
+          cmd1:'0107',//Focus Down
+          shutterDown:'0109',//PRESS_TO_FOCUS
+          shutterUp:'0108',//HOLD_FOCUS
+          cmd4:'0106',//Focus Up
+        }
+      }
+    }
+  },
+  pariring : {
+    uuid:'8000EE00-EE00-FFFF-FFFF-FFFFFFFFFFFF',
+    text: '相机配对服务',
+    code: {
+      pariring: {
+        firstUuid: '0000EE01',
+        command: {
+          // 配对
+          connect: '06 08 01 00 00 00',
+          // 取消配对
+          disConnect: '06 08 02 00 00 00',
+          // 关机
+          poweroff:'03 08 13'
+        }
+      }
+    }
+  },
+
+}
+
+let isOnceTimer = null;
+let isLongClick = false;// 是否为长按
+let isBulbState = false;// 是否处于b门模式下
+Page({
+  data: {
+    connectStateMap,
+    bleStateEnum,
+    isDebug: false,
+    ble:{
+      state: 0,
+      init: false,
+    },
+    remoteDev:{
+      connect: false,
+      devName: "",
+      devId: '',
+      shutter: false,
+    },
+    bleDevs:[],// 搜索到的蓝牙设备列表
+    motto: 'Hello World',
+    userInfo: {},
+    hasUserInfo: false,
+    shutterBtnY1: 0,
+    isHolder: false,
+    time_minute: 0,// 分
+    time_second: 0,// 秒
+    time_ms: 0,// 毫秒
+    canIUse: wx.canIUse('button.open-type.getUserInfo'),
+    canIUseGetUserProfile: false,
+    canIUseOpenData: wx.canIUse('open-data.type.userAvatarUrl') && wx.canIUse('open-data.type.userNickName') // 如需尝试获取用户信息可改为false
+  },
+  async onShow(){
+    timeClock.setHook((msNum)=>{
+      // console.log(msNum);
+      let res = timeClock.parse(msNum)
+      // console.log(res);
+      this.setData({
+        time_minute:res.minute,
+        time_second:res.second,
+        time_ms:res.ms,
+      })
+    });
+    // 初始化蓝牙
+    
+    try {
+      console.log("init ble");
+      await ble.initBle();
+      ble.onSearch = this.onSearchHandle;
+      this.setData({
+        ble: {...this.data.ble,init: true},
+      })
+    } catch (error) {
+      console.log(error);
+      this.setData({
+        ble: {...this.data.ble,init: false},
+      })
+      wx.showModal({
+        title: '初始化蓝牙失败',
+        content: error.errMsg,
+        success (res) {
+          if (res.confirm) {
+            console.log('用户点击确定')
+          } else if (res.cancel) {
+            console.log('用户点击取消')
+          }
+        }
+      })
+    }
+  },
+  async holdFoucus(){
+    console.log("发送对焦命令");
+  },
+  /**
+   * 
+   * @param {*} isDown 按下或者抬起快门
+   * @param {*} isBulb 是否为b门模式下释放快门
+   */
+  async devControlShutter(isDown = true,isBulb = false){
+    let cmds,waitTime=10;
+    let code = bleServerMap.remote.code.hold;
+    let dev = this.data.bleDevs.find(dev=>this.data.remoteDev.devId===dev.deviceId);
+    let server = services.find(s=>s.uuid === bleServerMap.remote.uuid);
+    if(!server){console.log('无法找到远程控制服务')}
+    let characteristic = server.characteristics.find(c=>c.uuid.startsWith(code.firstUuid));
+    if(!characteristic){return console.log('无法匹配到特征')}
+    if(isDown){
+      console.log('快门抬起')
+      // 发送抬起快门
+      cmds =[
+        code.command.shutterUp,
+      ]
+      if(isBulb){
+        // b 门模式下需要再次按下快门在进行释放
+        cmds.push(code.command.shutterDown);
+        cmds.push(code.command.shutterUp);
+      }
+    }else{
+      console.log('快门按下')
+      cmds =  [code.command.shutterDown]
+    }
+    for (let index = 0; index < cmds.length; index++) {
+      const cmd = cmds[index];
+      let [_err,_res] = await handle(ble.sendData(
+        dev.deviceId,
+        server.uuid,
+        characteristic.uuid,
+        cmd.replace(/\s/g,'')
+        ));
+        if(_err){
+          // console.log('发送命令失败');
+          console.error(_err);
+        }
+        // console.log('发送命令成功');
+        await sleep(waitTime);
+    }
+  },
+  async touchStartHandle(e){
+    // console.log("按钮按下");
+    // console.log(e);
+    // todo 获取当前的y信息
+    let touche = e.touches[0];
+    let y1 = 0;
+    if(touche){
+      y1 = touche.clientY;
+    }
+    this.data.shutterBtnY1 = y1;
+    isLongClick = false;
+    // 按住700毫秒后视作长按
+    isOnceTimer = setTimeout(()=>{
+      isLongClick = true;
+      isOnceTimer = null;
+    },
+    700);
+    if(this.data.isHolder){
+      // 已经按下,视作已经发送按下快门的操作
+      return false;
+    }else{
+      // todo 未按下,发送按下快门的操作
+      this.devControlShutter(false);
+      timeClock.start();
+    }
+    // 记录当前时间. 等抬起时再次获取
+  },
+  async touchEndHandle(e){
+    console.log("按钮抬起");
+    clearTimeout(isOnceTimer);
+    isOnceTimer = null;
+    if(this.data.isHolder){
+      // 按住,not do sth
+      isBulbState = true;
+    }else{
+      // 抬起按钮
+      timeClock.stop();
+      if(isBulbState){
+        // 处于b门模式
+        console.log(`[b门长曝光结束] 曝光时长 ${this.data.time_minute}:${this.data.time_second}:${this.data.time_ms}`);
+        this.devControlShutter(true,true);
+        isBulbState = false;
+        return false;
+      }
+      if(isLongClick){
+        // 长按
+        this.devControlShutter(true);
+      }else{
+        // 短按,等待500ms 后发送抬起的命令
+        setTimeout(()=>{
+          console.log("短按,自动跟发一条抬起快门命令");
+          this.devControlShutter(true);
+        },500)
+      }
+      
+    }
+  },
+  async touchMoveHandle(e){
+    // console.log("按钮移动");
+    let touche = e.touches[0];
+    let y1 = this.data.shutterBtnY1;
+    let y2 = 0;
+    if(touche){
+      y2 = touche.clientY;
+    }
+    let endY = y2 - y1;
+    if(Math.abs(endY)<15){
+      // console.log("移动范围太小")
+      return false;
+    }
+    this.data.shutterBtnY1 = y2;
+    if(endY < 0){
+      console.log('+');
+      this.setData({
+        isHolder:true
+      })
+    }else{
+      console.log('-');
+      this.setData({
+        isHolder:false
+      })
+    }
+  },
+  async connectDev(e){
+    let devId = e.currentTarget.dataset.dev;
+    let dev = this.data.bleDevs.find(dev=>devId===dev.deviceId);
+    let err,res;
+    if(!dev){
+      return wx.showToast({
+        title: '数据库异常,无法找寻设备',
+      })
+    }
+    console.log(dev);
+    // 连接设备
+      this.setData({
+        ble: {...this.data.ble,state: bleStateEnum.connecting},
+      });
+      [err,res] = await handle(ble.stopSearch());
+      if(err){return wx.showToast({ title: '关闭微信失败', })}
+      wx.showToast({
+        title: `尝试${dev.name}中...`,
+      })
+      [err,res] = await handle(ble.connectDev(devId));
+      if(err){
+        return wx.showToast({
+          title: '连接失败'+err.errMsg,
+        })
+      }
+      console.log('设备连接成功');
+      this.setData({
+        remoteDev: {
+          ...this.data.remoteDev,
+          devId: devId,
+          devName: dev.name
+        }
+      });
+      console.log(res);
+      // 然后呢? 
+      this.setData({
+        ble:{...this.data.ble,state:bleStateEnum.connected}
+      });
+      // 获取服务与特征
+      [err,res] = await handle(ble.getBleServices(devId));
+      if(err){
+        wx.showToast({
+          title: '搜索蓝牙服务失败',
+        });
+        return console.log(err);
+      }
+      res.forEach(async val=>{
+        console.log('******');
+        console.log(val.uuid);
+        let _err,_res;
+        if(val.uuid === bleServerMap.pariring.uuid ){
+          // 尝试直接向设备发起连接
+          console.log('设备配对服务');
+          // 获取特征值id
+          let code_pariring = bleServerMap.pariring.code.pariring
+          let characteristic = val.characteristics.find(c=>c.uuid.startsWith(code_pariring.firstUuid));
+          if(!characteristic){return console.log('无法配对')}
+          [_err,_res] = await handle(ble.sendData(
+            devId,
+            val.uuid,
+            characteristic.uuid,
+            code_pariring.command.connect.replace(/\s/g,'')
+            ));
+            if(_err){
+              wx.showToast({
+                title: 'Err:发送蓝牙数据失败??',
+              })
+              // 尝试关闭设备
+              setTimeout(async ()=>{
+                console.log('发送关机命令');
+                [_err,_res] = await handle(ble.sendData(
+                  devId,
+                  val.uuid,
+                  characteristic.uuid,
+                  code_pariring.command.disConnect.replace(/\s/g,'')
+                  ));
+                  if(_err){
+                    console.error(_err)
+                    wx.showToast({
+                      title: 'Err:发送设备关机命令失败??',
+                    })
+                  } else{
+                    wx.showToast({
+                      title: '发送关机命令成功??',
+                    });
+                  }
+              },10000);
+              
+               console.log(_err);
+            }
+            console.log(res);
+            wx.showToast({
+              title: '发送配对指令成功',
+            })
+        }else if(val.uuid === bleServerMap.control.uuid){
+          let listenCode = bleServerMap.control.listen;
+          // [_err,_res] = await handle(ble.listenData(devId,val.uuid,listenCode.controlTip));
+          // console.log(_res);
+          // [_err,_res] = await handle(ble.listenData(devId,val.uuid,listenCode.controlTip));
+          // console.log(_res);
+          // if(_err){
+          //   console.log('控制端口监听失败');
+          //   console.error(_err);
+          //   console.log('控制端口监听失败');
+          // }
+          // console.log('控制端口监听完成')
+        }else if(val.uuid === bleServerMap.pariring.uuid ){
+          // 尝试直接向设备发起连接
+          console.log('设备配对服务');
+          // 获取特征值id
+          let code = bleServerMap.remote.code.hold
+          let characteristic = val.characteristics.find(c=>c.uuid.startsWith(code.firstUuid));
+          if(!characteristic){return console.log('无法配对')}
+          
+            
+             
+            if(_err){
+              wx.showToast({
+                title: 'Err:发送快门控制命令失败',
+              })
+              // 尝试关闭设备
+              
+               console.log(_err);
+            }
+            console.log(res);
+            wx.showToast({
+              title: '发送按住快门指令成功',
+            })
+        }
+        console.log('******');
+        console.log(val.uuid);
+        val.characteristics.forEach(c=>{
+          console.log(c);
+        });
+        // 查看是否会有对应特征值
+        console.log('******');
+      })
+      wx.showToast({
+        title: '蓝牙服务搜索成功',
+      });
+      services = res;
+  },
+  // 事件处理函数
+  bindViewTap() {
+    wx.navigateTo({
+      url: '../logs/logs'
+    })
+  },
+  async searchDevice(){
+    console.log("搜索 蓝牙设备");
+    if(!this.data.ble.init){
+      return wx.showModal({
+        title: '蓝牙错误',
+        content: "无法启用蓝牙!!!",
+        success (res) { }
+      }) 
+    }
+    this.setData({
+      ble: {...this.data.ble,state: bleStateEnum.searching},
+    });
+    ble.search(this.onSearchHandle);
+  },
+  onSearchHandle(device){
+    console.log('搜索到设备');
+    if(this.data.bleDevs.find(dev=>dev.deviceId === device.deviceId )){
+      return console.log('设备再次被搜索到');
+    }
+    console.log(device);
+    let arr = this.data.bleDevs;
+    arr.push(device);
+    this.setData({
+      bleDevs:arr
+    })
+  },
+  tapState(){
+    switch(this.data.ble.state){
+      case bleStateEnum.notConnect:
+        this.searchDevice();
+        break;
+      case bleStateEnum.searching:
+        break;
+      case bleStateEnum.connecting:
+        break;
+      case bleStateEnum.connected:
+        break;
+    }
+  },
+  onLoad() {
+    if (wx.getUserProfile) {
+      this.setData({
+        canIUseGetUserProfile: true
+      })
+    }
+  },
+})

+ 6 - 0
pages/old/index.json

@@ -0,0 +1,6 @@
+{
+  "usingComponents": {
+    "led": "/components/stateLed/stateLed"
+  },
+  "disableScroll":true
+}

+ 60 - 0
pages/old/index.wxml

@@ -0,0 +1,60 @@
+<!--index.wxml-->
+<view class="container">
+  <view class="header" wx:if="{{isDebug}}">
+  {{ble.state}}
+  </view>
+  <view class="header">
+    <view class="state-info" bindtap="tapState">
+     <led color="{{connectStateMap[ble.state].color}}" width="15"/> {{connectStateMap[ble.state].text}}
+    </view>
+    <view class="state-msg" wx:if="{{ble.state == bleStateEnum.connected}}">
+      {{remoteDev.devName}}
+    </view>
+    <view class="state-msg" wx:if="{{ble.state == bleStateEnum.notConnect}}">
+      <view class="custom-info-btn" bindtap="searchDevice" >扫描</view>
+    </view>
+    <view class="state-msg" wx:if="{{ble.state == bleStateEnum.connecting}}">
+      <view class="custom-info-btn" bindtap="searchDevice" >重新扫描</view>
+    </view>
+  </view>
+
+  <view class="bleDevices" wx:if="{{ble.state == bleStateEnum.searching || ble.state == bleStateEnum.connecting }}">
+    <view class="title">
+      设备列表
+      <view class="mx-10 text-red">{{bleDevs.length}}</view>
+    </view>
+    <view class="devList">
+      <view class="devItem" wx:for="{{bleDevs}}" wx:key="deviceId" >
+        <view class="devInfo">
+          <view class="name">{{item.name}}</view>
+          <view class="devId">{{item.deviceId}}</view>
+        </view>
+        <view class="option">
+          <view class="custom-info-btn" data-dev="{{item.deviceId}}" bindtap="connectDev">连接</view>
+        </view>
+      </view>
+    </view>
+  </view>
+
+  <view class="conetrol" wx:if="{{ble.state === bleStateEnum.connected}}">
+    <button bindtap="holdFoucus">对焦</button>
+    
+    <view class="center-row mt-5">
+      <view class="shutter-box">  
+      <view
+      class="shutter-btn {{isHolder?' shutter-holder':''}}" 
+      capture-bind:touchstart="touchStartHandle"
+      capture-bind:touchend="touchEndHandle"
+      capture-bind:touchmove="touchMoveHandle"
+    >
+      </view>
+    </view>
+    </view>
+    <view class="center-row mt-5" wx:if="{{isHolder}}">
+    <text>{{time_minute}}</text>:
+    <text>{{time_second}}</text>:
+    <text>{{time_ms}}</text>
+    </view>
+    
+  </view>
+</view>

+ 0 - 0
pages/index/index.wxss → pages/old/index.wxss


+ 66 - 0
pages/tools/tools.js

@@ -0,0 +1,66 @@
+// pages/tools/tools.js
+Page({
+
+  /**
+   * 页面的初始数据
+   */
+  data: {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面加载
+   */
+  onLoad(options) {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面初次渲染完成
+   */
+  onReady() {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面显示
+   */
+  onShow() {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面隐藏
+   */
+  onHide() {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面卸载
+   */
+  onUnload() {
+
+  },
+
+  /**
+   * 页面相关事件处理函数--监听用户下拉动作
+   */
+  onPullDownRefresh() {
+
+  },
+
+  /**
+   * 页面上拉触底事件的处理函数
+   */
+  onReachBottom() {
+
+  },
+
+  /**
+   * 用户点击右上角分享
+   */
+  onShareAppMessage() {
+
+  }
+})

+ 3 - 0
pages/tools/tools.json

@@ -0,0 +1,3 @@
+{
+  "usingComponents": {}
+}

+ 2 - 0
pages/tools/tools.wxml

@@ -0,0 +1,2 @@
+<!--pages/tools/tools.wxml-->
+<text>pages/tools/tools.wxml</text>

+ 1 - 0
pages/tools/tools.wxss

@@ -0,0 +1 @@
+/* pages/tools/tools.wxss */

+ 1 - 2
utils/handle.js

@@ -6,7 +6,7 @@
  * @LastEditTime: 2021-12-14 17:17:09
  * @LastDescript: 
  */
-function handle(promise) {
+export function handle(promise) {
   return new Promise(resolve => {
       try{
           promise.then(val => {
@@ -20,4 +20,3 @@ function handle(promise) {
   })
 }
 
-module.exports = handle;