You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
867 B
Plaintext
13 lines
867 B
Plaintext
<view class="container group">
|
|
<t-cell wx:for="{{groups}}" title="{{item.jtTeamsName}}">
|
|
<view style="width: 100%;" slot="note">{{item.jtTeamNumber}}人</view>
|
|
<t-icon name="minus-circle-filled" color="red" size="40rpx" data-num="{{item.jtTeamNumber}}" data-id="{{item.id}}" bindtap="handleDelete" slot="right-icon"></t-icon>
|
|
</t-cell>
|
|
<view class="bottom">
|
|
<t-button theme="primary" shape="round" data-key="showWithInput" bindtap="showDialog" block>添加班组</t-button>
|
|
</view>
|
|
<t-dialog visible="{{showWithInput}}" title="添加班组" confirm-btn="确定" cancel-btn="取消" bind:confirm="edit" bind:cancel="closeDialog">
|
|
<t-input borderless value="{{groupName}}" clearable slot="content" placeholder="输入班组名称" bind:change="handleChange" />
|
|
</t-dialog>
|
|
<t-dialog id="t-dialog" />
|
|
</view> |