list.vue 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. </view>
  48. </view>
  49. </template>
  50. <script>
  51. export default{
  52. data(){
  53. return{
  54. }
  55. },
  56. methods:{
  57. isAssignrbitrators(){
  58. uni.navigateTo({
  59. url:'/pages/handlecase/component/assignrbitrators'
  60. })
  61. },
  62. // 上传证据
  63. uploadEvidence(){
  64. uni.navigateTo({
  65. url:'/pages/handlecase/component/uploadEvidence'
  66. })
  67. },
  68. // 确认证据
  69. confirmationEvidence(){
  70. uni.navigateTo({
  71. url:'/pages/handlecase/component/confirmationEvidence'
  72. })
  73. }
  74. }
  75. }
  76. </script>
  77. <style lang="scss" scoped>
  78. .list {
  79. padding: 15rpx;
  80. display: flex;
  81. flex-direction: column;
  82. background-color: #ffffff;
  83. height: 360rpx;
  84. border-radius: 30rpx;
  85. margin-top: 20rpx;
  86. .listItem {
  87. width: 100%;
  88. display: flex;
  89. height: 50rpx;
  90. .lable {
  91. width: 30%;
  92. }
  93. .main {
  94. width: 60%;
  95. }
  96. }
  97. .btn{
  98. margin-top: 20rpx;
  99. width: 100%;
  100. .btnItem{
  101. height: 50rpx;
  102. background-color: #5395ff;
  103. border-radius: 10rpx;
  104. text-align: center;
  105. line-height: 50rpx;
  106. margin-right: 30rpx;
  107. }
  108. }
  109. }
  110. </style>