Browse Source

询价列表 page

devlop
邓雄飞 4 years ago
parent
commit
8e3ff087b5
3 changed files with 28 additions and 1 deletions
  1. 7
      pages.json
  2. 20
      pages/enquiry-list/index.vue
  3. 2
      pages/mine/index.vue

7
pages.json

@ -113,6 +113,13 @@
"enablePullDownRefresh": false
}
},
{
"path": "pages/enquiry-list/index",
"style": {
"navigationBarTitleText": "询价列表",
"enablePullDownRefresh": false
}
},
{
"path": "pages/for-comparison/index",
"style": {

20
pages/enquiry-list/index.vue

@ -0,0 +1,20 @@
<template>
<view>
<uni-nav-bar left-icon="back" @clickLeft="back" statusBar fixed title="询价列表"></uni-nav-bar>
</view>
</template>
<script>
import { go2, back } from '@/utils/hook.js'
export default {
data() {
return {}
},
methods: {
go2,
back
}
}
</script>
<style lang="scss" scoped></style>

2
pages/mine/index.vue

@ -99,7 +99,7 @@
<image class="icon" src="/static/imgs/mine/account-icon.png"></image>
<text class="label">账号管理</text>
</view>
<view class="icon-item" style="margin-right: 64rpx" @click="go2('for-comparison')">
<view class="icon-item" style="margin-right: 64rpx" @click="go2('enquiry-list')">
<image class="icon" src="/static/imgs/mine/enquiry-icon.png"></image>
<text class="label">我的询价</text>
</view>

Loading…
Cancel
Save