| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <template>
- <view class="list">
- <view class="listItem">
- <view class="lable">
- 案件编号:
- </view>
- <view class="main">
- 123
- </view>
- </view>
- <view class="listItem">
- <view class="lable">
- 申请人姓名:
- </view>
- <view class="main">
- 张三
- </view>
- </view>
- <view class="listItem">
- <view class="lable">
- 被申请人姓名:
- </view>
- <view class="main">
- 李四
- </view>
- </view>
- <view class="listItem">
- <view class="lable">
- 案件状态:
- </view>
- <view class="main">
- 待确认是否应诉
- </view>
- </view>
- <view class="listItem">
- <view class="lable">
- 申请人姓名:
- </view>
- <view class="main">
- 张三
- </view>
- </view>
- <view class="btn">
- <button class="btnItem" type="primary" size="mini" @tap="uploadEvidence">上传证据</button>
- <button class="btnItem" type="primary" size="mini" @tap="confirmationEvidence">确认证据</button>
- <button class="btnItem" type="primary" size="mini" @tap="isAssignrbitrators">是否指派仲裁员</button>
- <button class="btnItem" type="primary" size="mini" @tap="chooseMethod">选择仲裁方式</button>
- </view>
- </view>
- </template>
-
- <script>
- export default{
- data(){
- return{
-
- }
- },
- methods:{
- isAssignrbitrators(){
- uni.navigateTo({
- url:'/pages/handlecase/component/assignrbitrators'
- })
- },
- // 上传证据
- uploadEvidence(){
- uni.navigateTo({
- url:'/pages/handlecase/component/uploadEvidence'
- })
- },
- // 确认证据
- confirmationEvidence(){
- uni.navigateTo({
- url:'/pages/handlecase/component/confirmationEvidence'
- })
- },
- // 选择仲裁方式
- chooseMethod(){
- uni.navigateTo({
- url:'/pages/handlecase/component/chooseMethod'
- })
- }
- }
- }
- </script>
-
- <style lang="scss" scoped>
- .list {
- padding: 15rpx;
- display: flex;
- flex-direction: column;
- background-color: #ffffff;
- height: 360rpx;
- border-radius: 30rpx;
- margin-top: 20rpx;
- .listItem {
- width: 100%;
- display: flex;
- height: 50rpx;
-
- .lable {
- width: 30%;
- }
-
- .main {
- width: 60%;
- }
- }
- .btn{
- margin-top: 20rpx;
- width: 100%;
- .btnItem{
- height: 50rpx;
- background-color: #5395ff;
- border-radius: 10rpx;
- text-align: center;
- line-height: 50rpx;
- margin-right: 30rpx;
- }
- }
- }
- </style>
|