contract.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <template>
  2. <view class="container">
  3. <rich-text class="rich_text" :nodes="htmlContent"></rich-text>
  4. <view class="bottom_view flex-row flex-between">
  5. <view v-if="isAgree&&isBottom" @tap="clickAgreeContract" class="click_view">
  6. 本人已知晓上述内容
  7. </view>
  8. <view v-if="!isAgree&&isBottom" class="click_view_gray">
  9. 阅读合同倒计时{{countdownTime}}秒
  10. </view>
  11. <view v-if="orderSign == 1" @tap="clickWriteSign" class="write_sign" style="background-color: #ffffff;">
  12. <image class="write_sign_img" src="https://qiniu.bms16.com/appsrc%2Fhire%2Fwrite_sign.png" />
  13. <view class="sign_view">{{orderSignUrl == ''?'签名':'重新签名'}}</view>
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. const config = require('../../common/config.js');
  20. var common = require('../../common/common.js');
  21. var http = require('../../common/http.js');
  22. export default {
  23. data() {
  24. return {
  25. contarct_url: '',
  26. htmlContent: '',
  27. timerInterval: null,
  28. countdownTime: 3,
  29. isAgree: false,
  30. isBottom: true,
  31. orderSign: 0,
  32. orderSignUrl: ""
  33. };
  34. },
  35. /**
  36. * 生命周期函数--监听页面加载
  37. */
  38. onLoad: function(options) {
  39. const contract_id = options.contract_id
  40. if (contract_id == 102 || contract_id == 270) {
  41. this.setData({
  42. isBottom: false
  43. })
  44. } else{
  45. this.loadUserInfo()
  46. }
  47. this.loadHtmlContent(contract_id)
  48. const me = this
  49. this.timerInterval = setInterval(function () {
  50. me.countdownTimefun()
  51. }, 1000)
  52. },
  53. /**
  54. * 生命周期函数--监听页面显示
  55. */
  56. onShow: function() {
  57. const app = getApp();
  58. this.setData({
  59. orderSign:app.globalData.orderSign,
  60. orderSignUrl:app.globalData.orderSignUrl
  61. })
  62. },
  63. methods: {
  64. clearTimer: function () {
  65. if (this.timerInterval == null) return
  66. clearInterval(this.timerInterval)
  67. this.timerInterval = null
  68. },
  69. loadUserInfo() {
  70. const me = this
  71. const accountInfo = wx.getAccountInfoSync() // 上报小程序账号信息
  72. http.postApi(config.API_USER_INFO, { appid: accountInfo.miniProgram.appId }, function (resp) {
  73. if (resp.data.code === 200) {
  74. const app = getApp();
  75. app.globalData.orderSign = resp.data.data.userInfo.order_sign
  76. app.globalData.orderSignUrl = resp.data.data.userInfo.order_sign_url
  77. me.setData({
  78. orderSign:app.globalData.orderSign,
  79. orderSignUrl:app.globalData.orderSignUrl
  80. })
  81. }
  82. })
  83. },
  84. countdownTimefun() {
  85. var countdownTime = this.countdownTime
  86. countdownTime--;
  87. if (countdownTime <= 0) {
  88. this.setData({
  89. isAgree: true
  90. })
  91. this.clearTimer();
  92. }
  93. this.setData({
  94. countdownTime: countdownTime
  95. })
  96. },
  97. loadHtmlContent(contract_id) {
  98. const me = this
  99. http.getApi(config.API_CONTRACT_CONTENT + "&contract_id=" + contract_id, {}, function (resp) {
  100. if (resp.data.code === 200) {
  101. me.setData({
  102. htmlContent: resp.data.data.data
  103. })
  104. }
  105. })
  106. },
  107. clickAgreeContract() {
  108. // if (this.orderSign == 1 && this.orderSignUrl == '') {
  109. // uni.showModal({
  110. // title: '提示',
  111. // content: '您当前没有手写签名,是否要进行填写',
  112. // showCancel: true,
  113. // success: function(res) {
  114. // if (res.confirm) {
  115. // uni.navigateTo({
  116. // url: '/pages/my/sign/sign'
  117. // });
  118. // }
  119. // }
  120. // });
  121. // return;
  122. // }
  123. let pages = getCurrentPages();
  124. let prevPage = pages[pages.length - 2];
  125. // prevPage.setData({
  126. // isAgree: true
  127. // });
  128. prevPage.isAgree = true
  129. uni.navigateBack({
  130. delta: 1
  131. });
  132. }
  133. }
  134. };
  135. </script>
  136. <style>
  137. @import './contract.css';
  138. </style>