增加东西

This commit is contained in:
yziiy
2025-10-30 18:27:45 +08:00
parent 4fc72fbffe
commit 5ed0c676b2
200 changed files with 59 additions and 288 deletions

View File

@@ -53,9 +53,9 @@ img {
}
// 定制
:root {
--primary-color: #6C49E4;
--primary-color: #3ABC6D;
--sub-color: #F0EEF7;
--subs-color: #6C49E4;
--subs-color: #3ABC6D;
--subss-color: #DEB52E;
--warn-color:#F69627;
--font-button-color:#fff;

View File

@@ -1,5 +1,5 @@
<template>
<view class="view-page" :style="{backgroundImage : `url('${ThemeData?.app_bg || $config.PRIMARY_BGURL}')`}">
<view class="view-page" :style="{backgroundImage : `url('${ThemeData?.app_bg || baseBgUrl}')`}">
<!-- <headerHeight /> -->
<navBar :style="{marginTop: `${statusBarHeight}${uni.getSystemInfoSync().platform === 'ios' ? 'px': 'dp'}`}" :navTitle="'帮助与反馈'" :emitBack="true" @backEvent="back">
</navBar>
@@ -66,6 +66,7 @@
import http from '@/until/http.js';
import keFuImg from '@/static/image/help/Headphone.png';
import fkImg from '@/static/image/help/fankui.png';
import config from '@/until/config.js';
export default {
components: {
headerHeight,
@@ -74,6 +75,7 @@
data() {
return {
statusBarHeight:0,
baseBgUrl:config.PRIMARY_BGURL,
problemList: [{
title: '问题分类',
id: 0,
@@ -179,23 +181,22 @@
});
} else {
// 在线客服
uni.navigateTo({
url: `/pages/feedback/customerService?h=${this.statusBarHeight}`
});
// const platform = uni.getSystemInfoSync().platform;
// // console.log(platform, '打印设备参数')
// if (platform === 'ios') {
// console.log('调用iOS原生方法')
// // 通过 messageHandlers 调用 iOS 原生方法
// window.webkit.messageHandlers.nativeHandler.postMessage({
// 'action': 'customerService'
// });
// } else if (platform === 'android') {
// console.log('调用Android原生方法')
// // 调用 Android 原生方法
// window.Android.customerService();
// }
// uni.navigateTo({
// url: `/pages/feedback/customerService?h=${this.statusBarHeight}`
// });
const platform = uni.getSystemInfoSync().platform;
// console.log(platform, '打印设备参数')
if (platform === 'ios') {
console.log('调用iOS原生方法')
// 通过 messageHandlers 调用 iOS 原生方法
window.webkit.messageHandlers.nativeHandler.postMessage({
'action': 'customerService'
});
} else if (platform === 'android') {
console.log('调用Android原生方法')
// 调用 Android 原生方法
window.Android.customerService();
}
}
},
back() {

View File

@@ -96,13 +96,13 @@
<script>
import http from '@/until/http.js';
import logo from '@/static/image/logo.png';
import SwiperView from '@/component/swiper.vue';
// import SwiperView from '@/component/swiper.vue';
import headerHeight from '@/component/headerHeight.vue';
import LevelProgress from '@/component/LevelProgress.vue'
export default {
components: {
headerHeight,
SwiperView,
// SwiperView,
LevelProgress
},
data() {

View File

@@ -47,7 +47,7 @@
邀请码
</view>
<view class="color-6 font-24 mt-24">
一级充值的{{detailData.invited_draw || 0}}%为邀请收益
{{detailData.invited_draw || 0}}%为邀请收益
</view>
</view>
<view class="QRCodeImage">
@@ -70,7 +70,8 @@
<Table :tableData="dataList" v-else :tableLabel="columns" />
</view>
</view>
<view class="tiXian" @click="Withdrawal">
<!-- 提现 -->
<view v-if="isShow" class="tiXian" @click="Withdrawal">
<img src="@/static/image/income/tixian.png" alt="" />
</view>
</view>
@@ -153,6 +154,7 @@
statusBarHeight: 0,
bindValue: '',
dataList: [],
isShow:true,
columns: [{
title: '昵称',
key: 'nickname',
@@ -179,13 +181,17 @@
onLoad(options) {
const {
id,
h
h,
is_show
} = options
uni.setStorageSync('token', id)
if(is_show) {
const flag = Number(is_show)
this.isShow = flag === 1 ? true : false
}
if (uni.getStorageSync('token')) this.gettabs()
this.statusBarHeight = this.getStatusBarHeight()
this.statusBarHeight = h
console.log(Config.BASE_NAME)
},
methods: {
copyText(text) {

View File

@@ -94,7 +94,7 @@
<view class="color-6 ml-20">
{{decorateDetail.user_info.user_coin}}
</view>
<view class="chongzhi-text ml-20" @click="RechargeCoin">
<view class="chongzhi-text ml-20" v-if="isShow" @click="RechargeCoin">
去充值
</view>
</view>
@@ -127,15 +127,21 @@
indicatorLeft: 5,
decorateDetail: null,
currentMenuIndex: 0,
payData: null
payData: null,
isShow:true
}
},
onLoad(options) {
this.errorPage = true
const {
id
id,
is_show
} = options
uni.setStorageSync('token', id)
if(is_show) {
const flag = Number(is_show)
this.isShow = flag === 1 ? true : false
}
if (uni.getStorageSync('token')) this.gettabs()
},
methods: {
@@ -329,6 +335,7 @@
img {
width: 120rpx;
object-fit: contain;
}
}
@@ -358,6 +365,9 @@
height: 120rpx;
margin: 12rpx 0;
// background-color: #5B5B5B;
img {
object-fit: contain;
}
}
.swiper-view {

View File

@@ -122,7 +122,7 @@
<script>
import headerHeight from '@/component/headerHeight.vue';
import baseBgUrl from '@/static/image/general/fy_bg.jpg';
import config from '@/until/config.js';
import navBar from '@/component/nav.vue';
import http from '@/until/http.js';
import logout from '@/static/image/union/logout.png'
@@ -135,7 +135,7 @@
data() {
return {
detailData: null,
baseBgUrl,
baseBgUrl:config.PRIMARY_BGURL,
logo,
logout,
buttonStatus: null,
@@ -504,7 +504,7 @@
width: 120rpx;
height: 120rpx;
border-radius: 50%;
background-color: aquamarine;
// background-color: aquamarine;
img {
width: 100%;

View File

@@ -39,7 +39,7 @@
<script>
import headerHeight from '@/component/headerHeight.vue';
import baseBgUrl from '@/static/image/general/fy_bg.jpg';
import config from '@/until/config.js';
import http from '@/until/http.js';
import logo from '@/static/image/logo.png';
import navBar from '@/component/nav.vue';
@@ -51,7 +51,7 @@ export default {
data() {
return {
logo,
baseBgUrl,
baseBgUrl:config.PRIMARY_BGURL,
guildId: null,
msgType: "",
messageText: "",

View File

@@ -11,7 +11,7 @@
<script>
import headerHeight from '@/component/headerHeight.vue';
import baseBgUrl from '@/static/image/general/fy_bg.jpg';
import config from '@/until/config.js';
import http from '@/until/http.js';
import navBar from '@/component/nav.vue';
import tableView from '@/component/newTable.vue'
@@ -24,7 +24,7 @@ export default {
data() {
return {
guildId: null,
baseBgUrl,
aseBgUrl: config.PRIMARY_BGURL,
dataList: [],
pageConfig: {
currentPage: 1,

View File

@@ -83,7 +83,7 @@
import navBar from '@/component/nav.vue';
import http from '@/until/http.js';
import logo from '@/static/image/logo.png';
import baseBgUrl from '@/static/image/general/fy_bg.jpg';
import config from '@/until/config.js';
export default {
components: {
navBar
@@ -91,7 +91,7 @@
data() {
return {
searchValue: '',
baseBgUrl,
baseBgUrl:config.PRIMARY_BGURL,
logo,
loading: false,
noMore: false,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 141 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 141 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 141 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 KiB

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 161 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 584 KiB

After

Width:  |  Height:  |  Size: 585 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 584 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

View File

@@ -1 +0,0 @@
const o=(o,t)=>{const c=o.__vccOpts||o;for(const[s,n]of t)c[s]=n;return c};export{o as _};

View File

@@ -1 +0,0 @@
.view-page[data-v-fad43f9c]{min-height:100vh;font-family:Source Han Sans CN,Source Han Sans CN;background-repeat:no-repeat;background-size:100% 100%}.view-page img[data-v-fad43f9c]{width:100%}.view-page .dec-view[data-v-fad43f9c]{min-height:calc(99vh - 5rem);position:relative;border-radius:.5rem;margin:.75rem}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 169 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 161 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 160 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -1 +0,0 @@
.view-page[data-v-8c524529]{width:100vw;min-height:100vh;background-repeat:no-repeat;background-size:100% 100%}

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
.view-page[data-v-092e19af]{min-height:100vh;font-family:Source Han Sans CN,Source Han Sans CN;background-repeat:no-repeat;background-size:100% 100%}.view-page .content[data-v-092e19af]{padding:0 .75rem;width:calc(100vw - 1.5rem);height:calc(100vh - 67px)}.view-page .content .box-line[data-v-092e19af]{justify-content:space-between;margin-top:.75rem}.view-page .content .box-line .success-text[data-v-092e19af]{color:var(--primary-color)}.view-page .content .box-line .error-text[data-v-092e19af]{color:#fc8871}.view-page .content .box-line .agree-button[data-v-092e19af],.view-page .content .box-line .no-button[data-v-092e19af]{width:4.375rem;height:1.5rem;background:var(--primary-color);color:var(--font-button-color);border-radius:2.125rem;display:inline-flex;justify-content:center;align-items:center;font-size:.75rem;font-family:Source Han Sans CN,Source Han Sans CN}.view-page .content .box-line .no-button[data-v-092e19af]{background-color:#333;color:#fff;margin-right:.75rem}

View File

@@ -1 +0,0 @@
.view-page[data-v-790a9cd4]{width:100vw;min-height:100vh;background-color:#f8f8f8}.view-page .text-content-image[data-v-790a9cd4]{width:calc(100% - 8.125rem);position:relative;display:inline-flex;flex-wrap:wrap;align-content:space-between}.view-page .text-content[data-v-790a9cd4]{width:100%;position:relative;display:inline-flex;flex-wrap:wrap;align-content:space-between}.view-page .footer[data-v-790a9cd4]{height:3.0625rem;background:#fff;box-shadow:0 -.1875rem .25rem rgba(222,222,222,.25);position:fixed;left:0;right:0;bottom:0;width:100%;justify-content:space-around}.view-page .footer .footer-button .icon[data-v-790a9cd4]{width:1.5rem;height:1.5rem}.view-page .footer .active[data-v-790a9cd4]{color:var(--primary-color)}.view-page .status-bar[data-v-790a9cd4]{background-color:#fff}.view-page .nav[data-v-790a9cd4]{padding:1rem;width:calc(100% - 2rem);justify-content:start;background-color:#fff}.view-page .nav .icon-image[data-v-790a9cd4]{width:1.5rem;height:1.5rem}.view-page .nav .title[data-v-790a9cd4]{width:calc(100% - 1.5rem);text-align:center}.view-page .container[data-v-790a9cd4]{padding:.75rem 1rem}.view-page .container .feed-box[data-v-790a9cd4]{padding:.75rem;background-color:#fff;border-radius:.6875rem;margin-bottom:.75rem;width:calc(100% - 1.5rem)}.view-page .container .feed-box .box-top-line[data-v-790a9cd4]{width:100%;display:inline-flex;justify-content:flex-start;position:relative}.view-page .container .feed-box .new-box-image[data-v-790a9cd4]{width:7.5rem;height:5.75rem;border-radius:.375rem}.view-page .container .feed-box .new-box-image img[data-v-790a9cd4]{border-radius:.375rem}.view-page .container .title[data-v-790a9cd4]{margin-bottom:.75rem}.view-page .container .textarea-view[data-v-790a9cd4]{padding:.75rem;background-color:#fff;border-radius:.6875rem}.view-page .container .textarea-view .image-upload[data-v-790a9cd4]{width:6.25rem;height:6.25rem;border-radius:.625rem}.view-page .container .confirm-view[data-v-790a9cd4]{justify-content:center;margin:1.5rem 0;width:100%}.view-page .container .confirm-view .confirm-button[data-v-790a9cd4]{width:18.75rem;height:2.625rem;background:var(--primary-color);font-size:var(--font-button-size);color:var(--font-button-color);border-radius:3.3125rem;display:inline-flex;justify-content:center;align-items:center}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -1 +0,0 @@
const s="/h5/web/assets/fy_bg-Cx8qcedx.jpg";export{s as b};

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
.view-page[data-v-5219db17]{min-height:100vh;font-family:Source Han Sans CN,Source Han Sans CN;background-repeat:no-repeat;background-size:100% 100%}.view-page img[data-v-5219db17]{width:100%}.view-page .dec-view[data-v-5219db17]{min-height:calc(99vh - 5rem);position:relative;border-radius:.5rem;margin:.75rem}

View File

@@ -1 +0,0 @@
.status-bar[data-v-8e5378ec]{width:100%}

View File

@@ -1 +0,0 @@
import{b as t,s as a,o as s,f as e,i as r,j as i}from"./index-Cx-ljvzK.js";import{_ as h}from"./_plugin-vue_export-helper.BCo6x5W8.js";const o=h({name:"headerHeight",props:{bgColor:{type:String,default:()=>"transparent"}},data:()=>({statusBarHeight:0}),created(){this.statusBarHeight=this.getStatusBarHeight()},activated(){this.statusBarHeight=this.getStatusBarHeight()},methods:{getStatusBarHeight(){const s=t();return a("BarHeight",s.statusBarHeight),s.statusBarHeight||0}}},[["render",function(t,a,h,o,g,u){const n=i;return s(),e(n,{class:"status-bar",style:r({height:`${g.statusBarHeight}px`,backgroundColor:h.bgColor})},null,8,["style"])}],["__scopeId","data-v-8e5378ec"]]);export{o as h};

View File

@@ -1 +0,0 @@
@media screen and (max-width: 500px){.hide-on-phone[data-v-fe4b6be6]{display:none}}.uni-stat__select[data-v-fe4b6be6]{display:flex;align-items:center;cursor:pointer;width:100%;flex:1;box-sizing:border-box}.uni-stat-box[data-v-fe4b6be6],.uni-stat__actived[data-v-fe4b6be6]{width:100%;flex:1}.uni-label-text[data-v-fe4b6be6]{font-size:14px;font-weight:700;color:#6a6a6a;margin:auto 5px auto 0}.uni-select[data-v-fe4b6be6]{font-size:14px;border:1px solid #e5e5e5;box-sizing:border-box;border-radius:4px;padding:0 5px 0 10px;position:relative;display:flex;-webkit-user-select:none;user-select:none;flex-direction:row;align-items:center;border-bottom:solid 1px #e5e5e5;width:100%;flex:1;height:35px}.uni-select--disabled[data-v-fe4b6be6]{background-color:#f5f7fa;cursor:not-allowed}.uni-select__label[data-v-fe4b6be6]{font-size:16px;height:35px;padding-right:10px;color:#909399}.uni-select__input-box[data-v-fe4b6be6]{height:35px;position:relative;display:flex;flex:1;flex-direction:row;align-items:center}.uni-select__input[data-v-fe4b6be6]{flex:1;font-size:14px;height:22px;line-height:22px}.uni-select__input-plac[data-v-fe4b6be6]{font-size:14px;color:#909399}.uni-select__selector[data-v-fe4b6be6]{box-sizing:border-box;position:absolute;left:0;width:100%;background-color:#fff;border:1px solid #EBEEF5;border-radius:6px;box-shadow:0 2px 12px rgba(0,0,0,.1);z-index:3;padding:4px 0}.uni-select__selector-scroll[data-v-fe4b6be6]{max-height:200px;box-sizing:border-box}@media (min-width: 768px){.uni-select__selector-scroll[data-v-fe4b6be6]{max-height:600px}}.uni-select__selector-empty[data-v-fe4b6be6],.uni-select__selector-item[data-v-fe4b6be6]{display:flex;cursor:pointer;line-height:35px;font-size:14px;text-align:center;padding:0 10px}.uni-select__selector-item[data-v-fe4b6be6]:hover{background-color:#f9f9f9}.uni-select__selector-empty[data-v-fe4b6be6]:last-child,.uni-select__selector-item[data-v-fe4b6be6]:last-child{border-bottom:none}.uni-select__selector__disabled[data-v-fe4b6be6]{opacity:.4;cursor:default}.uni-popper__arrow_bottom[data-v-fe4b6be6],.uni-popper__arrow_bottom[data-v-fe4b6be6]:after,.uni-popper__arrow_top[data-v-fe4b6be6],.uni-popper__arrow_top[data-v-fe4b6be6]:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;border-width:6px}.uni-popper__arrow_bottom[data-v-fe4b6be6]{filter:drop-shadow(0 2px 12px rgba(0,0,0,.03));top:-6px;left:10%;margin-right:3px;border-top-width:0;border-bottom-color:#ebeef5}.uni-popper__arrow_bottom[data-v-fe4b6be6]:after{content:" ";top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.uni-popper__arrow_top[data-v-fe4b6be6]{filter:drop-shadow(0 2px 12px rgba(0,0,0,.03));bottom:-6px;left:10%;margin-right:3px;border-bottom-width:0;border-top-color:#ebeef5}.uni-popper__arrow_top[data-v-fe4b6be6]:after{content:" ";bottom:1px;margin-left:-6px;border-bottom-width:0;border-top-color:#fff}.uni-select__input-text[data-v-fe4b6be6]{width:100%;color:#3a3a3a;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden}.uni-select__input-placeholder[data-v-fe4b6be6]{color:#6a6a6a;font-size:12px}.uni-select--mask[data-v-fe4b6be6]{position:fixed;top:0;bottom:0;right:0;left:0;z-index:2}[data-v-e700e384] .uni-select{border:0!important;padding:0}.view-page[data-v-e700e384]{width:100vw;height:100vh;background-repeat:no-repeat;background-size:100% 100%}.view-page .top-tip[data-v-e700e384]{font-family:Source Han Sans CN,Source Han Sans CN;margin:1.125rem 0;padding:1rem;width:calc(100% - 2rem)}.view-page .top-tip .tip[data-v-e700e384]{font-weight:500;font-size:1.125rem;color:#333}.view-page .top-tip .kefu-icon[data-v-e700e384]{width:6.8125rem;height:6.8125rem}.view-page .problem-view[data-v-e700e384]{padding:0 .75rem}.view-page .problem-view .problem-box[data-v-e700e384]{font-family:Source Han Sans CN,Source Han Sans CN}.view-page .problem-view .problem-box .box-title[data-v-e700e384]{padding:.75rem 0}.view-page .problem-view .problem-box .box-content .box-line[data-v-e700e384],.view-page .problem-view .problem-box .box-content .box-lines[data-v-e700e384]{width:100%;padding:.5625rem .75rem;background-color:#fff;border-radius:.4375rem;margin-bottom:.75rem;justify-content:space-between}.view-page .problem-view .problem-box .box-content .box-line .title[data-v-e700e384],.view-page .problem-view .problem-box .box-content .box-lines .title[data-v-e700e384]{color:#3a3a3a;font-size:.75rem}.view-page .problem-view .problem-box .box-content .box-lines[data-v-e700e384]{width:calc(100% - 1.5rem)}.view-page .footer[data-v-e700e384]{height:3.0625rem;background:#fff;box-shadow:0 -.1875rem .25rem rgba(222,222,222,.25);position:fixed;left:0;right:0;bottom:0;width:100%;justify-content:space-around}.view-page .footer .footer-button .icon[data-v-e700e384]{width:1.5rem;height:1.5rem}

View File

@@ -1 +0,0 @@
.container[data-v-ceedcd16]{box-sizing:border-box}.table-scroll[data-v-ceedcd16]{width:100%;background-color:#fff;border-radius:.3125rem}.table-header[data-v-ceedcd16],.table-row[data-v-ceedcd16]{display:flex;flex-direction:row;align-items:center;border-bottom:.03125rem solid #f5f5f5}.header-item[data-v-ceedcd16],.row-item[data-v-ceedcd16]{flex:1;padding:.625rem .3125rem;text-align:center;font-size:.8125rem;color:#333}.header-item[data-v-ceedcd16]{font-weight:700}.time-col[data-v-ceedcd16]{flex:1.2}.sort-icon[data-v-ceedcd16]{display:inline-block;margin-left:.3125rem}.status-0[data-v-ceedcd16]{color:#999}.status-1[data-v-ceedcd16]{color:var(--subss-color)}.status-2[data-v-ceedcd16]{color:#fa3534}.load-more[data-v-ceedcd16]{padding:.625rem;text-align:center;font-size:.75rem;color:#999}.view-page[data-v-df7337cb]{min-height:100vh;font-family:Source Han Sans CN,Source Han Sans CN;background-repeat:no-repeat;background-size:100% 100%}.view-page .content[data-v-df7337cb]{padding:0 .75rem;width:calc(100vw - 1.5rem);height:calc(100vh - 67px);background:#fff;border-radius:1rem 1rem 0 0}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
.view-page[data-v-3a91270b]{min-height:100vh;font-family:Source Han Sans CN,Source Han Sans CN;background-repeat:no-repeat;background-size:100% 100%}.view-page .minUnicon[data-v-3a91270b]{color:var(--primary-color)}.view-page .content[data-v-3a91270b]{padding:0 1rem}.view-page .avatar[data-v-3a91270b]{width:1.375rem;height:1.375rem;border-radius:50%;position:absolute;border:2px solid white;background-size:cover;box-shadow:0 5px 15px rgba(0,0,0,.2);transition:all .4s ease}.view-page .avatar img[data-v-3a91270b]{width:100%;height:100%;border-radius:50%}.view-page .avatar[data-v-3a91270b]:nth-child(1){left:calc(50% - 1.875rem);z-index:3}.view-page .avatar[data-v-3a91270b]:nth-child(2){left:calc(50% - 1.09375rem);z-index:2}.view-page .avatar[data-v-3a91270b]:nth-child(3){left:calc(50% - .3125rem);z-index:1}.view-page .avatar[data-v-3a91270b]:hover{transform:translateY(-10px);box-shadow:0 10px 25px rgba(0,0,0,.25);z-index:10}.view-page .flex-input[data-v-3a91270b]{width:100%;display:inline-flex;align-items:center;flex-wrap:nowrap;flex-direction:row}.view-page .flex-input .search-button[data-v-3a91270b]{padding:0 0 0 .625rem}.view-page .swipe-view[data-v-3a91270b]{width:100%;height:6.25rem;border-radius:.4375rem;margin-top:1.125rem}.view-page .title[data-v-3a91270b]{padding:.75rem 0;font-family:Source Han Sans CN,Source Han Sans CN;font-weight:500;font-size:1rem;color:#333}.view-page .hotspot-view .hotspot-box[data-v-3a91270b]{width:calc(100% - 1.5rem);padding:.75rem;background:#fff;border-radius:.625rem;margin-bottom:.75rem;display:inline-flex;align-items:center;flex-wrap:nowrap;justify-content:space-between;flex-direction:row}.view-page .hotspot-view .hotspot-box .head-portrait[data-v-3a91270b]{width:3.75rem;height:3.75rem;border-radius:50%}.view-page .hotspot-view .hotspot-box .head-portrait img[data-v-3a91270b]{width:100%;height:100%;border-radius:50%}.view-page .hotspot-view .hotspot-box .info-box[data-v-3a91270b]{padding:0 .75rem}.view-page .hotspot-view .hotspot-box .info-box .icon-box[data-v-3a91270b]{width:.625rem;height:.625rem;margin-left:.15625rem}.view-page .hotspot-view .hotspot-box .info-box .chairman[data-v-3a91270b]{min-width:3.3125rem;height:1.125rem;padding:0 .375rem;color:#fff;font-size:.75rem;text-align:right;background:var(--subss-color);border-radius:3.625rem;border:.0625rem solid var(--subss-color);position:relative;left:.3125rem;margin:1rem 0;display:inline-flex}.view-page .hotspot-view .hotspot-box .info-box .chairman .truncate-three[data-v-3a91270b]{text-align:left}.view-page .hotspot-view .hotspot-box .info-box .chairman .chairman-portrait[data-v-3a91270b]{width:1.5625rem;height:1.5625rem;border-radius:50%;border:.0625rem solid #FFFFFF;position:absolute;top:-.3125rem;left:-.625rem}.view-page .hotspot-view .hotspot-box .info-box .chairman .chairman-portrait img[data-v-3a91270b]{width:100%;height:100%;border-radius:50%}.view-page .hotspot-view .hotspot-box .info-box .chairman .chairman-name[data-v-3a91270b]{margin-left:.9rem}.view-page .hotspot-view .hotspot-box .info-box .id-title[data-v-3a91270b]{font-size:.75rem;color:#666;margin-left:.75rem}.view-page .hotspot-view .hotspot-box .info-box .subhead-title[data-v-3a91270b]{display:block;font-weight:400;font-size:.75rem;color:#666;margin:.25rem 0}.view-page .hotspot-view .hotspot-box .info-box .like-box[data-v-3a91270b]{display:inline-flex;align-items:center;flex-wrap:nowrap;flex-direction:row;padding:.1875rem .75rem;background:#2afec0;border-radius:1.09375rem;font-family:Source Han Sans CN,Source Han Sans CN;font-weight:400;font-size:.875rem;color:#333;margin:.25rem 0}.view-page .hotspot-view .hotspot-box .right-button[data-v-3a91270b]{text-align:center}.view-page .hotspot-view .hotspot-box .right-button .apply-button[data-v-3a91270b]{display:inline-block;background:var(--primary-color);font-size:var(--font-button-size);color:var(--font-button-color);border-radius:2.125rem;text-align:center;padding:.125rem .9375rem}.view-page .hotspot-view .hotspot-box .right-button .online-view[data-v-3a91270b]{margin-top:.75rem;padding:.375rem .25rem;text-align:right;width:5rem;height:1.375rem;line-height:1.375rem;border-radius:2.875rem;position:relative}.view-page .hotspot-view .hotspot-box .right-button .online-view .avatars-container[data-v-3a91270b]{position:absolute;top:.3125rem;left:40%}.view-page .hotspot-view .hotspot-box .right-button .online-view .online-people[data-v-3a91270b]{color:rgba(0,0,0,.5);font-size:.75rem;text-align:left;display:inline-block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;word-break:keep-all}

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 330 KiB

View File

@@ -1 +0,0 @@
const s="/h5/web/assets/logo-LS8UnBYJ.png";export{s as l};

View File

@@ -1 +0,0 @@
.view-page[data-v-173e0753]{display:flex;flex-direction:column;background-repeat:no-repeat;background-size:100% 100%;min-height:100vh;font-family:Source Han Sans CN,Source Han Sans CN}.view-page .image-view[data-v-173e0753]{width:3.125rem;height:3.125rem;margin:0 .75rem}.view-page .image-view img[data-v-173e0753]{border-radius:50%}.view-page .icon-button[data-v-173e0753]{width:4.375rem;height:1.5rem}.view-page .content[data-v-173e0753]{padding:0 1rem}

View File

@@ -1 +0,0 @@
.nav[data-v-d84aaf9a]{padding:1rem;width:calc(100% - 2rem);justify-content:start}.nav .icon-image[data-v-d84aaf9a]{width:1.5rem;height:1.5rem}.nav .title[data-v-d84aaf9a]{width:calc(100% - 3rem);text-align:center}

View File

@@ -1 +0,0 @@
import{E as a,o as e,f as t,w as s,k as A,J as o,p as l,l as i,u as n,i as r,j as d}from"./index-Cx-ljvzK.js";import{_ as c}from"./_plugin-vue_export-helper.BCo6x5W8.js";const f=c({name:"navBar",props:{bgColor:{type:String,default:()=>"transparent"},navTitle:{type:String,default:()=>"标题"},emitBack:{type:Boolean,default:()=>!1},isLeftSlot:{type:Boolean,default:()=>!1}},methods:{back(){this.emitBack?this.$emit("backEvent"):a()}}},[["render",function(a,c,f,g,B,u){const p=d;return e(),t(p,{class:"nav flex-line",style:r(`background-color:${f.bgColor}`)},{default:s((()=>[A(p,{class:"icon-image"},{default:s((()=>[f.isLeftSlot?o(a.$slots,"leftView",{key:0},void 0,!0):(e(),l("img",{key:1,src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAStJREFUaEPt2GEKwjAMBeBmeKDRHUdhHkFPokdQ0OOsJxIqgw2GqKxrXtJC9rsr70s6yEqu8ocqz+8MoN1B64B1ILMCdoRSCui93xPRbhiGe8p7/9aKdcB7fyGi0xgmxngIITw5ECKAZfgp9JGrC3DAZ/gY4zWEcOao/rgHFIAODwVIhIcBpMJDAJLh2QHS4VkBGuHZAFrhWQCa4bMB2uGzACWE3wwoJfwmQNd1vXPuNs8y3LNN6oyUPAtNM/2jWsAYvOojNFe+FETyEVqe0RIQWYASjlM2QBvBAtBEsAG0EKwADQQ7QBoBAUgiYAApBBQggYADfiDquhv9gqjnbnQ5O7Vt2zdN8+K6md70Q5P6w4FeL/INIBEGQFZ3zd7WgTVVQq6xDiCru2bvN0OV8zHm2XzEAAAAAElFTkSuQmCC",alt:"",onClick:c[0]||(c[0]=(...a)=>u.back&&u.back(...a))}))])),_:3}),A(p,{class:"color-3 title font-w500 font-36"},{default:s((()=>[i(n(f.navTitle),1)])),_:1}),A(p,{class:"flex-line"},{default:s((()=>[o(a.$slots,"rightView",{},void 0,!0)])),_:3})])),_:3},8,["style"])}],["__scopeId","data-v-d84aaf9a"]]);export{f as n};

View File

@@ -1 +0,0 @@
import{s as a,g as s,r as t,f as e,w as r,i as o,j as n,o as i,k as l,b as p,t as u}from"./index-Cx-ljvzK.js";import{n as m}from"./nav.-FlBmVf_.js";import{_ as c}from"./_plugin-vue_export-helper.BCo6x5W8.js";const g=c({components:{navBar:m},data:()=>({statusBarHeight:0}),onLoad(t){const{h:e}=t;this.statusBarHeight=e,a("BarHeight",e),s("Theme_Data")&&(this.ThemeData=JSON.parse(s("Theme_Data")))}},[["render",function(a,s,m,c,g,d){var f;const h=t("navBar"),_=n;return i(),e(_,{class:"view-page",style:o({backgroundImage:`url('${(null==(f=a.ThemeData)?void 0:f.app_bg)||a.$config.PRIMARY_BGURL}')`})},{default:r((()=>[l(h,{style:o({marginTop:`${g.statusBarHeight}${"ios"===p().platform?"px":"dp"}`}),navTitle:"在线客服",emitBack:!1},null,8,["style"]),l(_,{class:""},{default:r((()=>[u("img",{src:a.$config.kefu_url,alt:""},null,8,["src"])])),_:1})])),_:1},8,["style"])}],["__scopeId","data-v-8c524529"]]);export{g as default};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
import{h as a,g as e,E as t,r as s,e as l,f as o,w as n,j as i,o as r,k as c,l as d,u as f,m as p}from"./index-Cx-ljvzK.js";import{_ as u}from"./uni-icons.rIRNGGE5.js";import{r as h}from"./uni-app.es.C2wev25l.js";import{h as m}from"./headerHeight.BKcShUBq.js";import{n as _}from"./nav.-FlBmVf_.js";import{_ as g}from"./_plugin-vue_export-helper.BCo6x5W8.js";const v=g({components:{headerHeight:m,navBar:_},data:()=>({errorPage:!1,detailData:null,statusBarHeight:0}),onLoad(a){const{id:e}=a;e&&this.getDetail(e)},methods:{getDetail(t){a.get("/api/Help/help_detail",{token:e("token")||"",id:t}).then((a=>{const{data:e,code:t}=a;console.log(t,e),this.detailData=t?e:null,this.errorPage=!1})).catch((a=>{this.errorPage=!0}))},back(){t()}}},[["render",function(a,e,t,m,_,g){const v=s("headerHeight"),k=s("navBar"),b=i,j=h(l("uni-icons"),u);return r(),o(b,{class:"view-page"},{default:n((()=>[c(v),c(k,{navTitle:"问题详情",bgColor:"#fff",emitBack:!0,onBackEvent:g.back},null,8,["onBackEvent"]),_.detailData?(r(),o(b,{key:0,class:"container"},{default:n((()=>[c(b,{class:"title"},{default:n((()=>[d(f(_.detailData.title),1)])),_:1}),c(b,{class:"title mt-24",innerHTML:_.detailData.content},null,8,["innerHTML"])])),_:1})):p("",!0),c(b,{class:"flex-line footer mt-24 w-fill"},{default:n((()=>[c(b,{class:"help-box"},{default:n((()=>[c(b,{class:"help-icon"},{default:n((()=>[c(j,{type:"hand-up",size:"30"})])),_:1}),c(b,{class:"color-0 mt-24 font-24"},{default:n((()=>[d(" 有帮助 ")])),_:1})])),_:1}),c(b,{class:"help-box"},{default:n((()=>[c(b,{class:"help-icon"},{default:n((()=>[c(j,{type:"hand-down",size:"30"})])),_:1}),c(b,{class:"color-0 mt-24 font-24"},{default:n((()=>[d(" 没帮助 ")])),_:1})])),_:1})])),_:1})])),_:1})}],["__scopeId","data-v-4e1bb458"]]);export{v as default};

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
import{s as a,g as e,b as t,h as s,n as i,r as o,e as n,f as r,w as l,i as d,j as g,o as c,k as h,p,q as u,F as f,l as m,u as b,t as v}from"./index-Cx-ljvzK.js";import{_}from"./uni-load-more.Biu55tCr.js";import{r as k}from"./uni-app.es.C2wev25l.js";import{n as L}from"./nav.-FlBmVf_.js";import{N as T}from"./tab.D5Tn0Q9n.js";import{_ as y}from"./_plugin-vue_export-helper.BCo6x5W8.js";const C=y({components:{navBar:L,NavigationTabs:T},data:()=>({errorPage:!0,currentIndex:0,statusBarHeight:0,pageConfig:{pageSize:10,currentPage:1,total:0},loading:!1,noMore:!1,tabs:[],dataList:[],ThemeData:null}),onReachBottom(){this.loading||this.noMore||this.getUnderageModeList(this.tabs[0].type)},onLoad(t){this.errorPage=!0,this.dataList=[];const{id:s,h:i}=t;a("token",s),this.statusBarHeight=i,a("BarHeight",i),e("token")&&this.getUnderageTypeList(),e("Theme_Data")&&(this.ThemeData=JSON.parse(e("Theme_Data")))},methods:{back(){this.closeWeb()},closeWeb(){const a=t().platform;"ios"===a?window.webkit.messageHandlers.nativeHandler.postMessage({action:"closeWeb"}):"android"===a&&window.Android.closeWeb()},async getUnderageTypeList(){s.get("/api/Usermode/getUnderageTypeList",{token:e("token")||""}).then((a=>{const{data:e,code:t}=a;t&&(this.tabs=e.map((a=>({type:a.id,value:a.type_name})))),this.errorPage=!1,this.$nextTick((()=>{this.getUnderageModeList(this.tabs[0].type)}))})).catch((a=>{this.tabs=[],this.errorPage=!0}))},async getUnderageModeList(a){s.get("/api/Usermode/getUnderageModeList",{token:e("token")||"",type:a,page:this.pageConfig.currentPage,page_limit:this.pageConfig.pageSize}).then((a=>{const{code:e,data:t}=a;if(e){this.pageConfig.total=t.total,this.loading=!1;const a=t.data||[];if(0===a.length)return void(this.noMore=!0);if(this.dataList=[...this.dataList,...a],this.pageConfig.currentPage++,this.dataList.length===this.pageConfig.total)return void(this.noMore=!0)}}))},handleTabChange(a){this.dataList=[],this.noMore=!1,this.loading=!1,this.pageConfig.currentPage=1,this.pageConfig.pageSize=10,this.getUnderageModeList(a.tab.type)},openDetail(a){i({url:`/pages/feedback/teenageDetail?dataId=${a.id}`})}}},[["render",function(a,e,s,i,L,T){var y;const C=o("navBar"),M=o("NavigationTabs"),w=g,B=k(n("uni-load-more"),_);return c(),r(w,{class:"view-page",style:d({backgroundImage:`url('${(null==(y=L.ThemeData)?void 0:y.app_bg)||a.$config.PRIMARY_BGURL}')`})},{default:l((()=>[h(C,{style:d({marginTop:`${L.statusBarHeight}${"ios"===t().platform?"px":"dp"}`}),navTitle:"青少年模式",emitBack:!0,onBackEvent:T.back},null,8,["style","onBackEvent"]),h(w,{class:"content-view"},{default:l((()=>[h(w,{class:"flex-line"},{default:l((()=>[h(M,{"tabs-data":L.tabs,"default-active":L.currentIndex,onTabChange:T.handleTabChange},null,8,["tabs-data","default-active","onTabChange"])])),_:1}),h(w,{class:""},{default:l((()=>[(c(!0),p(f,null,u(L.dataList,((a,e)=>(c(),r(w,{class:"flex-line flex-spaceB w-fill new-box",key:e,onClick:e=>T.openDetail(a)},{default:l((()=>[h(w,{class:""},{default:l((()=>[h(w,{class:"color-3 font-32 font-w500"},{default:l((()=>[m(b(a.title),1)])),_:2},1024),h(w,{class:"color-6 mt-24 font-28 font-w400 multi-line"},{default:l((()=>[m(b(a.introduced),1)])),_:2},1024)])),_:2},1024),h(w,{class:"new-box-image"},{default:l((()=>[v("img",{src:a.img,alt:""},null,8,["src"])])),_:2},1024)])),_:2},1032,["onClick"])))),128)),h(B,{class:"mt-24",status:L.loading?"loading":L.noMore?"noMore":"more"},null,8,["status"])])),_:1})])),_:1})])),_:1},8,["style"])}],["__scopeId","data-v-c0e4addd"]]);export{C as default};

View File

@@ -1 +0,0 @@
import{g as a,A as e,h as t,B as s,r as l,f as i,w as n,i as d,j as r,o,k as h,p as m,t as c,l as g,u,F as f,m as p}from"./index-Cx-ljvzK.js";import{h as D}from"./headerHeight.BKcShUBq.js";import{n as _}from"./nav.-FlBmVf_.js";import{_ as v}from"./_plugin-vue_export-helper.BCo6x5W8.js";const T=v({components:{headerHeight:D,navBar:_},data:()=>({detailData:null,ThemeData:null,BarHeight:0}),onLoad(e){const{dataId:t}=e;t&&this.getDetail(t),a("Theme_Data")&&(this.ThemeData=JSON.parse(a("Theme_Data"))),this.BarHeight=a("BarHeight")},methods:{async getDetail(l){e({mask:!0,title:"加载中"}),t.get("/api/Usermode/getUnderageModeContent",{id:l,token:a("token")||""}).then((a=>{s();const{data:e,code:t}=a;this.detailData=t?e:null,console.log(this.detailData)}))}}},[["render",function(a,e,t,s,D,_){var v;const T=l("headerHeight"),k=l("navBar"),y=r;return o(),i(y,{class:"view-page",style:d({backgroundImage:`url('${(null==(v=D.ThemeData)?void 0:v.app_bg)||a.$config.PRIMARY_BGURL}')`})},{default:n((()=>[h(T),h(k,{navTitle:"内容详情"}),D.detailData?(o(),m(f,{key:0},[2===D.detailData.from?(o(),i(y,{key:0,class:""},{default:n((()=>[c("iframe",{id:"myIframe",src:D.detailData.url,style:{width:"100%",border:"none",height:"100dvh"}},null,8,["src"])])),_:1})):(o(),i(y,{key:1,class:"detailContent"},{default:n((()=>[h(y,{class:""},{default:n((()=>[h(y,{class:"detailTitle"},{default:n((()=>[g(u(D.detailData.title),1)])),_:1}),h(y,{class:"detailData",innerHTML:D.detailData.content||""},null,8,["innerHTML"])])),_:1})])),_:1}))],64)):p("",!0)])),_:1},8,["style"])}],["__scopeId","data-v-a1c4d327"]]);export{T as default};

View File

@@ -1 +0,0 @@
import{Q as a,g as e,b as s,r as t,f as o,w as n,i as r,j as l,o as i,k as c,R as d}from"./index-Cx-ljvzK.js";import{n as p}from"./nav.-FlBmVf_.js";import{_ as h}from"./_plugin-vue_export-helper.BCo6x5W8.js";const m=h({components:{navBar:p},data:()=>({statusBarHeight:0,ThemeData:null,httpUrl:null}),onLoad(s){this.httpUrl=a.BASE_URL;const{h:t}=s;this.statusBarHeight=t,e("Theme_Data")&&(this.ThemeData=JSON.parse(e("Theme_Data")))},methods:{back(){this.closeWeb()},closeWeb(){const a=s().platform;"ios"===a?window.webkit.messageHandlers.nativeHandler.postMessage({action:"closeWeb"}):"android"===a&&window.Android.closeWeb()}}},[["render",function(a,e,p,h,m,u){var g;const v=t("navBar"),f=d,_=l;return i(),o(_,{class:"view-page",style:r({backgroundImage:`url('${(null==(g=m.ThemeData)?void 0:g.app_bg)||a.$config.PRIMARY_BGURL}')`})},{default:n((()=>[c(v,{style:r({marginTop:`${m.statusBarHeight}${"ios"===s().platform?"px":"dp"}`}),navTitle:"关于我们",emitBack:!0,onBackEvent:u.back},null,8,["style","onBackEvent"]),c(_,{class:"dec-view"},{default:n((()=>[c(f,{src:`${m.httpUrl}/api/Page/page_show?id=20`},null,8,["src"])])),_:1})])),_:1},8,["style"])}],["__scopeId","data-v-fad43f9c"]]);export{m as default};

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
import{Q as a,g as t,r as e,f as s,w as l,i as n,j as r,o,k as i,m as p,R as u}from"./index-Cx-ljvzK.js";import{n as d}from"./nav.-FlBmVf_.js";import{_ as g}from"./_plugin-vue_export-helper.BCo6x5W8.js";const h=g({components:{navBar:d},data:()=>({httpUrl:null,statusBarHeight:0,flagIndex:null,ThemeData:null}),onLoad(e){const{h:s,flag:l}=e;this.flagIndex=+l,this.httpUrl=a.BASE_URL,this.statusBarHeight=s,t("Theme_Data")&&(this.ThemeData=JSON.parse(t("Theme_Data")))}},[["render",function(a,t,d,g,h,m){var f;const c=e("navBar"),_=u,v=r;return o(),s(v,{class:"view-page",style:n({backgroundImage:`url('${(null==(f=h.ThemeData)?void 0:f.app_bg)||a.$config.PRIMARY_BGURL}')`})},{default:l((()=>[i(c,{navTitle:"规则说明",style:n({"margin-top":`${h.statusBarHeight||0}px`})},null,8,["style"]),null!==h.flagIndex?(o(),s(v,{key:0,class:"dec-view"},{default:l((()=>[i(_,{src:`${h.httpUrl}/api/Page/page_show?id=${1===h.flagIndex?10:11}`},null,8,["src"])])),_:1})):p("",!0)])),_:1},8,["style"])}],["__scopeId","data-v-5219db17"]]);export{h as default};

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
import{Q as a,f as e,w as s,j as r,o as t,k as l,t as o,R as n}from"./index-Cx-ljvzK.js";import{_ as d}from"./_plugin-vue_export-helper.BCo6x5W8.js";const i=d({data:()=>({httpUrl:null,webviewStyles:{progress:{color:"transparent"},android:{hardwareAccelerated:!0,backgroundColor:"transparent"},ios:{allowsInlineMediaPlayback:!0,backgroundColor:"transparent"}}}),onLoad(){this.httpUrl=a.BASE_URL},onReady(){}},[["render",function(a,d,i,p,c,u){const w=r,g=n;return t(),e(w,{class:"view-page"},{default:s((()=>[l(w,{class:"image"},{default:s((()=>[o("img",{src:"/h5/web/assets/rule-D8yU_r7I.png",alt:""})])),_:1}),l(w,{class:"dec-view",style:{"background-color":"transparent !important"}},{default:s((()=>[l(g,{style:{backgroundColor:"transparent"},"webview-styles":c.webviewStyles,src:`${c.httpUrl}/api/Page/page_show?id=17`},null,8,["webview-styles","src"])])),_:1})])),_:1})}],["__scopeId","data-v-7097dda3"]]);export{i as default};

View File

@@ -1 +0,0 @@
import{s as t,h as a,g as s,r as e,f as n,w as o,i as r,j as i,o as l,k as p,b as d,l as c,u as g}from"./index-Cx-ljvzK.js";import{n as u}from"./nav.-FlBmVf_.js";import{b as m}from"./fy_bg.cY2CWREb.js";import{_ as f}from"./_plugin-vue_export-helper.BCo6x5W8.js";const h=f({components:{navBar:u},data:()=>({content:"测试一下",statusBarHeight:0,ThemeData:{},baseBgUrl:m}),onLoad(e){const{id:n}=e;t("token",n),a.get("/api/Guild/guild_list",{page:1,limit:10,search_id:"",token:s("token")||""}).then((t=>{this.content=`token:${n}+++++++++++++${JSON.stringify(t)}`})).catch((t=>{this.content=`token:${n}+++++++++++++${JSON.stringify(response)}`}))},methods:{}},[["render",function(t,a,s,u,m,f){var h;const _=e("navBar"),v=i;return l(),n(v,{class:"view-page",style:r({backgroundImage:`url('${(null==(h=m.ThemeData)?void 0:h.app_bg)||m.baseBgUrl}')`})},{default:o((()=>[p(_,{style:r({marginTop:`${m.statusBarHeight}${"ios"===d().platform?"px":"dp"}`}),navTitle:"测试页面"},null,8,["style"]),p(v,{class:"content"},{default:o((()=>[c(g(m.content),1)])),_:1})])),_:1},8,["style"])}],["__scopeId","data-v-f7bd8541"]]);export{h as default};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
import{g as s,h as e,r as a,e as t,f as l,w as i,i as o,j as r,o as n,k as u,p,q as d,F as m,t as g,l as c,u as f,G as h}from"./index-Cx-ljvzK.js";import{_}from"./uni-popup-message.CLjJCrqe.js";import{r as y}from"./uni-app.es.C2wev25l.js";import{_ as x}from"./uni-popup.kWajNFjY.js";import{h as T}from"./headerHeight.BKcShUBq.js";import{b as k}from"./fy_bg.cY2CWREb.js";import{l as v}from"./logo.DDDG-929.js";import{n as b}from"./nav.-FlBmVf_.js";import{_ as j}from"./_plugin-vue_export-helper.BCo6x5W8.js";const D=j({components:{headerHeight:T,navBar:b},data:()=>({logo:v,baseBgUrl:k,guildId:null,msgType:"",messageText:"",dataList:[],searchParams:{guild_id:0,token:s("token")||""},ThemeData:null}),onLoad(e){const{id:a}=e;this.searchParams.guild_id=a,a&&this.getList(),s("Theme_Data")&&(this.ThemeData=JSON.parse(s("Theme_Data")))},methods:{async RefuseOrAgreeData(a,t){const{code:l,data:i,msg:o}=await e.post("/api/Guild/quit_apply_audit",{token:s("token")||"",apply_id:a.id,type:t});1===l?(this.msgType="success",this.messageText="操作成功",this.$refs.message.open(),this.getList()):(this.messageText=o,this.msgType="error",this.$refs.message.open())},async getList(){const{code:s,data:a}=await e.get("/api/Guild/quit_apply_list",this.searchParams);s&&(this.dataList=a.list)}}},[["render",function(s,e,T,k,v,b){var j;const D=a("headerHeight"),w=a("navBar"),L=r,q=y(t("uni-popup-message"),_),B=y(t("uni-popup"),x);return n(),l(L,{class:"view-page",style:o({backgroundImage:`url('${(null==(j=v.ThemeData)?void 0:j.app_bg)||v.baseBgUrl}')`})},{default:i((()=>[u(D),u(w,{navTitle:"退出审核"}),u(L,{class:"content"},{default:i((()=>[(n(!0),p(m,null,d(v.dataList,((s,e)=>(n(),l(L,{class:"box-line flex-line w-fill"},{default:i((()=>[u(L,{class:"flex-line"},{default:i((()=>[g("img",{style:{width:"100rpx",height:"100rpx","border-radius":"50%"},src:s.avatar||v.logo,alt:""},null,8,["src"]),u(L,{class:"ml-20"},{default:i((()=>[u(L,{class:"color-3 font-32 font-w500"},{default:i((()=>[c(f(s.nickname),1)])),_:2},1024),u(L,{class:"color-6 font-24"},{default:i((()=>[c(" ID: "+f(s.user_code),1)])),_:2},1024)])),_:2},1024)])),_:2},1024),u(L,null,{default:i((()=>[s.status?(n(),l(L,{key:0,class:h(1===s.status?"success-text":"error-text")},{default:i((()=>[c(f(1===s.status?"已同意":"已拒绝"),1)])),_:2},1032,["class"])):(n(),l(L,{key:1,class:"flex-line"},{default:i((()=>[u(L,{class:"no-button",onClick:e=>b.RefuseOrAgreeData(s,2)},{default:i((()=>[c(" 拒绝 ")])),_:2},1032,["onClick"]),u(L,{class:"agree-button",onClick:e=>b.RefuseOrAgreeData(s,1)},{default:i((()=>[c(" 同意 ")])),_:2},1032,["onClick"])])),_:2},1024))])),_:2},1024)])),_:2},1024)))),256))])),_:1}),u(B,{ref:"message",type:"message"},{default:i((()=>[u(q,{type:v.msgType,message:v.messageText,duration:2e3},null,8,["type","message"])])),_:1},512)])),_:1},8,["style"])}],["__scopeId","data-v-092e19af"]]);export{D as default};

View File

@@ -1 +0,0 @@
import{b as t,o as a,f as e,w as s,k as i,l,p as o,q as r,F as n,m as d,i as h,H as g,j as c,O as u,u as f,G as m,g as p,h as _,r as D}from"./index-Cx-ljvzK.js";import{h as b}from"./headerHeight.BKcShUBq.js";import{b as w}from"./fy_bg.cY2CWREb.js";import{n as y}from"./nav.-FlBmVf_.js";import{_ as M}from"./_plugin-vue_export-helper.BCo6x5W8.js";const S=M({components:{headerHeight:b,navBar:y,tableView:M({props:{tableData:{type:Array,default:()=>[]}},data:()=>({sortOrder:"desc",page:1,pageSize:10,loading:!1,noMore:!1,scrollHeight:600}),created(){this.calculateScrollHeight()},methods:{calculateScrollHeight(){const a=t();this.scrollHeight=a.windowHeight-50-67},toggleSort(){this.sortOrder="desc"===this.sortOrder?"asc":"desc",this.page=1,this.tableData=[],this.noMore=!1,this.loadData()},async loadData(){if(!this.loading&&!this.noMore){this.loading=!0;try{const t=this.getMockData(this.page,this.pageSize,this.sortOrder);if(0===t.length)return void(this.noMore=!0);1===this.page?this.tableData=t:this.tableData=[...this.tableData,...t],this.page++}finally{this.loading=!1}}},loadMore(){this.loadData()},getMockData(t,a,e){if(t>3)return[];const s=[],i=new Date,l=[0,1,2];for(let o=0;o<a;o++){const e=(t-1)*a+o,r=new Date(i);r.setDate(i.getDate()-e),s.push({time:`${r.getFullYear()}-${String(r.getMonth()+1).padStart(2,"0")}-${String(r.getDate()).padStart(2,"0")}`,amount:(1e4*Math.random()).toFixed(2),subsidy:(1e3*Math.random()).toFixed(2),status:l[Math.floor(Math.random()*l.length)]})}return"asc"===e?s.sort(((t,a)=>new Date(t.time)-new Date(a.time))):s.sort(((t,a)=>new Date(a.time)-new Date(t.time)))},getStatusText:t=>({0:"待审核",1:"已通过",2:"已拒绝"}[t]||"未知")}},[["render",function(t,p,_,D,b,w){const y=g,M=c,S=u;return a(),e(M,{class:"container"},{default:s((()=>[i(S,{"scroll-y":"",class:"table-scroll",onScrolltolower:w.loadMore,style:h({height:b.scrollHeight+"px"})},{default:s((()=>[i(M,{class:"table-header"},{default:s((()=>[i(M,{class:"header-item time-col",onClick:w.toggleSort},{default:s((()=>[i(y,null,{default:s((()=>[l("时间")])),_:1})])),_:1},8,["onClick"]),i(M,{class:"header-item"},{default:s((()=>[l("累计流水")])),_:1}),i(M,{class:"header-item"},{default:s((()=>[l("获得补贴")])),_:1}),i(M,{class:"header-item"},{default:s((()=>[l("状态")])),_:1})])),_:1}),(a(!0),o(n,null,r(_.tableData,((t,o)=>(a(),e(M,{class:"table-row",key:o},{default:s((()=>[i(M,{class:"row-item time-col"},{default:s((()=>[l(f(t.time),1)])),_:2},1024),i(M,{class:"row-item"},{default:s((()=>[l(f(t.total_transaction),1)])),_:2},1024),i(M,{class:"row-item"},{default:s((()=>[l(f(t.subsidy_amount),1)])),_:2},1024),i(M,{class:"row-item"},{default:s((()=>[i(y,{class:m("status-"+("已发放"===t.status_str?0:1))},{default:s((()=>[l(f(t.status_str),1)])),_:2},1032,["class"])])),_:2},1024)])),_:2},1024)))),128)),i(M,{class:"load-more"},{default:s((()=>[b.loading?(a(),e(y,{key:0},{default:s((()=>[l("加载中...")])),_:1})):b.noMore?(a(),e(y,{key:1},{default:s((()=>[l("没有更多数据了")])),_:1})):d("",!0)])),_:1})])),_:1},8,["onScrolltolower","style"])])),_:1})}],["__scopeId","data-v-ceedcd16"]])},data:()=>({guildId:null,baseBgUrl:w,dataList:[],pageConfig:{currentPage:1,pageSize:10},searchParams:{guild_id:0,token:p("token")||""},ThemeData:null}),onLoad(t){const{id:a}=t;this.searchParams.guild_id=a,a&&this.getList(),p("Theme_Data")&&(this.ThemeData=JSON.parse(p("Theme_Data")))},methods:{async getList(){const{code:t,data:a}=await _.get("/api/Guild/guild_subsidy_list",{...this.searchParams,page:this.pageConfig.currentPage,page_limit:this.pageConfig.pageSize});if(t){this.pageConfig.total=a.count,this.loading=!1;const t=a.list||[];if(0===t.length)return void(this.noMore=!0);if(this.dataList.length===this.pageConfig.total)return void(this.noMore=!0);this.dataList=[...this.dataList,...t],this.pageConfig.currentPage++}}}},[["render",function(t,l,o,r,n,d){var g;const u=D("headerHeight"),f=D("navBar"),m=D("tableView"),p=c;return a(),e(p,{class:"view-page",style:h({backgroundImage:`url('${(null==(g=n.ThemeData)?void 0:g.app_bg)||n.baseBgUrl}')`})},{default:s((()=>[i(u),i(f,{navTitle:"历史记录"}),i(p,{class:"content"},{default:s((()=>[i(m,{tableData:n.dataList},null,8,["tableData"])])),_:1})])),_:1},8,["style"])}],["__scopeId","data-v-df7337cb"]]);export{S as default};

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
import{g as e,h as a,b as t,r as o,e as s,f as l,w as i,i as r,j as n,o as d,k as m,l as f,u as c,m as g,p as u,q as h,F as p,t as _}from"./index-Cx-ljvzK.js";import{_ as w,a as D}from"./flowIcon.DTsd_2t1.js";import{r as v}from"./uni-app.es.C2wev25l.js";import{_ as S}from"./uni-load-more.Biu55tCr.js";import{h as P}from"./headerHeight.BKcShUBq.js";import{n as j}from"./nav.-FlBmVf_.js";import{l as k}from"./logo.DDDG-929.js";import{_ as x}from"./_plugin-vue_export-helper.BCo6x5W8.js";import"./uni-icons.rIRNGGE5.js";const C=x({components:{headerHeight:P,navBar:j},data:()=>({dateSearch:[new Date,new Date],currentDate:+new Date,logo:k,loading:!1,noMore:!1,detailData:null,pageConfig:{pageSize:20,currentPage:1,total:0},searchParams:{guild_id:0,start_time:new Date,end_time:new Date,token:e("token")||"",page:1,page_size:20},leaderStatus:null,flowDetail:null,flowList:[],ThemeData:null}),onLoad(a){const{id:t,leader:o}=a;this.leaderStatus=+o,this.searchParams.start_time=this.formatDate(new Date),this.searchParams.end_time=this.formatDate(new Date),this.searchParams.guild_id=t,t&&this.getFlow(),e("Theme_Data")&&(this.ThemeData=JSON.parse(e("Theme_Data")))},onReachBottom(){this.loading||this.noMore||this.getFlow()},methods:{formatDate(e){const a=new Date(e);return`${a.getFullYear()}-${String(a.getMonth()+1).padStart(2,"0")}-${String(a.getDate()).padStart(2,"0")}`},async getFlow(){const{code:e,data:t}=await a.get("/api/Guild/guild_flow",{...this.searchParams,page:this.pageConfig.currentPage,page_size:this.pageConfig.pageSize});if(e){this.flowDetail=t,this.pageConfig.total=t.count,this.loading=!1;const e=t.list||[];if(0===e.length)return void(this.noMore=!0);if(this.flowList=[...this.flowList,...e],this.pageConfig.currentPage++,this.flowList.length===this.pageConfig.total)return void(this.noMore=!0)}},jumpRoomPage(e){const a=t().platform;"ios"===a?window.webkit.messageHandlers.nativeHandler.postMessage({action:"jumpRoomPage",data:{room_id:e.room_id}}):"android"===a&&window.Android.jumpRoomPage(e.room_id)},changeDate(e){this.searchParams.start_time=e.length?e[0]:"",this.searchParams.end_time=e.length?e[1]:"",this.getFlow()}}},[["render",function(e,a,t,P,j,k){var x;const C=o("headerHeight"),y=o("navBar"),L=v(s("uni-datetime-picker"),w),M=n,R=v(s("uni-load-more"),S);return d(),l(M,{class:"view-page",style:r({backgroundImage:`url('${(null==(x=j.ThemeData)?void 0:x.app_bg)||e.$config.PRIMARY_BGURL}')`})},{default:i((()=>[m(C),m(y,{navTitle:""+(j.leaderStatus?"公会房间及流水":"公会房间")},{rightView:i((()=>[])),_:1},8,["navTitle"]),m(M,{class:"content_view"},{default:i((()=>[m(M,null,{default:i((()=>[m(L,{type:"range",style:{"background-color":"#f8f8f8"},"start-placeholder":"开始时间",end:j.currentDate,"end-placeholder":"结束时间",modelValue:j.dateSearch,"onUpdate:modelValue":a[0]||(a[0]=e=>j.dateSearch=e),rangeSeparator:"至",onChange:k.changeDate},null,8,["end","modelValue","onChange"])])),_:1}),j.flowDetail&&j.leaderStatus?(d(),l(M,{key:0,class:"header-view"},{default:i((()=>[m(M,{class:"flex-line flow-view w-fill flex-spaceB"},{default:i((()=>[m(M,{class:"flowTitle color-3"},{default:i((()=>[f(" 总流水 ")])),_:1})])),_:1}),m(M,{class:"flowNumber"},{default:i((()=>[f(c(j.flowDetail.total_transaction),1)])),_:1})])),_:1})):g("",!0),j.flowList&&j.flowList.length?(d(),l(M,{key:1,class:"room-list flex-line"},{default:i((()=>[(d(!0),u(p,null,h(j.flowList,(e=>(d(),l(M,{class:"room-line flex-line flex-spaceB",key:e.room_id,onClick:a=>k.jumpRoomPage(e)},{default:i((()=>[m(M,{class:"flex-line"},{default:i((()=>[m(M,{class:"head-portrait"},{default:i((()=>[_("img",{src:e.room_cover||j.logo,alt:""},null,8,["src"])])),_:2},1024),m(M,{class:"ml-20"},{default:i((()=>[m(M,{class:"color-3 font-32 font-w500"},{default:i((()=>[f(c(e.room_name),1)])),_:2},1024),m(M,{class:"color-6 font-24"},{default:i((()=>[f(" ID:"+c(e.room_number),1)])),_:2},1024)])),_:2},1024)])),_:2},1024),j.leaderStatus?(d(),l(M,{key:0,class:"flex-line"},{default:i((()=>[m(M,{class:"flowIcon"},{default:i((()=>[_("img",{src:D,alt:""})])),_:1}),m(M,{class:"ml-20"},{default:i((()=>[f(c(e.total_price||0),1)])),_:2},1024)])),_:2},1024)):g("",!0)])),_:2},1032,["onClick"])))),128))])),_:1})):g("",!0),m(M,{class:"mt-24"},{default:i((()=>[m(R,{status:j.loading?"loading":j.noMore?"noMore":"more"},null,8,["status"])])),_:1})])),_:1})])),_:1},8,["style"])}],["__scopeId","data-v-1a89a496"]]);export{C as default};

View File

@@ -1 +0,0 @@
import{s as e,g as a,b as t,h as l,n as s,c as i,A as o,B as n,r as d,e as c,f as r,w as u,i as m,j as f,o as p,k as g,t as h,l as _,u as y,p as b,q as k,F as v,m as D}from"./index-Cx-ljvzK.js";import{_ as w}from"./uni-icons.rIRNGGE5.js";import{r as x}from"./uni-app.es.C2wev25l.js";import{_ as I}from"./uni-easyinput.Dhsjq_J9.js";import{h as B}from"./headerHeight.BKcShUBq.js";import{n as j}from"./nav.-FlBmVf_.js";import{l as H}from"./logo.DDDG-929.js";import{_ as S}from"./_plugin-vue_export-helper.BCo6x5W8.js";const T=S({components:{headerHeight:B,navBar:j},data:()=>({logo:H,guildId:null,notice:"",value:"",guildName:"",detailData:null,styles:{color:"#333",borderColor:"none"},statusBarHeight:0,placeholderStyle:"color:321;font-size:14px",ThemeData:null}),onLoad(t){const{id:l,guildId:s,h:i}=t;e("token",l),this.guildId=s||"",a("token")&&this.getInfo(),this.statusBarHeight=i||a("BarHeight"),a("Theme_Data")&&(this.ThemeData=JSON.parse(a("Theme_Data")))},methods:{back(){this.closeWeb()},closeWeb(){const e=t().platform;"ios"===e?window.webkit.messageHandlers.nativeHandler.postMessage({action:"closeWeb"}):"android"===e&&window.Android.closeWeb()},async getInfo(){l.get("/api/Guild/get_guild_info",{token:a("token")||"",guild_id:this.guildId}).then((e=>{const{data:a,code:t}=e;this.detailData=a||null,a&&(this.detailData.user_list=a.user_list.slice(0,4)),this.guildName=a.name||null})).catch((e=>{}))},memberList(){s({url:`/pages/union/memberList?guildId=${this.guildId}`})},async confirmInfo(){if(""===this.guildName)return void i({title:"请输入群聊名称",icon:"none"});const e={token:a("token"),guild_id:this.detailData.guild_id,name:this.guildName,notice:this.detailData.notice,avatar:this.detailData.guild_cover};o({title:"提交中",mask:!0}),l.post("/api/Guild/set_guild_info",e).then((e=>{const{data:a,code:t}=e;t?setTimeout((()=>{n(),i({title:"提交成功",icon:"none",mask:!0}),this.getInfo()}),1e3):(i({title:"提交失败",icon:"error"}),n())})).catch((e=>{i({title:"提交失败",icon:"error"}),n()}))}}},[["render",function(e,a,l,s,i,o){var n;const B=d("navBar"),j=f,H=x(c("uni-icons"),w),S=x(c("uni-easyinput"),I);return p(),r(j,{class:"view-page",style:m({backgroundImage:`url('${(null==(n=i.ThemeData)?void 0:n.app_bg)||e.$config.PRIMARY_BGURL}')`})},{default:u((()=>[g(B,{style:m({marginTop:`${i.statusBarHeight}${"ios"===t().platform?"px":"dp"}`}),navTitle:"群聊设置",emitBack:!0,onBackEvent:o.back},null,8,["style","onBackEvent"]),i.detailData?(p(),r(j,{key:0,class:"content"},{default:u((()=>[g(j,{class:"name-view flex-line"},{default:u((()=>[g(j,{class:"name-image"},{default:u((()=>[h("img",{src:i.detailData.guild_cover,alt:""},null,8,["src"])])),_:1}),g(j,{class:"name-title"},{default:u((()=>[_(y(i.detailData.name),1)])),_:1})])),_:1}),g(j,{class:"member-view"},{default:u((()=>[g(j,{class:"flex-line w-fill",style:{"justify-content":"space-between"}},{default:u((()=>[g(j,{class:"member-name"},{default:u((()=>[_(" 群聊成员 ")])),_:1}),g(j,{class:"flex-line member-detail",onClick:o.memberList},{default:u((()=>[h("span",{class:"color-6"},"查看成员"),_(),g(H,{class:"flex-line",type:"right",color:"#666",size:"16"})])),_:1},8,["onClick"])])),_:1}),g(j,{class:"w-fill flex-line mt-24",style:{"align-items":"flex-start","justify-content":"space-between"}},{default:u((()=>[(p(!0),b(v,null,k(i.detailData.user_list,(e=>(p(),r(j,{class:""},{default:u((()=>[g(j,{class:"image-view"},{default:u((()=>[h("img",{src:e.avatar,alt:""},null,8,["src"])])),_:2},1024),g(j,{class:"color-9 font-28 mt-24 text-container",style:{"text-align":"center"}},{default:u((()=>[_(y(e.nickname),1)])),_:2},1024)])),_:2},1024)))),256))])),_:1})])),_:1}),g(j,{class:"edit-name"},{default:u((()=>[g(S,{modelValue:i.guildName,"onUpdate:modelValue":a[0]||(a[0]=e=>i.guildName=e),disabled:1!==i.detailData.is_deacon,primaryColor:"#999",inputBorder:!1,styles:i.styles,placeholderStyle:i.placeholderStyle,placeholder:"请输入内容"},null,8,["modelValue","disabled","styles","placeholderStyle"])])),_:1}),g(j,{class:"edit-notice"},{default:u((()=>[g(j,{class:"notice-title"},{default:u((()=>[_(" 群聊公告 ")])),_:1}),g(j,{class:"notice-view"},{default:u((()=>[g(S,{primaryColor:"#999",inputBorder:!1,disabled:1!==i.detailData.is_deacon,styles:i.styles,placeholderStyle:i.placeholderStyle,type:"textarea",autoHeight:"",modelValue:i.detailData.notification,"onUpdate:modelValue":a[1]||(a[1]=e=>i.detailData.notification=e),placeholder:"请输入群聊公告"},null,8,["disabled","styles","placeholderStyle","modelValue"])])),_:1})])),_:1}),1===i.detailData.is_deacon?(p(),r(j,{key:0,class:"footer"},{default:u((()=>[g(j,{class:"confirm-button",onClick:o.confirmInfo},{default:u((()=>[g(j,{class:"button"},{default:u((()=>[_(" 确认保存 ")])),_:1})])),_:1},8,["onClick"])])),_:1})):D("",!0)])),_:1})):D("",!0)])),_:1},8,["style"])}],["__scopeId","data-v-676fcbb7"]]);export{T as default};

View File

@@ -1 +0,0 @@
import{g as a,h as s,n as e,r as t,f as l,w as i,i as o,j as n,o as d,k as r,l as c,m as u,p as f,q as h,F as m,u as _}from"./index-Cx-ljvzK.js";import{h as g}from"./headerHeight.BKcShUBq.js";import{n as p}from"./nav.-FlBmVf_.js";import{l as y}from"./logo.DDDG-929.js";import{_ as v}from"./_plugin-vue_export-helper.BCo6x5W8.js";const k=v({components:{headerHeight:g,navBar:p},data:()=>({logo:y,detailData:null,searchParams:{guild_id:0,token:a("token")||""},ThemeData:null}),onLoad(s){const{id:e,leader:t}=s;this.leaderStatus=+t,this.searchParams.guild_id=e,e&&this.getSubsidy(),a("Theme_Data")&&(this.ThemeData=JSON.parse(a("Theme_Data")))},methods:{async getSubsidy(){const{code:a,data:e}=await s.get("/api/Guild/guild_subsidy",this.searchParams);this.detailData=a?e.list:null},historyRecord(){e({url:`/pages/union/historyRecord?id=${this.searchParams.guild_id}`})}}},[["render",function(a,s,e,g,p,y){var v;const k=t("headerHeight"),w=n,D=t("navBar");return d(),l(w,{class:"view-page",style:o({backgroundImage:`url('${(null==(v=p.ThemeData)?void 0:v.app_bg)||a.$config.PRIMARY_BGURL}')`})},{default:i((()=>[r(k),r(D,{navTitle:"公会补贴"},{rightView:i((()=>[p.detailData&&a.leaderStatus?(d(),l(w,{key:0,class:"icon-right flex-line",onClick:a.exit},{default:i((()=>[r(w,{onClick:y.historyRecord,class:"font-24 minUnicon",style:{"white-space":"nowrap"}},{default:i((()=>[c(" 历史记录 ")])),_:1},8,["onClick"])])),_:1},8,["onClick"])):u("",!0)])),_:1}),p.detailData?(d(),l(w,{key:0,class:"content-view"},{default:i((()=>[(d(!0),f(m,null,h(p.detailData,((a,s)=>(d(),l(w,{class:"bottom",key:s},{default:i((()=>[r(w,{class:"flex-line flex-spaceB w-fill"},{default:i((()=>[r(w,{class:"color-3 font-w500 font-32"},{default:i((()=>[c(_(a.name),1)])),_:2},1024),r(w,{class:"font-28",style:o({color:"已发放"===a.status_str?"#999":"#DEB52E"})},null,8,["style"])])),_:2},1024),r(w,{class:"line"}),r(w,{class:"flex-line flex-spaceB w-fill"},{default:i((()=>[r(w,{class:"cumulative font-28 font-w400"},{default:i((()=>[c(" 累计流水:"+_(a.total_transaction),1)])),_:2},1024),r(w,{class:"subsidy font-28"},{default:i((()=>[c(" 获得补贴:"+_(a.subsidy_amount),1)])),_:2},1024)])),_:2},1024)])),_:2},1024)))),128))])),_:1})):u("",!0)])),_:1},8,["style"])}],["__scopeId","data-v-3b3df461"]]);export{k as default};

File diff suppressed because one or more lines are too long

View File

@@ -1 +0,0 @@
.view-page[data-v-4e1bb458]{width:100vw;min-height:100vh;background-color:#f8f8f8}.view-page .status-bar[data-v-4e1bb458]{background-color:#fff}.view-page .nav[data-v-4e1bb458]{padding:1rem;width:calc(100% - 2rem);justify-content:start;background-color:#fff}.view-page .nav .icon-image[data-v-4e1bb458]{width:1.5rem;height:1.5rem}.view-page .nav .title[data-v-4e1bb458]{width:calc(100% - 1.5rem);text-align:center}.view-page .container[data-v-4e1bb458]{padding:.75rem 1rem}.view-page .container .title[data-v-4e1bb458]{background-color:#fff;border-radius:.4375rem;padding:.4375rem .75rem}.view-page .footer[data-v-4e1bb458]{display:inline-flex;justify-items:center;justify-content:space-evenly;align-items:center}.view-page .footer .help-box[data-v-4e1bb458]{text-align:center}.view-page .footer .help-box .help-icon[data-v-4e1bb458]{width:3.125rem;height:3.125rem;background:#eff2f8;border-radius:50%;display:inline-flex;justify-items:center;justify-content:center;align-items:center}

File diff suppressed because one or more lines are too long

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

View File

@@ -1 +0,0 @@
.uni-forms-item[data-v-ab882ba0]{position:relative;display:flex;margin-bottom:22px;flex-direction:row}.uni-forms-item__label[data-v-ab882ba0]{display:flex;flex-direction:row;align-items:center;text-align:left;font-size:14px;color:#606266;height:36px;padding:0 12px 0 0;vertical-align:middle;flex-shrink:0;box-sizing:border-box}.uni-forms-item__label.no-label[data-v-ab882ba0]{padding:0}.uni-forms-item__content[data-v-ab882ba0]{position:relative;font-size:14px;flex:1;box-sizing:border-box;flex-direction:row}.uni-forms-item .uni-forms-item__nuve-content[data-v-ab882ba0]{display:flex;flex-direction:column;flex:1}.uni-forms-item__error[data-v-ab882ba0]{color:#f56c6c;font-size:12px;line-height:1;padding-top:4px;position:absolute;top:100%;left:0;transition:transform .3s;transform:translateY(-100%);opacity:0}.uni-forms-item__error .error-text[data-v-ab882ba0]{color:#f56c6c;font-size:12px}.uni-forms-item__error.msg--active[data-v-ab882ba0]{opacity:1;transform:translateY(0)}.uni-forms-item.is-direction-left[data-v-ab882ba0]{flex-direction:row}.uni-forms-item.is-direction-top[data-v-ab882ba0]{flex-direction:column}.uni-forms-item.is-direction-top .uni-forms-item__label[data-v-ab882ba0]{padding:0 0 8px;line-height:1.5715;text-align:left;white-space:initial}.uni-forms-item .is-required[data-v-ab882ba0]{color:#dd524d;font-weight:700}.uni-forms-item--border[data-v-ab882ba0]{margin-bottom:0;padding:10px 0;border-top:1px #eee solid}.uni-forms-item--border .uni-forms-item__content[data-v-ab882ba0]{flex-direction:column;justify-content:flex-start;align-items:flex-start}.uni-forms-item--border .uni-forms-item__content .uni-forms-item__error[data-v-ab882ba0]{position:relative;top:5px;left:0;padding-top:0}.is-first-border[data-v-ab882ba0]{border:none}[data-v-b676f4d0] .is-input-border{border:0;border-radius:.6875rem}.view-page[data-v-b676f4d0]{font-family:Source Han Sans CN,Source Han Sans CN;display:flex;flex-direction:column;background-color:#f8f8f8;background-repeat:no-repeat;background-size:100% 100%;min-height:100vh}.view-page .content[data-v-b676f4d0]{padding:0 .75rem;margin-top:.75rem}.view-page .content .view-picker[data-v-b676f4d0]{background-color:#fff;padding:.65625rem;border-radius:.4375rem}.view-page .content .comfirmButton[data-v-b676f4d0]{width:18.75rem;height:2.625rem;background:var(--primary-color);font-size:var(--font-button-size);color:var(--font-button-color);border-radius:3.3125rem;justify-content:center}

View File

@@ -1 +0,0 @@
.view-page[data-v-1a89a496]{min-height:100vh;font-family:Source Han Sans CN,Source Han Sans CN;background-image:url(/h5/web/assets/bg-yYu5gMyW.png);background-repeat:no-repeat;background-size:100% 100%}.view-page .content_view[data-v-1a89a496]{padding:0 .75rem}.view-page .header-view[data-v-1a89a496]{padding:.75rem;margin-top:.75rem;background-image:url(/h5/web/assets/flowbg-tH-2-EBN.png);background-repeat:no-repeat;background-size:100% 100%;height:4.75rem}.view-page .header-view .flow-view[data-v-1a89a496]{font-weight:400;font-size:.75rem}.view-page .header-view .flowNumber[data-v-1a89a496]{font-weight:500;font-size:1.25rem;color:#333;margin-top:.75rem}.view-page .room-list[data-v-1a89a496]{flex-wrap:wrap;width:100%}.view-page .room-list .room-line[data-v-1a89a496]{width:100%;margin-top:.75rem;padding:.75rem;border-radius:.3125rem;background-color:#fff}.view-page .room-list .room-line .flowIcon[data-v-1a89a496]{width:1.5rem;height:1.5rem}.view-page .room-list .room-line .head-portrait[data-v-1a89a496]{width:3.125rem;height:3.125rem;border-radius:50%}.view-page .room-list .room-line .head-portrait img[data-v-1a89a496]{border-radius:50%}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 617 KiB

View File

@@ -1 +0,0 @@
.view-page[data-v-676fcbb7]{display:flex;flex-direction:column;background-repeat:no-repeat;background-size:100% 100%;min-height:100vh;font-family:Source Han Sans CN,Source Han Sans CN}.view-page .text-container[data-v-676fcbb7]{width:4.6875rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.view-page .footer[data-v-676fcbb7]{padding:.625rem;text-align:center;padding-bottom:calc(.625rem + env(safe-area-inset-bottom))}.view-page .footer .confirm-button[data-v-676fcbb7]{padding:0 1.5625rem}.view-page .footer .confirm-button .button[data-v-676fcbb7]{display:block;width:100%;height:2.625rem;border-radius:3.3125rem;line-height:2.625rem;background:var(--primary-color);color:var(--font-button-color);text-align:center;font-family:Source Han Sans CN,Source Han Sans CN;font-weight:400}.view-page .image-view[data-v-676fcbb7]{width:3.125rem;height:3.125rem;margin:0 .75rem}.view-page .image-view img[data-v-676fcbb7]{border-radius:50%}.view-page .content[data-v-676fcbb7]{padding:0 1rem}.view-page .content .name-view[data-v-676fcbb7]{width:100%;margin-top:.75rem;height:4.625rem;background:#fff;border-radius:.6875rem}.view-page .content .name-view .name-image[data-v-676fcbb7]{width:3.125rem;height:3.125rem;margin:0 .75rem}.view-page .content .name-view .name-image img[data-v-676fcbb7]{border-radius:50%}.view-page .content .name-view .name-title[data-v-676fcbb7]{font-weight:400;font-size:.875rem;color:#333;text-align:left;font-style:normal;text-transform:none}.view-page .content .member-view[data-v-676fcbb7]{padding:.75rem;margin-top:.75rem;background-color:#fff;border-radius:.6875rem}.view-page .content .member-view .member-name[data-v-676fcbb7]{font-family:Source Han Sans CN,Source Han Sans CN;font-weight:500;font-size:1rem;color:#333;text-align:left;font-style:normal;text-transform:none}.view-page .content .member-view .member-name .member-detail[data-v-676fcbb7]{color:#666}.view-page .content .edit-name[data-v-676fcbb7]{margin-top:.75rem;background:#eff2f8;padding:.75rem;border-radius:.6875rem}.view-page .content .edit-notice .notice-title[data-v-676fcbb7]{padding:.75rem 0;font-family:Source Han Sans CN,Source Han Sans CN;font-weight:500;font-size:1rem;color:#333;text-align:left;font-style:normal;text-transform:none}.view-page .content .edit-notice .notice-view[data-v-676fcbb7]{background:#eff2f8;padding:.75rem;border-radius:.6875rem}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -1 +0,0 @@
.view-page[data-v-3b3df461]{min-height:100vh;font-family:Source Han Sans CN,Source Han Sans CN;background-repeat:no-repeat;background-size:100% 100%}.view-page .minUnicon[data-v-3b3df461]{color:var(--primary-color)}.view-page .content-view[data-v-3b3df461]{padding:0 .75rem}.view-page .bottom[data-v-3b3df461]{margin-top:1.25rem}.view-page .cumulative[data-v-3b3df461]{color:var(--primary-color)}.view-page .line[data-v-3b3df461]{background-color:#ececec;height:.03125rem;margin:.75rem 0}.view-page .subsidy[data-v-3b3df461]{color:var(--warn-color)}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 KiB

View File

@@ -1 +0,0 @@
.navigation-container[data-v-38ec4fb0]{width:100%;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,sans-serif}.nav-tabs[data-v-38ec4fb0]{display:flex;font-size:.75rem;overflow-x:auto;scrollbar-width:none}.nav-tab[data-v-38ec4fb0]{flex:1;text-align:center;cursor:pointer;border-radius:6px;font-size:.75rem;font-weight:400;color:#666;position:relative;-webkit-user-select:none;user-select:none;white-space:nowrap;margin:auto .3125rem;font-family:Source Han Sans CN,Source Han Sans CN}.nav-tab[data-v-38ec4fb0]:hover{color:#1a4332}.nav-tab.active[data-v-38ec4fb0]{color:#333;font-size:1rem;font-weight:500;z-index:5}.nav-tab.active[data-v-38ec4fb0]:after{content:"";position:absolute;bottom:.4375rem;left:50%;transform:translate(-50%);width:80%;height:.5rem;background-image:var(--tab-url);background-repeat:no-repeat;background-size:100% 100%;border-radius:1px;z-index:-10;border-radius:.3125rem}@media (max-width: 480px){.nav-tab[data-v-38ec4fb0]{padding:8px 4px;font-size:12px}}

View File

@@ -1 +0,0 @@
import{o as t,p as a,t as e,F as i,q as s,G as n,u as b}from"./index-Cx-ljvzK.js";import{_ as c}from"./_plugin-vue_export-helper.BCo6x5W8.js";const l=c({name:"NavigationTabs",props:{tabsData:{type:Array,default:()=>[]},defaultActive:{type:Number,default:0}},data(){return{activeTab:this.defaultActive,defaultTabs:[{key:"created",label:"我创建的",title:"我创建的内容",content:"这里显示您创建的所有内容和项目。"},{key:"hosted",label:"我主持的",title:"我主持的内容",content:"这里显示您正在主持的活动和会议。"},{key:"managed",label:"我管理的",title:"我管理的内容",content:"这里显示您管理的团队和资源。"},{key:"focused",label:"我关注的",title:"我关注的内容",content:"这里显示您关注的话题和动态。"}]}},computed:{tabs(){return this.tabsData.length>0?this.tabsData:this.defaultTabs}},watch:{defaultActive:{handler(t){this.activeTab=t},immediate:!0}},methods:{switchTab(t){t!==this.activeTab&&(this.activeTab=t,this.$emit("tab-change",{index:t,tab:this.tabs[t]}))},getCurrentTab(){return this.tabs[this.activeTab]},setActiveTab(t){t>=0&&t<this.tabs.length&&this.switchTab(t)}},mounted(){this.$emit("tab-change",{index:this.activeTab,tab:this.tabs[this.activeTab]})}},[["render",function(c,l,h,d,r,o){return t(),a("div",{class:"navigation-container"},[e("div",{class:"nav-tabs"},[(t(!0),a(i,null,s(o.tabs,((e,i)=>(t(),a("div",{key:i,class:n(["nav-tab",{active:r.activeTab===i}]),onClick:t=>o.switchTab(i)},b(e.value),11,["onClick"])))),128))])])}],["__scopeId","data-v-38ec4fb0"]]);export{l as N};

Some files were not shown because too many files have changed in this diff Show More