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