contract.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. let app = getApp();
  23. export default {
  24. data() {
  25. return {
  26. contarct_url: '',
  27. htmlContent: '',
  28. timerInterval: null,
  29. countdownTime: 3,
  30. isAgree: false,
  31. isBottom: true,
  32. orderSign: 0,
  33. orderSignUrl: ""
  34. };
  35. },
  36. /**
  37. * 生命周期函数--监听页面加载
  38. */
  39. onLoad: function(options) {
  40. const contract_id = options.contract_id
  41. if (contract_id == 102 || contract_id == 270) {
  42. this.setData({
  43. isBottom: false
  44. })
  45. } else{
  46. this.loadUserInfo()
  47. }
  48. this.loadHtmlContent(contract_id)
  49. const me = this
  50. this.timerInterval = setInterval(function () {
  51. me.countdownTimefun()
  52. }, 1000)
  53. },
  54. /**
  55. * 生命周期函数--监听页面显示
  56. */
  57. onShow: function() {
  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. app.globalData.orderSign = resp.data.data.userInfo.order_sign
  75. app.globalData.orderSignUrl = resp.data.data.userInfo.order_sign_url
  76. me.setData({
  77. orderSign:app.globalData.orderSign,
  78. orderSignUrl:app.globalData.orderSignUrl
  79. })
  80. }
  81. })
  82. },
  83. countdownTimefun() {
  84. var countdownTime = this.countdownTime
  85. countdownTime--;
  86. if (countdownTime <= 0) {
  87. this.setData({
  88. isAgree: true
  89. })
  90. this.clearTimer();
  91. }
  92. this.setData({
  93. countdownTime: countdownTime
  94. })
  95. },
  96. loadHtmlContent(contract_id) {
  97. const me = this
  98. http.getApi(config.API_CONTRACT_CONTENT + "&contract_id=" + contract_id, {}, function (resp) {
  99. if (resp.data.code === 200) {
  100. me.setData({
  101. htmlContent: resp.data.data.data
  102. })
  103. }
  104. })
  105. },
  106. clickAgreeContract() {
  107. // if (this.orderSign == 1 && this.orderSignUrl == '') {
  108. // uni.showModal({
  109. // title: '提示',
  110. // content: '您当前没有手写签名,是否要进行填写',
  111. // showCancel: true,
  112. // success: function(res) {
  113. // if (res.confirm) {
  114. // uni.navigateTo({
  115. // url: '/pages/my/sign/sign'
  116. // });
  117. // }
  118. // }
  119. // });
  120. // return;
  121. // }
  122. let pages = getCurrentPages();
  123. let prevPage = pages[pages.length - 2];
  124. // prevPage.setData({
  125. // isAgree: true
  126. // });
  127. prevPage.isAgree = true
  128. uni.navigateBack({
  129. delta: 1
  130. });
  131. }
  132. }
  133. };
  134. </script>
  135. <style>
  136. @import './contract.css';
  137. </style>