123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <template>
- <dm-pop-view ref='popView' :isShowTitle="false" :isShowClose="false" :isShowConfirm="false" :maskTapHide='maskTapHide'>
- <view class="export-content">
- <image class="icon" src="../../static/icons/icon_finsh_yellow@2x.png" mode=""></image>
- <view class="content-des">明细文档已生成至导出列表</view>
- <view class="goBtn" :style="`background-color: ${themeColor};`" @click="confirmAction">立即前往</view>
- <view class="knowBtn" @click="knowAction">知道了</view>
- </view>
- </dm-pop-view>
- </template>
- <script>
- import dmPopView from './dmPopView.vue'
-
- let app = getApp();
- export default {
- props: {
- maskTapHide: {
- type: Boolean,
- default: true
- }
- },
- data() {
- return {
- themeColor: null,
- fuzhuColor: null,
- themeColor50: null,
- themeColor25: null,
- fuzhuColor50: null,
- }
- },
- mounted() {
- this.themeColor = app.globalData.themeColor
- this.themeColor50 = app.globalData.themeColor50
- this.themeColor25 = app.globalData.themeColor25
- this.fuzhuColor = app.globalData.fuzhuColor
- this.fuzhuColor50 = app.globalData.fuzhuColor50
-
- },
- methods: {
- show() {
- this.$refs.popView.show()
- },
- knowAction(){
- this.$refs.popView.hide()
- },
- confirmAction() {
- this.$refs.popView.hide()
- this.$emit('confirmGoExport')
- }
- },
- components: {
- dmPopView
- }
- }
- </script>
- <style scoped lang="scss">
- .export-content {
- width: 100%;
- height: 676rpx;
- font-family: Verdana;
-
- .icon {
- width: 118rpx;
- height: 118rpx;
- margin-top: 124rpx;
- margin-left: calc((100% - 118rpx) / 2);
- }
-
- .content-des {
- color: #333333;
- font-size: 32rpx;
- font-weight: bold;
- margin-top: 30rpx;
- text-align: center;
- }
-
- .goBtn {
- width: 260rpx;
- height: 84rpx;
- border-radius: 42rpx;
- margin-left: calc((100% - 260rpx) / 2);
- margin-top: 100rpx;
- font-size: 32rpx;
- color: #FFFFFF;
- line-height: 84rpx;
- text-align: center;
- }
-
- .knowBtn {
- width: 260rpx;
- height: 84rpx;
- border-radius: 42rpx;
- margin-left: calc((100% - 260rpx) / 2);
- margin-top: 20rpx;
- color: #666666;
- font-size: 32rpx;
- line-height: 84rpx;
- text-align: center;
- }
-
- }
- </style>
|