123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <template>
- <view>
- <tn-nav-bar fixed alpha customBack>
- <view slot="back" class='tn-custom-nav-bar__back'
- @click="goBack">
- <text class='icon tn-icon-left'></text>
- </view>
- <view slot="default">
- <view>
- <text :style="{fontSize:(wxFontSize)+'px'}">搜索</text>
- </view>
-
- </view>
- </tn-nav-bar>
-
- <view style="width: 100%;padding:16px" :style="{paddingTop: vuex_custom_bar_height + 'px'}">
- <uni-search-bar radius="30" :focus="true" :fontSize="(wxFontSize-2)" v-model="prodName" placeholder="请输入您感兴趣的产品名称(选填)" cancelButton="none">
- <template v-slot:searchIcon>
-
- </template>
- </uni-search-bar>
- <uni-search-bar radius="30" v-model="brand" :fontSize="(wxFontSize-2)" placeholder="请输入您感兴趣的产品品牌(选填)" cancelButton="none">
- <template v-slot:searchIcon>
-
- </template>
- </uni-search-bar>
- <uni-search-bar radius="30" v-model="prodSpec" :fontSize="(wxFontSize-2)" placeholder="请输入您感兴趣的产品型号(选填)" cancelButton="none">
- <template v-slot:searchIcon>
-
- </template>
- </uni-search-bar>
- <button type="primary" style="background-color:#1d60b1;border-radius: 23px" :style="{fontSize:(wxFontSize-2)+'px'}" @click="searchProd">搜索</button>
- <!-- <button type="primary" style="border-radius:30px;background-color: #3a96d7;" radius @click="searchProd">搜索</button> -->
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- brand: '',
- prodName:'',
- prodSpec: '',
- wxFontSize: 17
- }
- },
- onLoad(){
- const appBaseInfo = wx.getAppBaseInfo();
- this.wxFontSize = uni.getStorageSync('fontSize')||appBaseInfo.fontSizeSetting||17;
- },
- methods: {
- goBack(){
- uni.navigateBack();
- },
- searchProd(){
- if(this.prodName||this.brand||this.prodSpec){
- uni.setStorageSync('searchProdValue',this.prodName+'/'+this.brand+'/'+this.prodSpec)
- }else{
- uni.removeStorageSync('searchProdValue');
- }
-
- uni.navigateBack();
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- /* 胶囊*/
- .tn-custom-nav-bar__back {
- width: 60%;
- height: 100%;
- position: relative;
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- box-sizing: border-box;
- // background-color: rgba(0, 0, 0, 0.15);
- border-radius: 1000rpx;
- border: 1rpx solid rgba(255, 255, 255, 0.5);
- // color: #333;
- font-size: 18px;
-
- .icon {
- display: block;
- flex: 1;
- margin: auto;
- text-align: center;
- }
-
- }
- </style>
|