Procházet zdrojové kódy

移动端 组件

master
yxq před 3 týdny
rodič
revize
3fb9cbc659
2 změnil soubory, kde provedl 8 přidání a 4 odebrání
  1. +4
    -2
      monitorMobile/components/selectRadio.vue
  2. +4
    -2
      monitorMobile/components/selectSearch.vue

+ 4
- 2
monitorMobile/components/selectRadio.vue Zobrazit soubor

@@ -1,6 +1,6 @@
<template>
<view>
<myCell v-if="cellVisible" :title="title_" isLink :border="false" @click="show = true"></myCell>
<myCell v-show="cellVisible" :title="title_" isLink :border="false" @click="show = true"></myCell>
<u-popup :show="show" mode="center" :round="10" @close="close" @open="open">
<u-radio-group v-model="value_" iconPlacement="right" placement="column" @change="change" borderBottom>
<u-radio v-for="(item,index) in options" :key="index" :label="item.label" :name="item.value"></u-radio>
@@ -29,7 +29,9 @@
default: "",
type: String
},
cellVisible:true,
cellVisible: {
default: true,
},
},
data() {
return {


+ 4
- 2
monitorMobile/components/selectSearch.vue Zobrazit soubor

@@ -1,6 +1,6 @@
<template>
<view>
<myCell v-if="cellVisible" :title="title_" isLink :border="false" @click="show = true"></myCell>
<myCell v-show="cellVisible" :title="title_" isLink :border="false" @click="show = true"></myCell>
<u-popup :show="show" mode="bottom" :closeable="true" :round="10" @close="close" @open="open">
<view>
<view class="title">
@@ -51,7 +51,9 @@
default: "",
type: String
},
cellVisible:true,
cellVisible: {
default: true,
},
},
data() {
return {


Načítá se…
Zrušit
Uložit