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
965 B
12 lines
965 B
<!--pages/setting/notification.wxml-->
|
|
<van-popup show="{{ notice }}" position="top" z-index="200" bind:close="onClose">
|
|
<view style="height:{{CustomBar}}px;padding-top:{{StatusBar}}rpx;padding: {{StatusBar}}rpx 32rpx;">
|
|
<view class="text-xl" style="margin-top:8rpx">{{message.categoryName || '开卡提示'}}</view>
|
|
<view class="text-df" style="width:76%">{{message.content}}</view>
|
|
</view>
|
|
<view class="flex" style="padding: 0rpx 24rpx 24rpx 24rpx;justify-content: flex-end;margin-top: 24rpx">
|
|
<van-button round plain type="info" size="small" custom-style="width: 150rpx" bind:click="submit">稍后处理</van-button>
|
|
<van-button id="employ" round type="info" size="small" bind:click="submit" custom-style="margin-left:24rpx;width: 150rpx">绑定员工</van-button>
|
|
<van-button id="client" round type="info" size="small" bind:click="submit" custom-style="margin-left:24rpx;width: 150rpx">绑定客户</van-button>
|
|
</view>
|
|
</van-popup>
|