turn_send.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view>
  3. <uni-nav-bar fixed="true" statusBar="true" left-icon="back" leftText="转派工单" @clickLeft="back"></uni-nav-bar>
  4. <view class="page-bottom-padding">
  5. <template>
  6. <CellTip title="转派信息"> </CellTip>
  7. <Cell @click="toResult" cellType="more" title="接收人员"></Cell>
  8. <Cell title="转派原因"></Cell>
  9. </template>
  10. <template>
  11. <CellTip title="基本信息"> </CellTip>
  12. <CellInfo label="单据编号" value="OUT66262452215"></CellInfo>
  13. <CellInfo label="上次巡检时间" value="2022-01-22 19:00"></CellInfo>
  14. <CellInfo label="巡点检地图" icon="iconfont icon-yizhihang_1"></CellInfo>
  15. <CellInfo label="备注" value="秦始皇奠定中国两千余年政治制度基本格局 ,被明代思想家李贽誉为“千古一帝”。"></CellInfo>
  16. </template>
  17. </view>
  18. <view class="btn-submit">
  19. 提交
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. import Cell from '@/components/Cell.vue'
  25. import CellTip from '@/components/CellTip.vue'
  26. import CellInfo from '@/components/CellInfo.vue'
  27. export default {
  28. components: {
  29. Cell,
  30. CellTip,
  31. CellInfo
  32. },
  33. data() {
  34. return {
  35. }
  36. },
  37. methods: {
  38. toResult(){
  39. uni.navigateTo({
  40. url:'../turn_send_user/turn_send_user'
  41. })
  42. },
  43. }
  44. }
  45. </script>
  46. <style>
  47. </style>