Commit 97599be2 authored by chuan.liu's avatar chuan.liu

市场线索页面新增

parent 4bfe6d9d
...@@ -719,6 +719,22 @@ ...@@ -719,6 +719,22 @@
"bounce": "none" "bounce": "none"
} }
} }
},
{
"path": "pages/breakwords-market/breakwords-market",
"style": {
"app-plus": {
"titleNView": {
"titleAlign": "left",
"titleColor": "#333",
"titleSize": "17px",
"backgroundColor": "transparent",
"titleText": "市场线索",
"autoBackButton": true
}
}
// "enablePullDownRefresh": true
}
} }
], ],
"globalStyle": { "globalStyle": {
......
This diff is collapsed.
...@@ -22,14 +22,14 @@ ...@@ -22,14 +22,14 @@
<view class="todo-box block"> <view class="todo-box block">
<text class="title">市场秩序</text> <text class="title">市场秩序</text>
<view class="amount-block"> <view class="amount-block">
<view class="order-amount" @click="entryHandle"> <view class="order-amount" @click="entryHandle('breakwords-clue')">
<view class="order-amount--wrapper"> <view class="order-amount--wrapper">
<image class="entry-icon" src="@/static/image/home_report@3x.png" mode="aspectFit"> <image class="entry-icon" src="@/static/image/home_report@3x.png" mode="aspectFit">
</image> </image>
<text class="order-amount--num">提报线索</text> <text class="order-amount--num">提报线索</text>
</view> </view>
</view> </view>
<view class="order-amount" @click="entryHandle"> <view class="order-amount" @click="entryHandle('breakwords-market')">
<view class="order-amount--wrapper"> <view class="order-amount--wrapper">
<image class="entry-icon" src="@/static/image/home_marketclue@3x.png" mode="aspectFit"> <image class="entry-icon" src="@/static/image/home_marketclue@3x.png" mode="aspectFit">
</image> </image>
...@@ -275,12 +275,18 @@ ...@@ -275,12 +275,18 @@
change(e) { change(e) {
this.current = e.detail.current; this.current = e.detail.current;
}, },
entryHandle() { entryHandle(path) {
uni.showToast({ uni.showToast({
title: '开发中...', title: '开发中...',
icon: 'none', icon: 'none',
duration: 1500 duration: 1500
}); });
return
uni.navigateTo({
url: `/pages/${path}/${path}`
})
} }
} }
} }
......
No preview for this file type
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment