safeGuard.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <view>
  3. <view class="basic-info">
  4. <view class="info-content">
  5. <view class="info-one-info ">
  6. <text>单位名称:</text>
  7. <text>虹泾总部园</text>
  8. </view>
  9. <view>
  10. <text>维保单位:</text>
  11. <text>永天科技</text>
  12. </view>
  13. <view>
  14. <text style="width:auto!important">开始日期:</text>
  15. <text>2020-06-08</text>
  16. </view>
  17. <view>
  18. <text>结束日期:</text>
  19. <text>2020-06-26</text>
  20. </view>
  21. <view>
  22. <text>销售人员:</text>
  23. <text>张三</text>
  24. </view>
  25. <view>
  26. <text>联系电话:</text>
  27. <text>13659595955</text>
  28. </view>
  29. <view>
  30. <text>客户联系人:</text>
  31. <text>李四</text>
  32. </view>
  33. <view>
  34. <text>联系电话:</text>
  35. <text>13659595955</text>
  36. </view>
  37. <view>
  38. <text>客户电话:</text>
  39. <text>15689898989</text>
  40. </view>
  41. <view>
  42. <text>合同状态:</text>
  43. <text class="online">启用</text>
  44. </view>
  45. <view>
  46. <text>详细内容:</text>
  47. <text class="viewDetail">点击下载查看详情</text>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. </template>
  53. <script>
  54. export default {
  55. data() {
  56. return {
  57. }
  58. },
  59. onNavigationBarButtonTap(e) {
  60. console.log(e)
  61. uni.navigateTo({
  62. url: '/pages/safeGuard/QA/QA',
  63. success: res => {},
  64. fail: () => {},
  65. complete: () => {}
  66. });
  67. },
  68. methods: {
  69. }
  70. }
  71. </script>
  72. <style lang="scss">
  73. </style>