This commit is contained in:
Mr.jiang 2024-07-09 14:19:00 +08:00
parent 413a708a0a
commit 57d421730d
3 changed files with 48 additions and 4 deletions

View File

@ -53,6 +53,28 @@
} }
} }
}, },
{
"path": "pages/cooperate/index",
"style": {
"navigationBarTitleText": "列表",
"enablePullDownRefresh": true,
"navigationStyle": "custom",
"app-plus": {
"titleNView": false
}
}
},
{
"path": "pages/cooperate/hehuo",
"style": {
"navigationBarTitleText": "城市合伙人",
"enablePullDownRefresh": true,
"navigationStyle": "custom",
"app-plus": {
"titleNView": false
}
}
},
{ {
"path": "pages/shop/index", "path": "pages/shop/index",
"style": { "style": {

View File

@ -1,18 +1,40 @@
<template> <template>
<view class="content"> <view class="content">
<view class="cooperate-tetle">-选择您的身份-</view> <view class="cooperate-tetle">-选择您的身份-</view>
<view class="cooperate-line"> <view class="cooperate-line" @click="goNav('/pages/my/hehuo')">
<image class="cooperate-img" src="../../static/cooperate/cooperate1.png" mode=""></image> <image class="cooperate-img" src="../../static/cooperate/cooperate1.png" mode=""></image>
</view> </view>
<view class="cooperate-line"> <view class="cooperate-line" @click="goNav('/pages/my/cooperation')">
<image class="cooperate-img" src="../../static/cooperate/cooperate2.png" mode=""></image> <image class="cooperate-img" src="../../static/cooperate/cooperate2.png" mode=""></image>
</view> </view>
<view class="cooperate-line"> <view class="cooperate-line" @click="goNav('/pages/cooperate/hehuo')">
<image class="cooperate-img" src="../../static/cooperate/cooperate3.png" mode=""></image> <image class="cooperate-img" src="../../static/cooperate/cooperate3.png" mode=""></image>
</view> </view>
</view> </view>
</template> </template>
<script>
export default {
data(){
return{}
},
methods:{
goNav(e){
if(e!=undefined){
uni.navigateTo({
url:e
})
}else{
uni.showToast({
title:'敬请期待!'
})
}
},
}
}
</script>
<style scoped> <style scoped>
.content { .content {

View File

@ -64,7 +64,7 @@
<image src="../../static/index-fenglei2.png" mode="widthFix"></image> <image src="../../static/index-fenglei2.png" mode="widthFix"></image>
<span class="feng_word">盛安技师</span> <span class="feng_word">盛安技师</span>
</view> </view>
<view class="index-project-content" @click="qidai()"> <view class="index-project-content" @click="goNav('/pages/cooperate/index')">
<image src="../../static/index-fenglei3.png" mode="widthFix"></image> <image src="../../static/index-fenglei3.png" mode="widthFix"></image>
<span class="feng_word">招聘合作</span> <span class="feng_word">招聘合作</span>
</view> </view>