App-Android(使用App+htnl5框架,解决消息推送兼容SignalR问题)
loulijun2021
2022-10-20 8050665efc07f2666d803b14f01dfe07dc54da26
unpackage/cache/wgt/H5EDA0853/pages/test/test1.html
@@ -83,6 +83,32 @@
                <van-button type="primary">浅色风格</van-button>
              </template>
            </van-popover>
         <van-dropdown-menu :overlay="false" style="width: 100px;">
            <van-dropdown-item style="width: 100px;" v-model="value1" :options="option1" />
         </van-dropdown-menu>
         <van-radio-group v-model="radio">
           <van-cell-group>
              <div>1</div>
             <van-cell title="单选框 1" clickable @click="radio = '1'">
              <template #right-icon>
                 <van-radio name="1" />
               </template>
             </van-cell>
              <div>2</div>
              <div>3</div>
             <van-cell title="单选框 2" clickable @click="radio = '2'">
               <template #right-icon>
                 <van-radio name="2" />
               </template>
             </van-cell>
            <div>4</div>
           </van-cell-group>
         </van-radio-group>
         </div>
      </div>
   </body>
@@ -108,6 +134,18 @@
               }, {
                  text: '选项三'
               }],
              value1: 0,
                  // value2: 'a',
                  option1: [
                    { text: '全部商品', value: 0 },
                    { text: '新款商品', value: 1 },
                    { text: '活动商品', value: 2 },
                  ],
                  // option2: [
                  //   { text: '默认排序', value: 'a' },
                  //   { text: '好评排序', value: 'b' },
                  //   { text: '销量排序', value: 'c' },
                  // ],
            }
         },
         created() {
@@ -117,6 +155,7 @@
            // console.log(vant.Toast('xxx'))
         },
         methods: {
            onSelect(action) {
               Toast(action.text);
            },