This commit is contained in:
zmr900709
2020-06-15 09:02:17 +08:00
parent f82d5653cc
commit 5a20ca8726
14 changed files with 688 additions and 18 deletions

View File

@@ -67,7 +67,7 @@
</swiper>
<view class="release-btn">
<image src="/static/home/1.png"></image>
<view class="text">发布</view>
<view class="text" @click="release()">发布</view>
</view>
<u-select v-model="showSelect" mode="mutil-column-auto" :list="workerList" @confirm="setWorker"></u-select>
<u-popup v-model="showComplaint" mode="center" border-radius="10">
@@ -153,6 +153,12 @@ export default {
name: e[1].label
}
},
// 发布页面跳转
release(){
uni.navigateTo({
url: '/pages/release/tosign'
});
},
tabsChange(index) {
this.swiperCurrent = index;
},