list.vue 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <template>
  2. <view class="list">
  3. <view class="listItem">
  4. <view class="lable">
  5. 案件编号:
  6. </view>
  7. <view class="main">
  8. 123
  9. </view>
  10. </view>
  11. <view class="listItem">
  12. <view class="lable">
  13. 申请人姓名:
  14. </view>
  15. <view class="main">
  16. 张三
  17. </view>
  18. </view>
  19. <view class="listItem">
  20. <view class="lable">
  21. 被申请人姓名:
  22. </view>
  23. <view class="main">
  24. 李四
  25. </view>
  26. </view>
  27. <view class="listItem">
  28. <view class="lable">
  29. 案件状态:
  30. </view>
  31. <view class="main">
  32. 待确认是否应诉
  33. </view>
  34. </view>
  35. <view class="listItem">
  36. <view class="lable">
  37. 申请人姓名:
  38. </view>
  39. <view class="main">
  40. 张三
  41. </view>
  42. </view>
  43. <view class="btn">
  44. <button class="btnItem" type="primary" size="mini" @tap="uploadEvidence">上传证据</button>
  45. <button class="btnItem" type="primary" size="mini" @tap="confirmationEvidence">确认证据</button>
  46. <button class="btnItem" type="primary" size="mini" @tap="isAssignrbitrators">是否指派仲裁员</button>
  47. <button class="btnItem" type="primary" size="mini" @tap="chooseMethod">选择仲裁方式</button>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. export default{
  53. data(){
  54. return{
  55. }
  56. },
  57. methods:{
  58. isAssignrbitrators(){
  59. uni.navigateTo({
  60. url:'/pages/handlecase/component/assignrbitrators'
  61. })
  62. },
  63. // 上传证据
  64. uploadEvidence(){
  65. uni.navigateTo({
  66. url:'/pages/handlecase/component/uploadEvidence'
  67. })
  68. },
  69. // 确认证据
  70. confirmationEvidence(){
  71. uni.navigateTo({
  72. url:'/pages/handlecase/component/confirmationEvidence'
  73. })
  74. },
  75. // 选择仲裁方式
  76. chooseMethod(){
  77. uni.navigateTo({
  78. url:'/pages/handlecase/component/chooseMethod'
  79. })
  80. }
  81. }
  82. }
  83. </script>
  84. <style lang="scss" scoped>
  85. .list {
  86. padding: 15rpx;
  87. display: flex;
  88. flex-direction: column;
  89. background-color: #ffffff;
  90. height: 360rpx;
  91. border-radius: 30rpx;
  92. margin-top: 20rpx;
  93. .listItem {
  94. width: 100%;
  95. display: flex;
  96. height: 50rpx;
  97. .lable {
  98. width: 30%;
  99. }
  100. .main {
  101. width: 60%;
  102. }
  103. }
  104. .btn{
  105. margin-top: 20rpx;
  106. width: 100%;
  107. .btnItem{
  108. height: 50rpx;
  109. background-color: #5395ff;
  110. border-radius: 10rpx;
  111. text-align: center;
  112. line-height: 50rpx;
  113. margin-right: 30rpx;
  114. }
  115. }
  116. }
  117. </style>