| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <template>
- <view class="content">
- <view class="param">
- <view class="proMiao mingchen">xxxx任务</view>
- <view class="proMiao title">任务详情</view>
- <view class="prolittle">生死狙击睡觉睡觉睡觉睡觉睡觉死狙击睡觉睡觉睡觉睡觉睡觉死狙击睡觉睡觉睡觉睡觉睡觉死狙击睡觉睡觉睡觉睡觉睡觉死狙击睡觉睡觉睡觉睡觉睡觉</view>
- <view class="proMiao title">评分上限</view>
- <view class="prolittle">80</view>
- <view class="proMiao title">权重</view>
- <view class="prolittle">80</view>
- <view class="proMiao title">提醒时间</view>
- <view class="prolittle">2024-01-22 14:22:22</view>
- <view class="proMiao title">预警时间</view>
- <view class="prolittle">2024-01-22 14:22:22</view>
- <view class="proMiao title">任务周期</view>
- <view class="prolittle">2024-01-22 14:22:22 - 2024-09-11 14:22:22</view>
- <view class="proMiao title">完成说明</view>
- <view class="prolittle">这里是完成说明</view>
- <view class="proMiao title">附件</view>
- <view class="prolittle" style="color: rgba(54, 111, 255, 1);">附件1</view>
- <view class="proMiao title">系统</view>
- <view class="prolittle">100</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onLoad() {
-
- },
- methods: {
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .param{
- margin: 20rpx 0 0 0;
- width: 100%;
- background-color: rgba(255, 255, 255, 1);
- font-size: 28rpx;
- font-weight: 400;
- line-height: 41rpx;
- color: rgba(0, 0, 0, 1);
- }
- .proMiao{
- margin: 31rpx 0 0 20rpx;
- width: 710rpx;
- }
- .prolittle{
- margin: 5rpx 0 0 20rpx;
- width: 710rpx;
- }
- .mingchen{
- font-size: 32rpx;
- font-weight: 500;
- line-height: 46rpx;
- }
- .title{
- color: rgba(102, 102, 102, 1);
- }
- </style>
|