- t-disigin组件 t-textarea怎么实现页面上推?
<t-popup visible="{{visible}}" bind:visible-change="onVisibleChange" placement="bottom" t-class="popupstyle" custom-style="height: {{ actionType === 'remark' ? '500rpx' : actionType === 'complete' ? '750rpx' : actionType === 'transfer' ? '750rpx' : '600rpx' }}"> <view class="block"> <view class="header"> <view class="title">{{title}}</view> <view class="btn btn--cancel" bindtap="closePopup">取消</view> </view> <block wx:if="{{actionType === 'remark'}}"> <view> <t-textarea t-class="external-class" placeholder="请输入备注" disableDefaultPadding="{{true}}" bind:change="onTextAreaChange" /> </view> </block> <view> <t-textarea t-class="external-class" placeholder="请输入事件描述" adjust-position="true" disableDefaultPadding="{{true}}" bind:change="onTextAreaChange1" /> </view> <view> <t-textarea t-class="external-class" placeholder="请输入影响范围" disableDefaultPadding="{{true}}" adjust-position="true" bind:change="onTextAreaChange2" /> </view> <view class="button-example"> <t-button theme="primary" size="medium" block bind:tap="postAction">提交</t-button> </view> </view> </t-popup> t-textareat打开的时候键盘弹出把整个popup遮住了 自动上推设置不动。有朋友知道怎么解决吗?
2023-12-01 - tdesign组件picker如何实现上下排列?
<t-picker visible="{{cityVisible}}" value="{{cityValue}}" data-key="city" title="选择城市" cancelBtn="取消" confirmBtn="确认" bindchange="onPickerChange" bindpick="onColumnChange" bindcancel="onPickerCancel" > <t-picker-item options="{{citys}}" /> </t-picker> [图片] 这种 上下排列
2023-11-21 - input的placeholder字体颜色怎么改?
<input name="ticketName" type="String" class="input" maxlength="100" placeh [图片]怎么都改不动
2023-11-17 - 小程序弹出层点击遮罩层不关闭怎么解决?
真机调试是好的但是扫码预览 一旦打开弹出层 选择了弹出层项目 进入项目引导的页面a 返回的时候就弹出层还在 遮罩层丢失 怎么也关闭不了弹出层 有朋友遇到过这种问题吗?怎么解决的? <!--custom-tab-bar/index.wxml--> <view class="tab-bar"> <view wx:for="{{list}}" wx:key="index" class="tab-bar-item {{item.bulge?'bulge':''}}" data-path="{{item.pagePath}}" data-index="{{index}}" bindtap="switchTab"> <view wx:if="item.bulge" class="tab-bar-bulge"></view> <image class="image" src="{{selected == index ? item.selectedIconPath : item.iconPath}}"></image> <!-- <view wx:if="{{item.text}}" style="color: {{selected === index ? selectedColor : color}}" class="tab-bar-view">{{item.text}}</view> --> <view class="tab-bar-view" style="color: {{selected === index ? selectedColor : color}}">{{item.text}}</view> </view> </view> <!-- <view> <t-action-sheet id="childComponent" show-cancel="false" style="position: absolute; top: 0; z-index: 999;"></t-action-sheet> </view> --> <view> 弹出层 <t-action-sheet id="childComponent" show-cancel="false" style="position: absolute; top: 0;"></t-action-sheet> </view> [图片]
2023-11-16 - 自定义tabbar新建弹出pop组件怎么实现?
这是小程序的自定义tabbar点击到新建的时候弹出一个组件 待办点击到新建 待办的底层页面不动 在待办的上方弹出组件 首页点击到新建 首页的底层页面不动 在首页的上方弹出组件。代码如下 // 引入全局函数 const app = getApp() Component({ /** * 组件的初始数据 */ data: { selected: 0, color: "#afafaf", selectedColor: "#0099f6", backgroundColor: "#F7F8F8", list: [{ "pagePath": "/pages/Workstation/index/index", "text": "首页", "iconPath": "../static/images/home.png", "selectedIconPath": "../static/images/homese.png" }, { "pagePath": "/pages/Statistics/Statistics", "text": "统计", "iconPath": "../static/images/static.png", "selectedIconPath": "../static/images/staticse.png" }, { "pagePath": "/pages/staticOrder/staticOrder", bulge:true, "text": "新建", "iconPath": "../static/images/newse.png", "selectedIconPath": "../static/images/newse.png" }, { "pagePath": "/pages/index2/index2", "text": "待办", "iconPath": "../static/images/workstation.png", "selectedIconPath": "../static/images/homese.png" }, { "pagePath": "/pages/mine/mine", "text": "我的", "iconPath": "../static/images/mine.png", "selectedIconPath": "../static/images/minese.png" } ] }, ready: function () { this.setData({ selected: app.globalData.selected }) }, /** * 组件的方法列表 */ methods: { switchTab(e) { // console.log(e); const data = e.currentTarget.dataset; const url = data.path; app.globalData.selected = data.index; wx.switchTab({ url }) } }, })
2023-11-14 - t-design评分组件滑动点击不了,怎么解决?
[图片] 怎么点不动星星变动 就是按照官网上设置的
2023-11-04 - t-design怎么设置样式?
[图片] [图片]文档中只给了css变量,在xml中看到样式这样 不知道怎么设置?
2023-10-19 - T-desgin怎么使用行内样式类?
使用弹出层的时候我想根据标志物动态的设置弹出层的高度 如图所示 [图片] 文档里没有给出如何设置 有大佬知道怎么写吗? [图片]
2023-10-17 - 页面打开空白,小程序扫码能扫出来?
[图片]如图,重启也不行,有朋友知道怎么解决吗?或是什么缘故导致的?
2023-10-17 - form组件如何获取picker里的值?
[图片] console.log('form发生了submit事件,携带数据为:', e.detail.value) 按照form组件中的获取提交表单里的方法 发现e.detial.value的值里没有picker的内容 文档里的picker不是很理解意思?一键提交连同picker的值一起获得呢?
2023-10-17