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
|
<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="contractdetail"><image src="../../static/img/10.png" mode="widthFix"></image></view>
<view class="page-footer">
<view class="footer-buy">
<view class="cart-add">
<text>下载</text>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods: {
goBack() {
uni.navigateBack({
delta: 1
});
},
}
}
</script>
<style scoped lang="scss">
@import 'contractDetail.scss';
</style>
|