Blame view

uniapp_jiju/pages/InformationDisclosureDetail/InformationDisclosureDetail.vue 2.22 KB
d56bd957   “wangming”   修复问题,组建AI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
  <template>
  	<view class="page">
  		<view class="head">
  			<view class="logo-title">
  				<image @click="goBack" src="../../static/left.png"></image>
  				详情
  			</view>
  			<view class="title">
  			</view>
  			<view class="setting-mess"></view>
  		</view>
  		<view class="main">
  			<view class="content">
  				<view class="goods-title">
  					<view class="big">2024年10-11月项目申请人公示</view>
  					<view>2022-02-22 22:56</view>
  					<view class="content-box">
  						<image src="../../static/img/1.png"></image>
  					</view>
  					<view class="content-text">· 张伟杰,2024年10月-11月</view>
  					<view class="content-text">· 李梓萱,2024年10月-11月</view>
  					<view class="content-text">· 王思远,2024年10月-11月</view>
  					<view class="content-text">· 赵欣怡,2024年10月-11月</view>
  					<view class="content-text">· 刘浩宇,2024年10月-11月</view>
  					<view class="content-text">· 陈雅婷,2024年10月-11月</view>
  					<view class="content-text">· 周子墨,2024年10月-11月</view>
  					<view class="content-text">· 吴梓轩,2024年10月-11月</view>
  					<view class="content-text">· 徐晓萱,2024年10月-11月</view>
  					<view class="content-text">· 孙静怡,2024年10月-11月</view>
  					<view class="content-text">· 郭浩然,2024年10月-11月</view>
  					<view class="content-text">· 何梓萱,2024年10月-11月</view>
  					<view class="content-text">· 高博文,2024年10月-11月</view>
  					<view class="content-text">· 罗欣悦,2024年10月-11月</view>
  					<view class="content-text">· 黄梓涵,2024年10月-11月</view>
  					<view class="content-text">· 马思远,2024年10月-11月</view>
  					<view class="content-text">· 林雅琪,2024年10月-11月</view>
  					<view class="content-text">· 谢梓轩,2024年10月-11月</view>
  					<view class="content-text">· 冯欣怡,2024年10月-11月</view>
  					<view class="content-text">· 程浩宇,2024年10月-11月</view>
  				</view>
  			</view>
  		</view>
  	</view>
  </template>
  
  <script>
  	export default {
  		data() {
  			return {};
  		},
  		methods: {
  			goBack() {
  				uni.navigateBack({
  					delta: 1
  				});
  			},
  		}
  	};
  </script>
  
  <style scoped lang="scss">
  	@import 'InformationDisclosureDetail.scss';
  </style>