wwp 3 weken geleden
bovenliggende
commit
f61974704d
2 gewijzigde bestanden met toevoegingen van 8 en 2 verwijderingen
  1. +4
    -1
      monitorMobile/components/selectRadio.vue
  2. +4
    -1
      monitorMobile/components/selectSearch.vue

+ 4
- 1
monitorMobile/components/selectRadio.vue Bestand weergeven

@@ -1,6 +1,6 @@
<template>
<view>
<myCell :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,6 +29,9 @@
default: "",
type: String
},
cellVisible: {
default: true,
},
},
data() {
return {


+ 4
- 1
monitorMobile/components/selectSearch.vue Bestand weergeven

@@ -1,6 +1,6 @@
<template>
<view>
<myCell :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,6 +51,9 @@
default: "",
type: String
},
cellVisible: {
default: true,
},
},
data() {
return {


Laden…
Annuleren
Opslaan