You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
944 B
12 lines
944 B
<!--pages/setting/notification.wxml-->
|
|
<van-popup show="{{ notice }}" position="top" z-index="200" bind:close="onClose">
|
|
<view class="flex flex-center" style="height:{{CustomBar}}px;padding-top: {{StatusBar}}rpx;justify-content: flex-start">
|
|
<view class="text-xl" style="margin-left:32rpx">{{message.categoryName || '开卡提示'}}</view>
|
|
</view>
|
|
<view class="text-df" style="padding: 0rpx 32rpx;margin-top:12rpx">{{message.content}}</view>
|
|
<view class="flex" style="padding: 24rpx;justify-content: flex-end;">
|
|
<van-button round plain type="info" size="small" bind:click="submit">稍后处理</van-button>
|
|
<van-button id="employ" round type="info" size="small" bind:click="submit" custom-style="margin-left:24rpx;" wx:if="{{isAdmin}}">绑定员工</van-button>
|
|
<van-button id="client" round type="info" size="small" bind:click="submit" custom-style="margin-left:24rpx;">绑定客户</van-button>
|
|
</view>
|
|
</van-popup>
|