Ver código fonte

移动端 组件

master
yxq 3 semanas atrás
pai
commit
847519aded
2 arquivos alterados com 4 adições e 2 exclusões
  1. +2
    -1
      monitorMobile/components/selectRadio.vue
  2. +2
    -1
      monitorMobile/components/selectSearch.vue

+ 2
- 1
monitorMobile/components/selectRadio.vue Ver arquivo

@@ -1,6 +1,6 @@
<template>
<view>
<myCell :title="title_" isLink :border="false" @click="show = true"></myCell>
<myCell v-if="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,7 @@
default: "",
type: String
},
cellVisible:true,
},
data() {
return {


+ 2
- 1
monitorMobile/components/selectSearch.vue Ver arquivo

@@ -1,6 +1,6 @@
<template>
<view>
<myCell :title="title_" isLink :border="false" @click="show = true"></myCell>
<myCell v-if="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,7 @@
default: "",
type: String
},
cellVisible:true,
},
data() {
return {


Carregando…
Cancelar
Salvar