From c462126d2eaf08e95c7bbb7f5db0a1a826356a75 Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期四, 28 十一月 2024 15:08:13 +0800
Subject: [PATCH] Merge branch 'master' of http://139.186.142.91:10010/r/productDev/funingyunwei
---
h5/pages/operation/detail.vue | 92 ++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 92 insertions(+), 0 deletions(-)
diff --git a/h5/pages/operation/detail.vue b/h5/pages/operation/detail.vue
new file mode 100644
index 0000000..ab1ce29
--- /dev/null
+++ b/h5/pages/operation/detail.vue
@@ -0,0 +1,92 @@
+<template>
+ <view>
+ <view class="content">
+ <view class="name_wrap">
+ <view class="name">xx璁惧</view>
+ <view class="status red">姝e父</view>
+ </view>
+ <view class="line">杩愮淮浜猴細xxx</view>
+ <view class="line">杩愮淮鏃堕棿锛�121212</view>
+ </view>
+ <!-- -->
+ <view class="remark">
+ <view class="title">杩愮淮澶囨敞</view>
+ <view class="file_list">
+ <view class="file">
+
+ </view>
+ </view>
+ <view class="desc">remark</view>
+ </view>
+ </view>
+</template>
+
+<script>
+ export default {
+ data() {
+ return {
+
+ };
+ }
+ }
+</script>
+
+<style lang="scss" scoped>
+ .content {
+ flex: 1;
+ color: #666666;
+ display: flex;
+ flex-direction: column;
+ justify-content: space-between;
+ height: 260rpx;
+ padding: 30rpx;
+ border-bottom: 20rpx solid #f7f7f7;
+ .name_wrap {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+
+ .name{
+ font-weight: 600;
+ font-size: 34rpx;
+ color: #222222;
+ }
+
+ .status {
+ color: $primaryColor;
+ }
+ }
+ }
+ .remark{
+ padding: 0 30rpx;
+ .title{
+ font-weight: 600;
+ font-size: 32rpx;
+ color: #222222;
+ height: 104rpx;
+ display: flex;
+ align-items: center;
+ }
+ .file_list{
+ display: flex;
+ flex-wrap: wrap;
+
+ .file{
+ width: 156rpx;
+ height: 156rpx;
+ border-radius: 12rpx;
+ margin-right: 22rpx;
+ margin-bottom: 22rpx;
+ &:nth-of-type(4n){
+ margin-right: 0;
+ }
+ }
+ }
+ .desc{
+ margin-top: 8rpx;
+ padding: 24rpx 30rpx;
+ background: #F7F7F7;
+ border-radius: 12rpx;
+ }
+ }
+</style>
\ No newline at end of file
--
Gitblit v1.9.3