| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051 |
- <template>
- <view class="detail-page">
- <!-- 背景层 -->
- <view class="header-bg"></view>
- <!-- 顶部内容层 -->
- <view class="header-section">
- <view class="header-content">
- <view class="title-group">
- <text class="main-title">感冒灵大批量跨区域客户</text>
- <text class="sub-title">订单维度:单笔订单实际盒数 {{ ">" }} 20000盒</text>
- <text class="sub-title">地域维度:出库企业所在省份 ≠ 入库企业所在省份</text>
- </view>
- <view class="stat-box">
- <text class="stat-num">{{ totalCount }}</text>
- <text class="stat-unit">家</text>
- </view>
- </view>
- <view class="header-toolbar">
- <view class="filter-tabs">
- <view class="tab-item" v-for="(tab, index) in timeFilters" :key="index"
- :class="{ active: currentFilter === tab.value }" @click="switchFilter(tab.value)">
- {{ tab.label }}
- </view>
- </view>
- <view class="filter-wrap">
- <view class="selector" @click.stop="toggleProvinceDropdown">
- <text class="selector-text">{{
- selectedProvince || "全部省份"
- }}</text>
- <text class="selector-arrow" :class="{ open: dropdownProvinceOpen }"></text>
- </view>
- </view>
- </view>
- </view>
- <!-- 列表区域 -->
- <scroll-view class="list-scroll" scroll-y="true" refresher-enabled :refresher-triggered="isRefreshing"
- @refresherrefresh="onRefresh">
- <view class="list-container">
- <view class="date-group" v-for="groupItem in groupedRows" :key="groupItem.date">
- <view class="date-group-card">
- <view class="group-left">
- <view class="group-select-btn" :class="{
- selected: isGroupFullySelected(groupItem),
- partial: isGroupPartiallySelected(groupItem),
- }" @click.stop="toggleGroupSelection(groupItem)">
- <text v-if="isGroupFullySelected(groupItem)">✓</text>
- <text v-else-if="isGroupPartiallySelected(groupItem)">-</text>
- </view>
- <text class="date-label">{{ groupItem.date }}</text>
- </view>
- </view>
- <view class="card-item" v-for="(item, index) in groupItem.list" :key="item.__selectId || index"
- @click="toDetail(item)">
- <view class="card-header">
- <view class="header-left">
- <view class="company-select-btn" :class="{ selected: isCompanySelected(item) }"
- @click.stop="toggleCompanySelection(item)">
- <text v-if="isCompanySelected(item)">✓</text>
- </view>
- <text class="index-num">{{ index + 1 }}</text>
- <text class="company-name">{{ item.customerName }}</text>
- <text class="level-tag" :class="getLevelClass(item.customerLevel)">
- {{ item.customerLevel }}
- </text>
- </view>
- <view class="header-right">
- <text class="alert-count">{{ item.totalWarningAmount }}次预警</text>
- </view>
- </view>
- <view class="card-body">
- <view class="info-grid">
- <view class="info-item">
- <text class="label">省份</text>
- <text class="value">{{ item.customerProvinceName ?? '--' }}</text>
- </view>
- <view class="info-item">
- <text class="label">责任人</text>
- <text class="value">{{ item.responsibleManager }}</text>
- </view>
- <view class="info-item">
- <text class="label">性质</text>
- <text class="value">{{ item.customerCategory }}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view v-if="!loading && rows.length === 0" class="empty-data">
- <EmptyView text="无相关数据" />
- </view>
- </view>
- </scroll-view>
- <!-- 底部按钮区 -->
- <view class="footer-btn-area">
- <button class="action-btn export-btn" @click="handleExport">
- 导出至邮箱
- </button>
- </view>
- <!-- 蒙层 -->
- <view class="report-export-create-modal-mask" v-if="emailModalOpen" @click="closeEmailModal"
- @touchmove.stop.prevent></view>
- <!-- 邮箱导出弹窗 -->
- <view class="report-export-create-modal report-export-create-email-modal"
- :class="{ 'report-export-create-modal--open': emailModalOpen }" v-if="emailModalOpen">
- <view class="report-export-create-modal-title">
- <text>发送至邮箱</text>
- <view class="report-export-create-modal-close" @click.stop="closeEmailModal">×</view>
- </view>
- <view class="report-export-create-modal-body">
- <up-input v-model="emailForm.email" border="none" :customStyle="{
- backgroundColor: '#ebf3fb',
- height: '80rpx',
- paddingLeft: '20rpx',
- }" placeholder="请填写邮箱" @input="emailError = false" disabled>
- <template #suffix>
- <view style="margin-right: 20rpx; color: #666">@999.com.cn</view>
- </template>
- </up-input>
- <text v-if="emailError" class="report-export-error-text">请输入邮箱</text>
- </view>
- <view class="report-export-create-modal-footer">
- <view class="report-export-create-modal-btn cancel-btn" @click.stop="closeEmailModal">取消</view>
- <view class="report-export-create-modal-btn confirm-btn" @click.stop="handleSendEmail">发送</view>
- </view>
- </view>
- <!-- 独立的下拉菜单层 -->
- <view class="dropdown-layer" v-if="dropdownProvinceOpen" @click.stop>
- <view class="dropdown">
- <view class="dropdown-search-bar">
- <input class="dropdown-search-input" v-model="provinceSearchText" placeholder="搜索省份..."
- placeholder-style="color: #999" />
- </view>
- <scroll-view scroll-y="true" class="dropdown-scroll-view">
- <view class="dropdown-item" v-for="(p, i) in filteredProvinceList" :key="p || i" :class="{
- active: p === selectedProvince || (!selectedProvince && i === 0),
- }" @click.stop="selectProvince(p)">
- {{ p || "全部省份" }}
- <text v-if="p === selectedProvince || (!selectedProvince && i === 0)" class="check-mark">✓</text>
- </view>
- <view v-if="filteredProvinceList.length === 0" class="dropdown-empty">暂无数据</view>
- </scroll-view>
- </view>
- </view>
- </view>
- <BottomScrollTip :text="'下滑动查看更多内容'" :bottom="'140rpx'" />
- </template>
- <script>
- import EmptyView from "../../../wigets/empty.vue";
- import request from "../../../request/index.js";
- import BottomScrollTip from "../../../wigets/BottomScrollTip.vue";
- import { formatDate, guid } from "../../../utils/utils.js";
- export default {
- components: {
- EmptyView,
- BottomScrollTip
- },
- data() {
- return {
- isRefreshing: false,
- loading: false,
- rows: [],
- allRows: [],
- dropdownProvinceOpen: false,
- provinceSearchText: "",
- provinceList: [""],
- selectedProvince: "",
- currentFilter: "all",
- timeFilters: [
- { label: "全部", value: "all" },
- { label: "近7天", value: "7" },
- { label: "近15天", value: "15" },
- { label: "近30天", value: "30" },
- ],
- totalCount: 0,
- emailModalOpen: false,
- emailForm: {
- email: "",
- },
- emailError: false,
- // 多选导出选择状态:存每条记录的唯一 __selectId
- selectedCompanyKeys: [],
- };
- },
- created() {
- this.resetFetch();
- this.getProviceList();
- const userEmail = uni.getStorageSync('traceCode_useremail')
- this.emailForm.email = userEmail
- },
- methods: {
- formatDate,
- switchFilter(value) {
- if (this.currentFilter === value) return;
- this.currentFilter = value;
- this.resetFetch();
- },
- // 选择的唯一 key(由列表接口注入 __selectId)
- getCompanyKey(item = {}) {
- return String(item.__selectId || "");
- },
- isCompanySelected(item) {
- const key = this.getCompanyKey(item);
- if (!key) return false;
- return (this.selectedCompanyKeys || []).includes(key);
- },
- toggleCompanySelection(item) {
- const key = this.getCompanyKey(item);
- if (!key) return;
- const has = this.isCompanySelected(item);
- if (has) {
- this.selectedCompanyKeys = (this.selectedCompanyKeys || []).filter(
- (k) => k !== key,
- );
- } else {
- this.selectedCompanyKeys = [
- ...(this.selectedCompanyKeys || []),
- key,
- ];
- }
- },
- isGroupFullySelected(groupItem = {}) {
- const list = Array.isArray(groupItem.list) ? groupItem.list : [];
- if (!list.length) return false;
- return list.every((it) => this.isCompanySelected(it));
- },
- isGroupPartiallySelected(groupItem = {}) {
- const list = Array.isArray(groupItem.list) ? groupItem.list : [];
- if (!list.length) return false;
- const selectedCount = list.filter((it) => this.isCompanySelected(it)).length;
- return selectedCount > 0 && selectedCount < list.length;
- },
- toggleGroupSelection(groupItem = {}) {
- const list = Array.isArray(groupItem.list) ? groupItem.list : [];
- if (!list.length) return;
- const groupKeys = list.map((it) => this.getCompanyKey(it)).filter(Boolean);
- if (!groupKeys.length) return;
- const allSelected = groupKeys.every((k) =>
- (this.selectedCompanyKeys || []).includes(k),
- );
- if (allSelected) {
- this.selectedCompanyKeys = (this.selectedCompanyKeys || []).filter(
- (k) => !groupKeys.includes(k),
- );
- } else {
- const merged = new Set([...(this.selectedCompanyKeys || []), ...groupKeys]);
- this.selectedCompanyKeys = Array.from(merged);
- }
- },
- getUpdatedDate(fullTime) {
- const t = String(fullTime || "");
- if (!t) return "未知日期";
- return t.split(" ")[0] || t.split("T")[0] || "未知日期";
- },
- getProviceList() {
- request("/common/getProviceList", {
- path: "traceabilityReport/pages/ganmaoling/index.vue",
- }).then((res) => {
- if (res.code == 200) {
- const _data = res.data || [];
- this.provinceList = ["", ..._data.map((item) => item.regionName)];
- }
- });
- },
- getLevelClass(level) {
- if (level === "VIP") return "tag-vip";
- if (level === "二级") return "tag-l2";
- if (level === "三级") return "tag-l3";
- return "tag-default";
- },
- fetchList() {
- if (this.loading) return;
- this.loading = true;
- const days = this.currentFilter === "all" ? -1 : this.currentFilter;
- request(
- `/report/ganmaoling/list?days=${days}`,
- {
- path: "traceabilityReport/pages/ganmaoling/index.vue",
- },
- "get",
- ).then((res) => {
- if (res.code == 200) {
- this.allRows = (res.data || []).map((it) => ({
- ...it,
- __selectId: it?.__selectId || guid("glm_"),
- }));
- this.applyFilter();
- }
- this.loading = false;
- this.isRefreshing = false;
- });
- },
- async onRefresh() {
- this.isRefreshing = true;
- this.fetchList();
- },
- resetFetch() {
- this.rows = [];
- this.selectedCompanyKeys = [];
- this.fetchList();
- },
- applyFilter() {
- if (!this.selectedProvince) {
- this.rows = [...this.allRows];
- } else {
- this.rows = this.allRows.filter(item => item.customerProvinceName === this.selectedProvince);
- }
- this.totalCount = this.rows.length;
- // 切换筛选条件后清空已选企业,避免脏选中
- this.selectedCompanyKeys = [];
- },
- toggleProvinceDropdown() {
- this.dropdownProvinceOpen = !this.dropdownProvinceOpen;
- },
- closeProvinceDropdown() {
- this.dropdownProvinceOpen = false;
- },
- selectProvince(province) {
- this.selectedProvince = province || "";
- this.dropdownProvinceOpen = false;
- this.applyFilter();
- },
- toDetail(item) {
- uni.navigateTo({
- url: `/traceCodePackages/traceabilityReport/pages/ganmaoling/detail/index?name=${encodeURIComponent(item.customerName)}&updatedTime=${item.updatedTime || ""}`,
- });
- },
- handleExport() {
- if ((this.selectedCompanyKeys || []).length === 0) {
- uni.showToast({
- title: '请选择要导出的企业',
- icon: 'none'
- })
- return
- }
- this.emailModalOpen = true;
- this.emailError = false;
- },
- closeEmailModal() {
- this.emailModalOpen = false;
- },
- async handleSendEmail() {
- if (!this.emailForm.email) {
- this.emailError = true;
- return;
- }
- const selectedRows = (this.rows || []).filter((r) =>
- (this.selectedCompanyKeys || []).includes(this.getCompanyKey(r)),
- );
- const selectedDates = Array.from(
- new Set(selectedRows.map((r) => this.getUpdatedDate(r.updatedTime))),
- ).filter(Boolean);
- if (!selectedDates.length) {
- uni.showToast({ title: "未找到可导出的日期", icon: "none" });
- return;
- }
- uni.showLoading({ title: "发送中..." });
- try {
- for (let i = 0; i < selectedDates.length; i++) {
- const dateStr = selectedDates[i];
- const res = await request(
- `/report/ganmaoling/sendemail`,
- {
- updatedTime: dateStr,
- emailAddress: this.emailForm.email + "@999.com.cn",
- path: "traceabilityReport/pages/ganmaoling/index.vue",
- },
- "post",
- );
- if (res?.code != 200) {
- uni.hideLoading();
- uni.showToast({
- title: res?.msg || "发送失败",
- icon: "none",
- });
- return;
- }
- }
- uni.hideLoading();
- uni.showToast({ title: "发送成功", icon: "success" });
- this.closeEmailModal();
- } catch (e) {
- uni.hideLoading();
- uni.showToast({ title: "发送失败", icon: "none" });
- }
- },
- },
- computed: {
- groupedRows() {
- const groups = {};
- (this.rows || []).forEach((item) => {
- const date = this.getUpdatedDate(item.updatedTime);
- if (!groups[date]) groups[date] = [];
- groups[date].push(item);
- });
- return Object.keys(groups)
- .sort(
- (a, b) =>
- new Date(String(b).replace(/-/g, "/")).getTime() -
- new Date(String(a).replace(/-/g, "/")).getTime(),
- )
- .map((date) => ({
- date,
- list: groups[date],
- }));
- },
- filteredProvinceList() {
- if (!this.provinceSearchText) {
- return this.provinceList;
- }
- return this.provinceList.filter((p) =>
- p?.toLowerCase()?.includes(this.provinceSearchText.toLowerCase()),
- );
- },
- },
- };
- </script>
- <style scoped>
- .detail-page {
- display: flex;
- flex-direction: column;
- height: calc(100vh - 116rpx - env(safe-area-inset-bottom));
- box-sizing: border-box;
- background: #f5f7fa;
- position: relative;
- }
- /* Header Background Layer */
- .header-bg {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 320rpx;
- /* Fixed height for background */
- background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
- border-bottom-left-radius: 40rpx;
- border-bottom-right-radius: 40rpx;
- z-index: 1;
- box-shadow: 0 10rpx 30rpx rgba(24, 144, 255, 0.2);
- }
- /* Header Content Layer */
- .header-section {
- padding: 40rpx 40rpx 80rpx;
- position: relative;
- z-index: 3;
- /* Above List */
- color: #fff;
- /* Transparent background to allow overlap effect */
- }
- .header-content {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- position: relative;
- z-index: 2;
- margin-bottom: 30rpx;
- }
- .title-group {
- display: flex;
- flex-direction: column;
- flex: 1;
- margin-right: 20rpx;
- }
- .main-title {
- font-size: 44rpx;
- font-weight: bold;
- margin-bottom: 16rpx;
- letter-spacing: 2rpx;
- line-height: 1.2;
- }
- .sub-title {
- font-size: 24rpx;
- opacity: 0.9;
- margin-bottom: 8rpx;
- line-height: 1.4;
- }
- .stat-box {
- display: flex;
- align-items: baseline;
- }
- .stat-num {
- font-size: 56rpx;
- font-weight: bold;
- margin-right: 8rpx;
- font-family: "DINAlternate-Bold", sans-serif;
- }
- .stat-unit {
- font-size: 24rpx;
- opacity: 0.8;
- }
- /* Header Toolbar */
- .header-toolbar {
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: relative;
- z-index: 3;
- gap: 20rpx;
- }
- .update-tip {
- display: inline-flex;
- align-items: center;
- background: rgba(255, 255, 255, 0.15);
- padding: 8rpx 20rpx;
- border-radius: 30rpx;
- font-size: 22rpx;
- backdrop-filter: blur(10px);
- }
- .tip-icon {
- margin-right: 8rpx;
- font-size: 20rpx;
- }
- /* Filter Styles */
- .filter-wrap {
- position: relative;
- }
- .selector {
- display: flex;
- align-items: center;
- color: #fff;
- font-size: 26rpx;
- font-weight: 500;
- padding: 8rpx 20rpx;
- background: rgba(255, 255, 255, 0.2);
- border-radius: 30rpx;
- border: 1rpx solid rgba(255, 255, 255, 0.3);
- }
- .selector-text {
- max-width: 200rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .selector-arrow {
- margin-left: 10rpx;
- width: 0;
- height: 0;
- border-left: 8rpx solid transparent;
- border-right: 8rpx solid transparent;
- border-top: 10rpx solid #fff;
- transition: transform 0.3s;
- }
- .selector-arrow.open {
- transform: rotate(180deg);
- }
- /* Header date filter tabs */
- .filter-tabs {
- display: flex;
- background: rgba(255, 255, 255, 0.2);
- border-radius: 16rpx;
- padding: 6rpx 6rpx;
- z-index: 30;
- position: relative;
- flex: 1;
- max-width: 420rpx;
- }
- .tab-item {
- flex: 1;
- text-align: center;
- font-size: 24rpx;
- padding: 10rpx 0;
- border-radius: 12rpx;
- color: rgba(255, 255, 255, 0.8);
- transition: all 0.3s;
- }
- .tab-item.active {
- background: #fff;
- color: #2b32b2;
- font-weight: 600;
- box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
- }
- /* Date-group (history style) */
- .date-group {
- margin-bottom: 40rpx;
- }
- .date-group-card {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- background: #fff;
- padding: 16rpx 22rpx;
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.03);
- border-left: 6rpx solid #1488cc;
- }
- .group-left {
- display: flex;
- align-items: center;
- }
- .date-label {
- font-size: 28rpx;
- font-weight: 600;
- color: #333;
- }
- .group-select-btn {
- width: 36rpx;
- height: 36rpx;
- border-radius: 50%;
- border: 2rpx solid #1488cc;
- color: #1488cc;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 22rpx;
- background: rgba(20, 136, 204, 0.06);
- margin-right: 14rpx;
- }
- .group-select-btn.selected {
- background: #1488cc;
- color: #fff;
- }
- .group-select-btn.partial {
- background: rgba(20, 136, 204, 0.15);
- }
- .company-select-btn {
- width: 36rpx;
- height: 36rpx;
- border-radius: 50%;
- border: 2rpx solid #d0d7e2;
- color: #d0d7e2;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 12rpx;
- font-size: 22rpx;
- background: #fff;
- flex-shrink: 0;
- }
- .company-select-btn.selected {
- border-color: #1488cc;
- color: #1488cc;
- background: rgba(20, 136, 204, 0.08);
- }
- /* Dropdown Layer (Absolute on top of everything) */
- .dropdown-layer {
- position: absolute;
- top: 300rpx;
- /* Adjust based on header layout */
- right: 40rpx;
- z-index: 999;
- }
- .dropdown {
- width: 360rpx;
- background: #fff;
- border-radius: 12rpx;
- box-shadow: 0 8rpx 30rpx rgba(0, 0, 0, 0.15);
- overflow: hidden;
- }
- .dropdown-search-bar {
- padding: 16rpx;
- border-bottom: 1rpx solid #f0f0f0;
- }
- .dropdown-search-input {
- background: #f5f7fa;
- height: 64rpx;
- border-radius: 32rpx;
- padding: 0 24rpx;
- font-size: 26rpx;
- }
- .dropdown-scroll-view {
- max-height: 400rpx;
- }
- .dropdown-item {
- padding: 20rpx 30rpx;
- font-size: 28rpx;
- color: #333;
- display: flex;
- justify-content: space-between;
- align-items: center;
- transition: background 0.2s;
- }
- .dropdown-item:active {
- background: #f5f7fa;
- }
- .dropdown-item.active {
- color: #1890ff;
- font-weight: 500;
- background: #e6f7ff;
- }
- .check-mark {
- font-size: 24rpx;
- }
- .dropdown-empty {
- padding: 40rpx;
- text-align: center;
- color: #999;
- font-size: 26rpx;
- }
- /* List Section */
- .list-scroll {
- flex: 1;
- height: 0;
- padding: 0 24rpx;
- box-sizing: border-box;
- margin-top: -50rpx;
- /* Overlap effect */
- position: relative;
- z-index: 2;
- /* Between bg and header content */
- }
- .list-container {
- padding-top: 10rpx;
- padding-bottom: calc(200rpx + env(safe-area-inset-bottom));
- }
- .card-item {
- background: #fff;
- border-radius: 20rpx;
- padding: 26rpx 22rpx;
- margin-bottom: 20rpx;
- box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.05);
- transition: transform 0.2s;
- }
- .card-item:active {
- transform: scale(0.99);
- }
- .card-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16rpx;
- }
- .header-left {
- flex: 1;
- display: flex;
- align-items: center;
- flex-wrap: nowrap;
- margin-right: 20rpx;
- gap: 0;
- min-width: 0;
- }
- .index-num {
- font-size: 24rpx;
- color: #999;
- font-family: monospace;
- margin-right: 12rpx;
- }
- .company-name {
- font-size: 32rpx;
- font-weight: 600;
- color: #096dd9;
- line-height: 1.4;
- text-decoration: underline;
- margin-right: 8rpx;
- }
- .level-tag {
- font-size: 20rpx;
- padding: 4rpx 12rpx;
- border-radius: 8rpx;
- white-space: nowrap;
- line-height: 1.2;
- }
- .header-right {
- flex-shrink: 0;
- }
- .tag-vip {
- background: linear-gradient(135deg, #e6f7ff, #bae7ff);
- color: #096dd9;
- }
- .tag-l2 {
- background: linear-gradient(135deg, #f6ffed, #d9f7be);
- color: #389e0d;
- }
- .tag-l3 {
- background: linear-gradient(135deg, #fff7e6, #ffe7ba);
- color: #d46b08;
- }
- .tag-default {
- background: #f5f5f5;
- color: #999;
- }
- .card-body {
- background: #f9fbfd;
- border-radius: 12rpx;
- padding: 24rpx;
- }
- .info-grid {
- display: flex;
- flex-wrap: wrap;
- gap: 24rpx;
- }
- .info-item {
- display: flex;
- align-items: center;
- min-width: 45%;
- }
- .info-item .label {
- font-size: 24rpx;
- color: #999;
- margin-right: 12rpx;
- }
- .info-item .value {
- font-size: 26rpx;
- color: #666;
- font-weight: 500;
- }
- .alert-count {
- font-size: 22rpx;
- color: #ff4d4f;
- background: rgba(255, 77, 79, 0.1);
- padding: 6rpx 16rpx;
- border-radius: 20rpx;
- font-weight: 600;
- }
- .empty-data {
- padding-top: 120rpx;
- }
- .footer-btn-area {
- padding: 24rpx 32rpx calc(24rpx + env(safe-area-inset-bottom));
- background: #fff;
- box-shadow: 0 -4rpx 20rpx rgba(0, 0, 0, 0.08);
- position: fixed;
- z-index: 100;
- bottom: 0;
- width: 100%;
- box-sizing: border-box;
- display: flex;
- gap: 24rpx;
- }
- .action-btn {
- flex: 1;
- height: 88rpx;
- line-height: 88rpx;
- border-radius: 44rpx;
- font-size: 30rpx;
- font-weight: 600;
- text-align: center;
- border: none;
- transition: all 0.3s;
- }
- .action-btn::after {
- border: none;
- }
- .action-btn:active {
- transform: scale(0.96);
- }
- .history-btn {
- background: #fff;
- color: #1890ff;
- border: 2rpx solid #1890ff;
- box-shadow: 0 4rpx 12rpx rgba(24, 144, 255, 0.1);
- }
- .export-btn {
- background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
- color: #fff;
- box-shadow: 0 6rpx 16rpx rgba(24, 144, 255, 0.35);
- }
- /* 弹窗样式 */
- .report-export-create-modal-mask {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.6);
- z-index: 999;
- backdrop-filter: blur(2px);
- }
- .report-export-create-modal {
- position: fixed;
- z-index: 1000;
- background: #fff;
- transition: all 0.3s ease;
- }
- .report-export-create-email-modal {
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 620rpx;
- border-radius: 24rpx;
- opacity: 0;
- visibility: hidden;
- overflow: hidden;
- }
- .report-export-create-email-modal.report-export-create-modal--open {
- opacity: 1;
- visibility: visible;
- }
- .report-export-create-modal-title {
- padding: 36rpx 32rpx;
- font-size: 36rpx;
- color: #333;
- text-align: center;
- font-weight: 600;
- border-bottom: 1rpx solid #f0f0f0;
- position: relative;
- }
- .report-export-create-modal-close {
- position: absolute;
- right: 32rpx;
- top: 50%;
- transform: translateY(-50%);
- font-size: 44rpx;
- color: #999;
- line-height: 1;
- padding: 10rpx;
- }
- .report-export-create-modal-body {
- padding: 48rpx 40rpx 32rpx;
- }
- .report-export-error-text {
- font-size: 24rpx;
- color: #ff4d4f;
- margin-top: 12rpx;
- display: block;
- }
- .report-export-create-modal-footer {
- padding: 0 40rpx 48rpx;
- display: flex;
- justify-content: space-between;
- gap: 24rpx;
- }
- .report-export-create-modal-btn {
- height: 88rpx;
- line-height: 88rpx;
- border-radius: 44rpx;
- text-align: center;
- font-size: 30rpx;
- font-weight: 600;
- flex: 1;
- margin: 0;
- }
- .cancel-btn {
- background: #f5f7fa;
- color: #666;
- border: 1rpx solid #e4e7ed;
- }
- .confirm-btn {
- background: linear-gradient(135deg, #1890ff 0%, #096dd9 100%);
- color: #fff;
- box-shadow: 0 6rpx 16rpx rgba(24, 144, 255, 0.3);
- }
- </style>
|