| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <view class="custom-card">
- <view class="custom-card-header">
- <view class="custom-card-action" @tap="BackPage">
- <u-icon name="arrow-left" color="#333333" size="32rpx" />
- <view class="custom-card-action-text">
- <slot name="backText"></slot>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'custom-card',
- props: {},
- data() {
- return {};
- },
- methods: {
- BackPage() {
- uni.navigateBack({
- delta: 1,
- });
- },
- },
- };
- </script>
- <style scoped lang="scss">
- .custom-card {
- border-radius: 16upx;
- opacity: 1;
- }
- .custom-card-header {
- padding: 0 23upx;
- height: 90rpx;
- color: #333333;
- font-size: 27upx;
- font-weight: 600;
- font-family: 'PingFang SC';
- line-height: 44upx;
- .custom-card-action {
- display: flex;
- align-items: center;
- height: 90rpx;
- line-height: 90rpx;
- .custom-card-action-text {
- width: 90%;
- text-align: center;
- color: #042118;
- font-size: 34rpx;
- }
- }
- }
- </style>
|