提交 50790911 编写于 作者: 雪洛's avatar 雪洛

fix: text组件错误用法

上级 23acae59
......@@ -7,7 +7,7 @@
<view class="uni-label" style="width:180px;">{{item.label}}</view>
</view>
<view class="uni-list-cell-db">
<text style="width: 100%;" :value="item.value == '' ? '未获取' : item.value " />
<text style="width: 100%;">{{ item.value == '' ? '未获取' : item.value }}</text>
</view>
</view>
</view>
......
......@@ -14,7 +14,7 @@
}}</view>
</view>
<view class="uni-list-cell-db">
<text style="width: 100%;" :value="item.value == '' ? '未获取' : item.value " />
<text style="width: 100%;">{{ item.value == '' ? '未获取' : item.value }}</text>
</view>
</view>
</view>
......
......@@ -3,7 +3,7 @@
<scroll-view class="page-scroll-view">
<!-- #endif -->
<text>显示简易操作日志,详细日志需真机运行查看</text><button size="mini" @click="log=''">清空日志</button>
<text style="margin: 2px; padding: 2px; border: 1px solid #000000;" :value="log" />
<text style="margin: 2px; padding: 2px; border: 1px solid #000000;">{{ log }}</text>
<button type="primary" @tap="statFileInfoTest" id="btn-stat-file">递归获取目录files的Stats对象{{statFile}}</button>
<button type="primary" @tap="mkdirTest" id="btn-mkdir">创建文件夹{{mkdirFile}}</button>
<button type="primary" @tap="writeFileTest" id="btn-write-file">覆盖写入文件{{writeFile}}</button>
......
......@@ -13,7 +13,7 @@
}}</view>
</view>
<view class="uni-list-cell-db">
<text style="width: 100%;" :value="item.value == '' ? '未获取' : item.value " />
<text style="width: 100%;">{{ item.value == '' ? '未获取' : item.value }}</text>
</view>
</view>
</view>
......
......@@ -7,7 +7,7 @@
<view class="uni-label" style="width: 180px">{{ item.label }}</view>
</view>
<view class="uni-list-cell-db">
<text style="width: 100%;" :value="item.value == '' ? '未获取' : item.value " />
<text style="width: 100%;">{{ item.value == '' ? '未获取' : item.value }}</text>
</view>
</view>
</view>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册