瀏覽代碼

移动端 组件

master
yxq 3 週之前
父節點
當前提交
3fb9cbc659
共有 2 個檔案被更改,包括 8 行新增4 行删除
  1. +4
    -2
      monitorMobile/components/selectRadio.vue
  2. +4
    -2
      monitorMobile/components/selectSearch.vue

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

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

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


Loading…
取消
儲存