renwuX.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template>
  2. <view class="content">
  3. <view class="param">
  4. <view class="proMiao mingchen">xxxx任务</view>
  5. <view class="proMiao title">任务详情</view>
  6. <view class="prolittle">生死狙击睡觉睡觉睡觉睡觉睡觉死狙击睡觉睡觉睡觉睡觉睡觉死狙击睡觉睡觉睡觉睡觉睡觉死狙击睡觉睡觉睡觉睡觉睡觉死狙击睡觉睡觉睡觉睡觉睡觉</view>
  7. <view class="proMiao title">评分上限</view>
  8. <view class="prolittle">80</view>
  9. <view class="proMiao title">权重</view>
  10. <view class="prolittle">80</view>
  11. <view class="proMiao title">提醒时间</view>
  12. <view class="prolittle">2024-01-22 14:22:22</view>
  13. <view class="proMiao title">预警时间</view>
  14. <view class="prolittle">2024-01-22 14:22:22</view>
  15. <view class="proMiao title">任务周期</view>
  16. <view class="prolittle">2024-01-22 14:22:22 - 2024-09-11 14:22:22</view>
  17. <view class="proMiao title">完成说明</view>
  18. <view class="prolittle">这里是完成说明</view>
  19. <view class="proMiao title">附件</view>
  20. <view class="prolittle" style="color: rgba(54, 111, 255, 1);">附件1</view>
  21. <view class="proMiao title">系统</view>
  22. <view class="prolittle">100</view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. data() {
  29. return {
  30. }
  31. },
  32. onLoad() {
  33. },
  34. methods: {
  35. }
  36. }
  37. </script>
  38. <style>
  39. .content {
  40. display: flex;
  41. flex-direction: column;
  42. align-items: center;
  43. justify-content: center;
  44. }
  45. .param{
  46. margin: 20rpx 0 0 0;
  47. width: 100%;
  48. background-color: rgba(255, 255, 255, 1);
  49. font-size: 28rpx;
  50. font-weight: 400;
  51. line-height: 41rpx;
  52. color: rgba(0, 0, 0, 1);
  53. }
  54. .proMiao{
  55. margin: 31rpx 0 0 20rpx;
  56. width: 710rpx;
  57. }
  58. .prolittle{
  59. margin: 5rpx 0 0 20rpx;
  60. width: 710rpx;
  61. }
  62. .mingchen{
  63. font-size: 32rpx;
  64. font-weight: 500;
  65. line-height: 46rpx;
  66. }
  67. .title{
  68. color: rgba(102, 102, 102, 1);
  69. }
  70. </style>