copyCheckFormConfirm.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <view class="wrap">
  3. <page-nav :desc="desc" :title="title"></page-nav>
  4. <view class="uni-form-item uni-column">
  5. <view class="line-body">
  6. <button type="default" @click="onCopyClick">复制该检查单</button>
  7. </view>
  8. <view class="line-body" style="margin-top: 10px;">
  9. <button type="default" @click="onContinunClick">继续检查</button>
  10. </view>
  11. </view>
  12. <u-gap height="70"></u-gap>
  13. </view>
  14. </template>
  15. <script>
  16. import pageNav from '@/components/page-nav/page-nav.vue';
  17. import http from '@/http/api.js'
  18. export default {
  19. components: {
  20. pageNav
  21. },
  22. onLoad(option) {
  23. },
  24. data() {
  25. return {
  26. title: '下一步流程',
  27. desc: '',
  28. }
  29. },
  30. computed: {
  31. getIcon() {
  32. return path => {
  33. return 'https://cdn.uviewui.com/uview/example/' + path + '.png';
  34. }
  35. },
  36. },
  37. onShow() {
  38. uni.setNavigationBarTitle({
  39. title: ""
  40. });
  41. },
  42. created() {
  43. },
  44. methods: {
  45. onCopyClick(e) {
  46. },
  47. onContinunClick(e) {
  48. },
  49. }
  50. }
  51. </script>
  52. <style>
  53. /* page {
  54. background-color: rgb(240, 242, 244);
  55. } */
  56. </style>
  57. <style lang="scss" scoped>
  58. .u-cell-icon {
  59. width: 36rpx;
  60. height: 36rpx;
  61. margin-right: 8rpx;
  62. }
  63. .slot-box {
  64. /* #ifndef APP-NVUE */
  65. display: flex;
  66. /* #endif */
  67. flex-direction: row;
  68. align-items: center;
  69. }
  70. .slot-image {
  71. /* #ifndef APP-NVUE */
  72. display: block;
  73. /* #endif */
  74. margin-right: 10px;
  75. width: 30px;
  76. height: 30px;
  77. }
  78. .slot-text {
  79. flex: 1;
  80. font-size: 14px;
  81. color: #4cd964;
  82. margin-right: 10px;
  83. }
  84. </style>