瀏覽代碼

移动端 组件

master
yxq 3 週之前
父節點
當前提交
847519aded
共有 2 個文件被更改,包括 4 次插入2 次删除
  1. +2
    -1
      monitorMobile/components/selectRadio.vue
  2. +2
    -1
      monitorMobile/components/selectSearch.vue

+ 2
- 1
monitorMobile/components/selectRadio.vue 查看文件

@@ -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 查看文件

@@ -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 {


Loading…
取消
儲存