develop #1

Merged
dashixiong merged 37 commits from develop into main 2026-02-11 02:07:35 +00:00
7 changed files with 341 additions and 34 deletions
Showing only changes of commit c3820a5805 - Show all commits

View File

@ -72,14 +72,14 @@
padding:50px 20px;
}
.item-list{
border-radius: 5px;
box-shadow: 0px 0px 3px 0 rgba(0, 0, 0, 0.3);
border-radius: 7px;
box-shadow: 0 0 10px rgba(0,0,0,.1),0 0 0 rgba(0,0,0,.5);
font-size: 16px;
line-height: 24px;
margin-bottom: 20px;
border:1px solid #eee;
.item-title{
border-radius: 5px 5px 0 0;
border-radius: 7px 7px 0 0;
font-size: 18px;
border-bottom:1px solid #eee ;
padding:10px 15px;

View File

@ -1,12 +1,16 @@
<template>
<view class="container">
<view class="item-lists">
<view class="title">工单号</view>
<view class="info">{{info.ticketNo || ''}}</view>
</view>
<view class="item-lists">
<view class="title">工单标题</view>
<view class="info">{{info.title || ''}}</view>
</view>
<view class="item-lists">
<view class="title">提交用户</view>
<view class="info">{{info.createBy || '-'}}</view>
<view class="info">{{info.userName || '-'}}</view>
</view>
<view class="item-lists">
<view class="title">问题描述</view>
@ -26,7 +30,7 @@
</view>
<view class="item-lists">
<view class="title">处理人</view>
<view class="info">{{info.updateBy || '-'}}</view>
<view class="info">{{info.workName || '-'}}</view>
</view>
<view class="item-lists">
<view class="title">上传图片</view>
@ -43,8 +47,7 @@
</uni-file-picker>
</view>
</view>
<!-- 已处理的工单不在展示提交按钮 -->
<button class="button" type="primary" style="margin-top:30px;" v-if="info.status!=1" :loading="loading" @click="submit">提交</button>
<button class="button" type="primary" style="margin-top:30px;" :loading="loading" @click="submit">提交</button>
</view>
</template>
@ -159,7 +162,7 @@
padding:20px 20px;
}
.item-lists{
box-shadow: 0px 0px 3px 0 rgba(0, 0, 0, 0.3);
box-shadow: 0 0 10px rgba(0,0,0,.1),0 0 0 rgba(0,0,0,.5);
border-radius: 5px;
font-size: 16px;
line-height: 20px;