index.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  1. // pages/sign-name/sign-name.js
  2. import api from '../api/api'
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. attachmentids: [],
  9. canvasName: 'signCanvas',
  10. ctx: '', // 上下文实例
  11. canvas: '', // 画布实例
  12. canvasWidth: 0,
  13. canvasHeight: 0,
  14. transparent: 1, // 透明度
  15. selectColor: 'black',
  16. lineColor: '#1A1A1A', // 颜色
  17. lineSize: 1.5, // 笔记倍数
  18. lineMin: 0.5, // 最小笔画半径
  19. lineMax: 4, // 最大笔画半径
  20. pressure: 1, // 默认压力
  21. smoothness: 60, //顺滑度,用60的距离来计算速度
  22. currentPoint: {},
  23. currentLine: [], // 当前线条
  24. firstTouch: true, // 第一次触发
  25. radius: 1, //画圆的半径
  26. cutArea: {
  27. top: 0,
  28. right: 0,
  29. bottom: 0,
  30. left: 0
  31. }, //裁剪区域
  32. bethelPoint: [], //保存所有线条 生成的贝塞尔点;
  33. lastPoint: 0,
  34. chirography: [], //笔迹
  35. currentChirography: {}, //当前笔迹
  36. linePrack: [], //划线轨迹 , 生成线条的实际点
  37. isDraw: false, // 判断用户是否绘制
  38. upPageNumber: 0,
  39. offCanvas: '',
  40. offCtx: '',
  41. dpr: ''
  42. },
  43. /**
  44. * 生命周期函数--监听页面加载
  45. */
  46. onLoad: function (options) {
  47. this.setData({
  48. id: options.id
  49. })
  50. this.data.dpr = wx.getSystemInfoSync().pixelRatio
  51. const query = wx.createSelectorQuery()
  52. query
  53. .select('.handCenter')
  54. .boundingClientRect(rect => {
  55. this.data.canvasWidth = rect.width * this.data.dpr
  56. this.data.canvasHeight = rect.height * this.data.dpr
  57. })
  58. .exec()
  59. const query1 = wx.createSelectorQuery()
  60. query1
  61. .select('#signCanvas')
  62. .fields({
  63. node: true,
  64. size: true
  65. })
  66. .exec(res => {
  67. const canvas = res[0].node
  68. this.data.ctx = canvas.getContext('2d')
  69. canvas.width = this.data.canvasWidth
  70. canvas.height = this.data.canvasHeight
  71. /* 将canvas背景设置为 白底,不设置 导出的canvas的背景为透明 */
  72. // console.log(this, 'hahah');
  73. this.data.canvas = canvas
  74. this.data.ctx.scale(this.data.dpr, this.data.dpr)
  75. this.setCanvasBg('#fff')
  76. })
  77. const query2 = wx.createSelectorQuery()
  78. query2
  79. .select('#offCanvas')
  80. .fields({
  81. node: true,
  82. size: true
  83. })
  84. .exec(res => {
  85. const canvas = res[0].node
  86. const ctx = canvas.getContext('2d')
  87. canvas.width = this.data.canvasHeight
  88. canvas.height = this.data.canvasWidth
  89. this.data.offCanvas = canvas
  90. this.data.offCtx = ctx
  91. this.data.offCtx.scale(this.data.dpr, this.data.dpr)
  92. })
  93. },
  94. /**
  95. * 生命周期函数--监听页面初次渲染完成
  96. */
  97. onReady: function () {
  98. },
  99. /**
  100. * 生命周期函数--监听页面显示
  101. */
  102. onShow: function () {
  103. },
  104. // 重写事件(初始化画布)
  105. retDraw() {
  106. this.data.ctx.clearRect(0, 0, 700, 730)
  107. //设置canvas背景
  108. this.setCanvasBg('#fff')
  109. this.data.isDraw = false
  110. },
  111. // 完成事件
  112. subCanvas() {
  113. // 调用预览
  114. console.log('========sub')
  115. this.previewCanvasImg()
  116. console.log('========subOver')
  117. },
  118. //画两点之间的线条;参数为:line,会绘制最近的开始的两个点;
  119. pointToLine(line) {
  120. this.calcBethelLine(line)
  121. return
  122. },
  123. // 笔迹开始
  124. uploadScaleStart(e) {
  125. if (e.type != 'touchstart') return false
  126. let ctx = this.data.ctx
  127. ctx.fillStyle = this.data.lineColor // 初始线条设置颜色
  128. ctx.globalAlpha = this.data.transparent // 设置半透明
  129. let currentPoint = {
  130. x: e.touches[0].x,
  131. y: e.touches[0].y
  132. }
  133. let currentLine = this.data.currentLine
  134. currentLine.unshift({
  135. time: new Date().getTime(),
  136. dis: 0,
  137. x: currentPoint.x,
  138. y: currentPoint.y
  139. })
  140. this.setData({
  141. currentPoint
  142. // currentLine
  143. })
  144. if (this.data.firstTouch) {
  145. this.setData({
  146. cutArea: {
  147. top: currentPoint.y,
  148. right: currentPoint.x,
  149. bottom: currentPoint.y,
  150. left: currentPoint.x
  151. },
  152. firstTouch: false
  153. })
  154. }
  155. this.pointToLine(currentLine)
  156. },
  157. // 笔迹移动
  158. uploadScaleMove(e) {
  159. if (e.type != 'touchmove') return false
  160. if (e.cancelable) {
  161. // 判断默认行为是否已经被禁用
  162. if (!e.defaultPrevented) {
  163. e.preventDefault()
  164. }
  165. }
  166. let point = {
  167. x: e.touches[0].x,
  168. y: e.touches[0].y
  169. }
  170. //测试裁剪
  171. if (point.y < this.data.cutArea.top) {
  172. this.data.cutArea.top = point.y
  173. }
  174. if (point.y < 0) this.data.cutArea.top = 0
  175. if (point.x > this.data.cutArea.right) {
  176. this.data.cutArea.right = point.x
  177. }
  178. if (this.data.canvasWidth - point.x <= 0) {
  179. this.data.cutArea.right = this.data.canvasWidth
  180. }
  181. if (point.y > this.data.cutArea.bottom) {
  182. this.data.cutArea.bottom = point.y
  183. }
  184. if (this.data.canvasHeight - point.y <= 0) {
  185. this.data.cutArea.bottom = this.data.canvasHeight
  186. }
  187. if (point.x < this.data.cutArea.left) {
  188. this.data.cutArea.left = point.x
  189. }
  190. if (point.x < 0) this.data.cutArea.left = 0
  191. this.setData({
  192. lastPoint: this.data.currentPoint,
  193. currentPoint: point
  194. })
  195. let currentLine = this.data.currentLine
  196. currentLine.unshift({
  197. time: new Date().getTime(),
  198. dis: this.distance(this.data.currentPoint, this.data.lastPoint),
  199. x: point.x,
  200. y: point.y
  201. })
  202. // this.setData({
  203. // currentLine
  204. // })
  205. this.pointToLine(currentLine)
  206. },
  207. // 笔迹结束
  208. uploadScaleEnd(e) {
  209. if (e.type != 'touchend') return 0
  210. let point = {
  211. x: e.changedTouches[0].x,
  212. y: e.changedTouches[0].y
  213. }
  214. this.setData({
  215. lastPoint: this.data.currentPoint,
  216. currentPoint: point
  217. })
  218. let currentLine = this.data.currentLine
  219. currentLine.unshift({
  220. time: new Date().getTime(),
  221. dis: this.distance(this.data.currentPoint, this.data.lastPoint),
  222. x: point.x,
  223. y: point.y
  224. })
  225. // this.setData({
  226. // currentLine
  227. // })
  228. if (currentLine.length > 2) {
  229. var info =
  230. (currentLine[0].time - currentLine[currentLine.length - 1].time) / currentLine.length
  231. //$("#info").text(info.toFixed(2));
  232. }
  233. //一笔结束,保存笔迹的坐标点,清空,当前笔迹
  234. //增加判断是否在手写区域;
  235. this.pointToLine(currentLine)
  236. var currentChirography = {
  237. lineSize: this.data.lineSize,
  238. lineColor: this.data.lineColor
  239. }
  240. var chirography = this.data.chirography
  241. chirography.unshift(currentChirography)
  242. this.setData({
  243. chirography
  244. })
  245. var linePrack = this.data.linePrack
  246. linePrack.unshift(this.data.currentLine)
  247. this.setData({
  248. linePrack,
  249. currentLine: []
  250. })
  251. this.data.isDraw = true
  252. },
  253. //计算插值的方式;
  254. calcBethelLine(line) {
  255. if (line.length <= 1) {
  256. line[0].r = this.data.radius
  257. return
  258. }
  259. let x0,
  260. x1,
  261. x2,
  262. y0,
  263. y1,
  264. y2,
  265. r0,
  266. r1,
  267. r2,
  268. len,
  269. lastRadius,
  270. dis = 0,
  271. time = 0,
  272. curveValue = 0.5
  273. if (line.length <= 2) {
  274. x0 = line[1].x
  275. y0 = line[1].y
  276. x2 = line[1].x + (line[0].x - line[1].x) * curveValue
  277. y2 = line[1].y + (line[0].y - line[1].y) * curveValue
  278. //x2 = line[1].x;
  279. //y2 = line[1].y;
  280. x1 = x0 + (x2 - x0) * curveValue
  281. y1 = y0 + (y2 - y0) * curveValue
  282. } else {
  283. x0 = line[2].x + (line[1].x - line[2].x) * curveValue
  284. y0 = line[2].y + (line[1].y - line[2].y) * curveValue
  285. x1 = line[1].x
  286. y1 = line[1].y
  287. x2 = x1 + (line[0].x - x1) * curveValue
  288. y2 = y1 + (line[0].y - y1) * curveValue
  289. }
  290. //从计算公式看,三个点分别是(x0,y0),(x1,y1),(x2,y2) ;(x1,y1)这个是控制点,控制点不会落在曲线上;实际上,这个点还会手写获取的实际点,却落在曲线上
  291. len = this.distance({
  292. x: x2,
  293. y: y2
  294. }, {
  295. x: x0,
  296. y: y0
  297. })
  298. lastRadius = this.data.radius
  299. for (let n = 0; n < line.length - 1; n++) {
  300. dis += line[n].dis
  301. time += line[n].time - line[n + 1].time
  302. if (dis > this.data.smoothness) break
  303. }
  304. this.setData({
  305. radius: Math.min((time / len) * this.data.pressure + this.data.lineMin, this.data.lineMax) *
  306. this.data.lineSize
  307. })
  308. line[0].r = this.data.radius
  309. //计算笔迹半径;
  310. if (line.length <= 2) {
  311. r0 = (lastRadius + this.data.radius) / 2
  312. r1 = r0
  313. r2 = r1
  314. //return;
  315. } else {
  316. r0 = (line[2].r + line[1].r) / 2
  317. r1 = line[1].r
  318. r2 = (line[1].r + line[0].r) / 2
  319. }
  320. let n = 5
  321. let point = []
  322. for (let i = 0; i < n; i++) {
  323. let t = i / (n - 1)
  324. let x = (1 - t) * (1 - t) * x0 + 2 * t * (1 - t) * x1 + t * t * x2
  325. let y = (1 - t) * (1 - t) * y0 + 2 * t * (1 - t) * y1 + t * t * y2
  326. let r = lastRadius + ((this.data.radius - lastRadius) / n) * i
  327. point.push({
  328. x: x,
  329. y: y,
  330. r: r
  331. })
  332. if (point.length == 3) {
  333. let a = this.ctaCalc(
  334. point[0].x,
  335. point[0].y,
  336. point[0].r,
  337. point[1].x,
  338. point[1].y,
  339. point[1].r,
  340. point[2].x,
  341. point[2].y,
  342. point[2].r
  343. )
  344. a[0].color = this.data.lineColor
  345. // let bethelPoint = this.data.bethelPoint;
  346. // console.log(a)
  347. // console.log(this.data.bethelPoint)
  348. // bethelPoint = bethelPoint.push(a);
  349. this.bethelDraw(a, 1)
  350. point = [{
  351. x: x,
  352. y: y,
  353. r: r
  354. }]
  355. }
  356. }
  357. this.setData({
  358. currentLine: line
  359. })
  360. },
  361. //求两点之间距离
  362. distance(a, b) {
  363. let x = b.x - a.x
  364. let y = b.y - a.y
  365. return Math.sqrt(x * x + y * y)
  366. },
  367. ctaCalc(x0, y0, r0, x1, y1, r1, x2, y2, r2) {
  368. let a = [],
  369. vx01,
  370. vy01,
  371. norm,
  372. n_x0,
  373. n_y0,
  374. vx21,
  375. vy21,
  376. n_x2,
  377. n_y2
  378. vx01 = x1 - x0
  379. vy01 = y1 - y0
  380. norm = Math.sqrt(vx01 * vx01 + vy01 * vy01 + 0.0001) * 2
  381. vx01 = (vx01 / norm) * r0
  382. vy01 = (vy01 / norm) * r0
  383. n_x0 = vy01
  384. n_y0 = -vx01
  385. vx21 = x1 - x2
  386. vy21 = y1 - y2
  387. norm = Math.sqrt(vx21 * vx21 + vy21 * vy21 + 0.0001) * 2
  388. vx21 = (vx21 / norm) * r2
  389. vy21 = (vy21 / norm) * r2
  390. n_x2 = -vy21
  391. n_y2 = vx21
  392. a.push({
  393. mx: x0 + n_x0,
  394. my: y0 + n_y0,
  395. color: '#1A1A1A'
  396. })
  397. a.push({
  398. c1x: x1 + n_x0,
  399. c1y: y1 + n_y0,
  400. c2x: x1 + n_x2,
  401. c2y: y1 + n_y2,
  402. ex: x2 + n_x2,
  403. ey: y2 + n_y2
  404. })
  405. a.push({
  406. c1x: x2 + n_x2 - vx21,
  407. c1y: y2 + n_y2 - vy21,
  408. c2x: x2 - n_x2 - vx21,
  409. c2y: y2 - n_y2 - vy21,
  410. ex: x2 - n_x2,
  411. ey: y2 - n_y2
  412. })
  413. a.push({
  414. c1x: x1 - n_x2,
  415. c1y: y1 - n_y2,
  416. c2x: x1 - n_x0,
  417. c2y: y1 - n_y0,
  418. ex: x0 - n_x0,
  419. ey: y0 - n_y0
  420. })
  421. a.push({
  422. c1x: x0 - n_x0 - vx01,
  423. c1y: y0 - n_y0 - vy01,
  424. c2x: x0 + n_x0 - vx01,
  425. c2y: y0 + n_y0 - vy01,
  426. ex: x0 + n_x0,
  427. ey: y0 + n_y0
  428. })
  429. a[0].mx = a[0].mx.toFixed(1)
  430. a[0].mx = parseFloat(a[0].mx)
  431. a[0].my = a[0].my.toFixed(1)
  432. a[0].my = parseFloat(a[0].my)
  433. for (let i = 1; i < a.length; i++) {
  434. a[i].c1x = a[i].c1x.toFixed(1)
  435. a[i].c1x = parseFloat(a[i].c1x)
  436. a[i].c1y = a[i].c1y.toFixed(1)
  437. a[i].c1y = parseFloat(a[i].c1y)
  438. a[i].c2x = a[i].c2x.toFixed(1)
  439. a[i].c2x = parseFloat(a[i].c2x)
  440. a[i].c2y = a[i].c2y.toFixed(1)
  441. a[i].c2y = parseFloat(a[i].c2y)
  442. a[i].ex = a[i].ex.toFixed(1)
  443. a[i].ex = parseFloat(a[i].ex)
  444. a[i].ey = a[i].ey.toFixed(1)
  445. a[i].ey = parseFloat(a[i].ey)
  446. }
  447. return a
  448. },
  449. bethelDraw(point, is_fill, color) {
  450. let ctx = this.data.ctx
  451. ctx.beginPath()
  452. ctx.moveTo(point[0].mx, point[0].my)
  453. if (undefined != color) {
  454. ctx.fillStyle = color
  455. ctx.strokeStyle = color
  456. } else {
  457. ctx.fillStyle = point[0].color
  458. ctx.strokeStyle = point[0].color
  459. }
  460. for (let i = 1; i < point.length; i++) {
  461. ctx.bezierCurveTo(
  462. point[i].c1x,
  463. point[i].c1y,
  464. point[i].c2x,
  465. point[i].c2y,
  466. point[i].ex,
  467. point[i].ey
  468. )
  469. }
  470. ctx.stroke()
  471. if (undefined != is_fill) {
  472. ctx.fill() //填充图形 ( 后绘制的图形会覆盖前面的图形, 绘制时注意先后顺序 )
  473. }
  474. },
  475. //设置canvas背景色 不设置 导出的canvas的背景为透明
  476. //@params:字符串 color
  477. setCanvasBg(color) {
  478. console.log('开始设置背景色')
  479. /* 将canvas背景设置为 白底,不设置 导出的canvas的背景为透明 */
  480. //rect() 参数说明 矩形路径左上角的横坐标,左上角的纵坐标, 矩形路径的宽度, 矩形路径的高度
  481. //这里是 canvasHeight - 4 是因为下边盖住边框了,所以手动减了写
  482. this.data.ctx.rect(0, 0, this.data.canvasWidth, this.data.canvasHeight - 4)
  483. this.data.ctx.fillStyle = color
  484. this.data.ctx.fill() //设置填充
  485. },
  486. //预览
  487. async previewCanvasImg() {
  488. this.data.offCtx.rotate(-90 * Math.PI / 180);
  489. // offCtx.clearRect(0, 0, 100, 100)
  490. const srcImg = this.data.offCanvas.createImage()
  491. // 等待图片加载
  492. // console.log(this.data.canvas.toDataURL('image/png', 1))
  493. await new Promise(resolve => {
  494. srcImg.onload = resolve
  495. srcImg.src = this.data.canvas.toDataURL('image/png', 1) // 要加载的图片 url
  496. })
  497. let width = this.data.canvasWidth / this.data.dpr
  498. let height = this.data.canvasHeight / this.data.dpr
  499. this.data.offCtx.drawImage(srcImg, -width, 0, width, height)
  500. wx.canvasToTempFilePath({
  501. canvas: this.data.offCtx,
  502. fileType: 'jpg',
  503. quality: 1, //图片质量
  504. success(res) {
  505. console.log(res.tempFilePath, 'canvas生成图片地址')
  506. wx.previewImage({
  507. urls: [res.tempFilePath] //预览图片 数组
  508. })
  509. }
  510. })
  511. },
  512. //上传
  513. async uploadCanvasImg() {
  514. let that = this
  515. if (!this.data.isDraw) {
  516. wx.showToast({
  517. title: '请签名',
  518. icon: 'error'
  519. })
  520. return
  521. }
  522. // console.log('===============')
  523. const self = this
  524. this.data.offCtx.rotate(-90 * Math.PI / 180);
  525. // offCtx.clearRect(0, 0, 100, 100)
  526. const srcImg = this.data.offCanvas.createImage()
  527. // 等待图片加载
  528. // console.log(this.data.canvas.toDataURL('image/png', 1))
  529. await new Promise(resolve => {
  530. srcImg.onload = resolve
  531. srcImg.src = this.data.canvas.toDataURL('image/png', 1) // 要加载的图片 url
  532. console.log("await============")
  533. })
  534. console.log("await0============")
  535. console.log(srcImg)
  536. let width = this.data.canvasWidth / this.data.dpr
  537. let height = this.data.canvasHeight / this.data.dpr
  538. this.data.offCtx.drawImage(srcImg, -width, 0, width, height)
  539. console.log('===============2')
  540. console.log(srcImg)
  541. wx.canvasToTempFilePath({
  542. canvas: this.data.offCanvas,
  543. fileType: 'jpg', // png默认无背景是透明的,可以改jpg
  544. quality: 1, //图片质量
  545. success(res) {
  546. console.log(res)
  547. wx.getFileSystemManager().readFile({
  548. filePath: res.tempFilePath,
  549. success: result => {
  550. //返回临时文件路径
  551. console.log(res)
  552. const fileData = result.data;
  553. api._post({
  554. "classname": "system.attachment.huawei.OBS",
  555. "method": "getFileName",
  556. "content": {
  557. "filename": '客户签字',
  558. "filetype": 'jpg',
  559. "parentid": wx.getStorageSync('siteP').appfolderid
  560. }
  561. }).then(res => {
  562. if (res.msg == "成功") {
  563. that.uploadFile(res.data, fileData)
  564. }
  565. })
  566. },
  567. fail: console.error
  568. })
  569. },
  570. fail(res) {
  571. console.log(res)
  572. }
  573. })
  574. },
  575. uploadFile(res, data) {
  576. var that = this;
  577. wx.request({
  578. url: res.uploadurl,
  579. method: "PUT",
  580. data: data,
  581. header: {
  582. 'content-type': 'application/octet-stream'
  583. },
  584. success(a) {
  585. api._post({
  586. "classname": "system.attachment.huawei.OBS",
  587. "method": "uploadSuccess",
  588. "content": {
  589. "serialfilename": res.serialfilename
  590. }
  591. }).then(rs => {
  592. that.data.attachmentids.push(rs.data.attachmentids[0])
  593. that.filebindData()
  594. }).catch(err => {
  595. console.log(err)
  596. })
  597. }
  598. })
  599. },
  600. async filebindData() {
  601. let pages = getCurrentPages()[getCurrentPages().length - 2]
  602. const res = await api._post({
  603. "classname": "system.attachment.Attachment",
  604. "method": "createFileLink",
  605. "content": {
  606. "ownertable": pages.data.bindSignNameData.ownertable,
  607. "ownerid": pages.data.bindSignNameData.ownerid,
  608. "usetype": "signature",
  609. "attachmentids": this.data.attachmentids
  610. }
  611. })
  612. wx.navigateBack()
  613. },
  614. })