12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <view style="text-align: center;" :style="{paddingTop: vuex_custom_bar_height + 'px'}">
- <image style="width: 180px;height: 150px" src="../../static/logo.png"></image>
-
- <view style="margin-top:24px"><text style="font-size:30px;">生物制药产业</text></view>
- <view><text style="font-size:30px">国际产品展示中心</text></view>
- <view style="margin-top:24px"><text style="font-size:20px;">生物制药产业一站式产品资源供需平台</text></view>
-
- <view style="display: flex;margin-top:32px">
- <view style="flex: 1;padding: 0 16px;">
- <button type="primary" style="background-color:#1d60b1;border-radius: 23px" @click="showAdd">我要什么</button>
- </view>
- <view style="flex: 1;padding: 0 16px;">
- <button type="primary" style="background-color:#1d60b1;border-radius: 23px" @click="showAdd2">我有什么</button>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- showAdd(){
- if(uni.getStorageSync('userNo')){
- uni.navigateTo({
- url:'/circlePages/circle'
- })
- }else{
- uni.navigateTo({
- url:'/pages/login/login'
- })
- }
-
- },
- showAdd2(){
- if(uni.getStorageSync('userNo')){
- uni.navigateTo({
- url:'/circlePages/addShare'
- })
- }else{
- uni.navigateTo({
- url:'/pages/login/login'
- })
- }
-
- }
- }
- }
- </script>
- <style>
- </style>
|