handleMeeting.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <scroll-view style="flex:1">
  3. <view class="tableTop">
  4. <u-subsection bg-color="rgb(215,224,233)" button-color="rgb(0,99,208)" active-color="white" :list="list" ></u-subsection>
  5. <view class="operation">
  6. <uni-easyinput placeholder="请输入编号"></uni-easyinput>
  7. <u-button type="primary" size="medium" ripple>查询</u-button>
  8. <u-button size="medium" ripple>刷新</u-button>
  9. </view>
  10. </view>
  11. <u-line length="95%" margin="auto" color="#000"/>
  12. <myTable :column="column" :tableData="tableData"></myTable>
  13. </scroll-view>
  14. </template>
  15. <script setup>
  16. import { ref } from 'vue';
  17. const list = ref([
  18. {
  19. name: '待办',
  20. num: 2
  21. },
  22. {
  23. name: '已办',
  24. num: 2
  25. },
  26. {
  27. name: '办结',
  28. num: 6
  29. },
  30. ])
  31. const column = ref(["紧急程度", "流程名称", "编号", "承办部门", "标题", "会议室", "参会人数", "当前节点", "接收时间", "操作"])
  32. const tableData = ref([
  33. {
  34. "date": "不紧急",
  35. "name": "无",
  36. "address": "00747",
  37. "fwzh": "住建部",
  38. "zbcs": "海河英才计划",
  39. "sfyy": "办公室",
  40. "count":"28",
  41. "node": "sd",
  42. "time": "2020-50-93"
  43. },
  44. ])
  45. </script>
  46. <style lang="scss" scoped>
  47. ::v-deep .uni-table-scroll{
  48. margin: 0 50rpx !important;
  49. width: calc(100vw - 100rpx) !important;
  50. }
  51. </style>