Blame view

pages/complaint/complaint.vue 1.16 KB
4dfe89e4   monkeyhouyi   初始化
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
  <template>
  	<view class="page">
  		<view class="add-list">
  			<view class="list">
  				<view class="title">
  					<text>投诉类型</text>
  					<text class="star">*</text>
  				</view>
  				<view class="content">
  					<input type="text" placeholder="请输入">
  				</view>
  			</view>
  			<view class="list">
  				<view class="title">
  					<text>问题描述</text>
  					<text class="star">*</text>
  				</view>
  				<view class="content">
  					<input type="text" placeholder="请输入">
  				</view>
  			</view>
  			<view class="feedback-data">
  				<view>
  					<view class="title">
  						<text>现场照片</text>
  						<text class="star">*</text>
  					</view>
  				</view>
  				<view class="voucher-img">
  					<view class="voucher-list">
c62ab6f2   杨鑫   1
31
  						<image :src="$imgUrl('/voucher_bg.png')" ></image>
4dfe89e4   monkeyhouyi   初始化
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
  					</view>
  				</view>
  			</view>
  		</view>
  		<!-- 保存按钮 -->
  		<view class="page-footer">
  		  <view class="footer-buy">
  		    <view class="cart-add">
  		      <text>提交</text>
  		    </view>
  		  </view>
  		</view>
  	</view>
  </template>
  
  <script>
  	export default {
  		data() {
  			return {
  				
  			};
  		},
  		methods:{
  		}
  	}
  </script>
  
  <style scoped lang="scss">
  	@import 'complaint.scss';
  </style>