第一次提交
This commit is contained in:
commit
ee804de040
|
@ -0,0 +1,133 @@
|
||||||
|
:root {
|
||||||
|
--van-loading-text-color: var(--van-text-color-2);
|
||||||
|
--van-loading-text-font-size: var(--van-font-size-md);
|
||||||
|
--van-loading-spinner-color: var(--van-gray-5);
|
||||||
|
--van-loading-spinner-size: 30px;
|
||||||
|
--van-loading-spinner-duration: 0.8s;
|
||||||
|
}
|
||||||
|
.van-loading {
|
||||||
|
position: relative;
|
||||||
|
color: var(--van-loading-spinner-color);
|
||||||
|
font-size: 0;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.van-loading__spinner {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
width: var(--van-loading-spinner-size);
|
||||||
|
max-width: 100%;
|
||||||
|
height: var(--van-loading-spinner-size);
|
||||||
|
max-height: 100%;
|
||||||
|
vertical-align: middle;
|
||||||
|
animation: van-rotate var(--van-loading-spinner-duration) linear infinite;
|
||||||
|
}
|
||||||
|
.van-loading__spinner--spinner {
|
||||||
|
animation-timing-function: steps(12);
|
||||||
|
}
|
||||||
|
.van-loading__spinner--circular {
|
||||||
|
animation-duration: 2s;
|
||||||
|
}
|
||||||
|
.van-loading__line {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.van-loading__line:before {
|
||||||
|
display: block;
|
||||||
|
width: 2px;
|
||||||
|
height: 25%;
|
||||||
|
margin: 0 auto;
|
||||||
|
background-color: currentColor;
|
||||||
|
border-radius: 40%;
|
||||||
|
content: " ";
|
||||||
|
}
|
||||||
|
.van-loading__circular {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.van-loading__circular circle {
|
||||||
|
animation: van-circular 1.5s ease-in-out infinite;
|
||||||
|
stroke: currentColor;
|
||||||
|
stroke-width: 3;
|
||||||
|
stroke-linecap: round;
|
||||||
|
}
|
||||||
|
.van-loading__text {
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: var(--van-padding-xs);
|
||||||
|
color: var(--van-loading-text-color);
|
||||||
|
font-size: var(--van-loading-text-font-size);
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.van-loading--vertical {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.van-loading--vertical .van-loading__text {
|
||||||
|
margin: var(--van-padding-xs) 0 0;
|
||||||
|
}
|
||||||
|
@keyframes van-circular {
|
||||||
|
0% {
|
||||||
|
stroke-dasharray: 1, 200;
|
||||||
|
stroke-dashoffset: 0;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
stroke-dasharray: 90, 150;
|
||||||
|
stroke-dashoffset: -40;
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
stroke-dasharray: 90, 150;
|
||||||
|
stroke-dashoffset: -120;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.van-loading__line--1 {
|
||||||
|
transform: rotate(30deg);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.van-loading__line--2 {
|
||||||
|
transform: rotate(60deg);
|
||||||
|
opacity: 0.9375;
|
||||||
|
}
|
||||||
|
.van-loading__line--3 {
|
||||||
|
transform: rotate(90deg);
|
||||||
|
opacity: 0.875;
|
||||||
|
}
|
||||||
|
.van-loading__line--4 {
|
||||||
|
transform: rotate(120deg);
|
||||||
|
opacity: 0.8125;
|
||||||
|
}
|
||||||
|
.van-loading__line--5 {
|
||||||
|
transform: rotate(150deg);
|
||||||
|
opacity: 0.75;
|
||||||
|
}
|
||||||
|
.van-loading__line--6 {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
opacity: 0.6875;
|
||||||
|
}
|
||||||
|
.van-loading__line--7 {
|
||||||
|
transform: rotate(210deg);
|
||||||
|
opacity: 0.625;
|
||||||
|
}
|
||||||
|
.van-loading__line--8 {
|
||||||
|
transform: rotate(240deg);
|
||||||
|
opacity: 0.5625;
|
||||||
|
}
|
||||||
|
.van-loading__line--9 {
|
||||||
|
transform: rotate(270deg);
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
.van-loading__line--10 {
|
||||||
|
transform: rotate(300deg);
|
||||||
|
opacity: 0.4375;
|
||||||
|
}
|
||||||
|
.van-loading__line--11 {
|
||||||
|
transform: rotate(330deg);
|
||||||
|
opacity: 0.375;
|
||||||
|
}
|
||||||
|
.van-loading__line--12 {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
opacity: 0.3125;
|
||||||
|
}
|
|
@ -0,0 +1,175 @@
|
||||||
|
:root {
|
||||||
|
--van-field-label-width: 6.2em;
|
||||||
|
--van-field-label-color: var(--van-text-color);
|
||||||
|
--van-field-label-margin-right: var(--van-padding-sm);
|
||||||
|
--van-field-input-text-color: var(--van-text-color);
|
||||||
|
--van-field-input-error-text-color: var(--van-danger-color);
|
||||||
|
--van-field-input-disabled-text-color: var(--van-text-color-3);
|
||||||
|
--van-field-placeholder-text-color: var(--van-text-color-3);
|
||||||
|
--van-field-icon-size: 18px;
|
||||||
|
--van-field-clear-icon-size: 18px;
|
||||||
|
--van-field-clear-icon-color: var(--van-gray-5);
|
||||||
|
--van-field-right-icon-color: var(--van-gray-6);
|
||||||
|
--van-field-error-message-color: var(--van-danger-color);
|
||||||
|
--van-field-error-message-font-size: 12px;
|
||||||
|
--van-field-text-area-min-height: 60px;
|
||||||
|
--van-field-word-limit-color: var(--van-gray-7);
|
||||||
|
--van-field-word-limit-font-size: var(--van-font-size-sm);
|
||||||
|
--van-field-word-limit-line-height: 16px;
|
||||||
|
--van-field-disabled-text-color: var(--van-text-color-3);
|
||||||
|
--van-field-required-mark-color: var(--van-red);
|
||||||
|
}
|
||||||
|
.van-field {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
.van-field__label {
|
||||||
|
flex: none;
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: var(--van-field-label-width);
|
||||||
|
margin-right: var(--van-field-label-margin-right);
|
||||||
|
color: var(--van-field-label-color);
|
||||||
|
text-align: left;
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
.van-field__label--center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.van-field__label--right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.van-field__label--top {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
text-align: left;
|
||||||
|
margin-bottom: var(--van-padding-base);
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
.van-field__label--required:before {
|
||||||
|
margin-right: 2px;
|
||||||
|
color: var(--van-field-required-mark-color);
|
||||||
|
content: "*";
|
||||||
|
}
|
||||||
|
.van-field--disabled .van-field__label {
|
||||||
|
color: var(--van-field-disabled-text-color);
|
||||||
|
}
|
||||||
|
.van-field__value {
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
.van-field__body {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.van-field__control {
|
||||||
|
display: block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: 100%;
|
||||||
|
min-width: 0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
color: var(--van-field-input-text-color);
|
||||||
|
line-height: inherit;
|
||||||
|
text-align: left;
|
||||||
|
background-color: transparent;
|
||||||
|
border: 0;
|
||||||
|
resize: none;
|
||||||
|
-webkit-user-select: auto;
|
||||||
|
user-select: auto;
|
||||||
|
}
|
||||||
|
.van-field__control::-webkit-input-placeholder {
|
||||||
|
color: var(--van-field-placeholder-text-color);
|
||||||
|
}
|
||||||
|
.van-field__control::placeholder {
|
||||||
|
color: var(--van-field-placeholder-text-color);
|
||||||
|
}
|
||||||
|
.van-field__control:read-only {
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
.van-field__control:disabled {
|
||||||
|
color: var(--van-field-input-disabled-text-color);
|
||||||
|
cursor: not-allowed;
|
||||||
|
opacity: 1;
|
||||||
|
-webkit-text-fill-color: var(--van-field-input-disabled-text-color);
|
||||||
|
}
|
||||||
|
.van-field__control--center {
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.van-field__control--right {
|
||||||
|
justify-content: flex-end;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.van-field__control--custom {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
min-height: var(--van-cell-line-height);
|
||||||
|
}
|
||||||
|
.van-field__control--error::-webkit-input-placeholder {
|
||||||
|
color: var(--van-field-input-error-text-color);
|
||||||
|
-webkit-text-fill-color: currentColor;
|
||||||
|
}
|
||||||
|
.van-field__control--error,
|
||||||
|
.van-field__control--error::placeholder {
|
||||||
|
color: var(--van-field-input-error-text-color);
|
||||||
|
-webkit-text-fill-color: currentColor;
|
||||||
|
}
|
||||||
|
.van-field__control--min-height {
|
||||||
|
min-height: var(--van-field-text-area-min-height);
|
||||||
|
}
|
||||||
|
.van-field__control[type="date"],
|
||||||
|
.van-field__control[type="time"],
|
||||||
|
.van-field__control[type="datetime-local"] {
|
||||||
|
min-height: var(--van-cell-line-height);
|
||||||
|
}
|
||||||
|
.van-field__control[type="search"] {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
.van-field__clear,
|
||||||
|
.van-field__icon,
|
||||||
|
.van-field__button,
|
||||||
|
.van-field__right-icon {
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
.van-field__clear,
|
||||||
|
.van-field__right-icon {
|
||||||
|
margin-right: calc(var(--van-padding-xs) * -1);
|
||||||
|
padding: 0 var(--van-padding-xs);
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
.van-field__clear {
|
||||||
|
color: var(--van-field-clear-icon-color);
|
||||||
|
font-size: var(--van-field-clear-icon-size);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.van-field__left-icon .van-icon,
|
||||||
|
.van-field__right-icon .van-icon {
|
||||||
|
display: block;
|
||||||
|
font-size: var(--van-field-icon-size);
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
.van-field__left-icon {
|
||||||
|
margin-right: var(--van-padding-base);
|
||||||
|
}
|
||||||
|
.van-field__right-icon {
|
||||||
|
color: var(--van-field-right-icon-color);
|
||||||
|
}
|
||||||
|
.van-field__button {
|
||||||
|
padding-left: var(--van-padding-xs);
|
||||||
|
}
|
||||||
|
.van-field__error-message {
|
||||||
|
color: var(--van-field-error-message-color);
|
||||||
|
font-size: var(--van-field-error-message-font-size);
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.van-field__error-message--center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.van-field__error-message--right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.van-field__word-limit {
|
||||||
|
margin-top: var(--van-padding-base);
|
||||||
|
color: var(--van-field-word-limit-color);
|
||||||
|
font-size: var(--van-field-word-limit-font-size);
|
||||||
|
line-height: var(--van-field-word-limit-line-height);
|
||||||
|
text-align: right;
|
||||||
|
}
|
|
@ -0,0 +1,116 @@
|
||||||
|
:root {
|
||||||
|
--van-popup-background: var(--van-background-2);
|
||||||
|
--van-popup-transition: transform var(--van-duration-base);
|
||||||
|
--van-popup-round-radius: 16px;
|
||||||
|
--van-popup-close-icon-size: 22px;
|
||||||
|
--van-popup-close-icon-color: var(--van-gray-5);
|
||||||
|
--van-popup-close-icon-margin: 16px;
|
||||||
|
--van-popup-close-icon-z-index: 1;
|
||||||
|
}
|
||||||
|
.van-overflow-hidden {
|
||||||
|
overflow: hidden !important;
|
||||||
|
}
|
||||||
|
.van-popup {
|
||||||
|
position: fixed;
|
||||||
|
max-height: 100%;
|
||||||
|
overflow-y: auto;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background: var(--van-popup-background);
|
||||||
|
transition: var(--van-popup-transition);
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
}
|
||||||
|
.van-popup--center {
|
||||||
|
top: 50%;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
width: -webkit-fit-content;
|
||||||
|
width: fit-content;
|
||||||
|
max-width: calc(100vw - var(--van-padding-md) * 2);
|
||||||
|
margin: 0 auto;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
}
|
||||||
|
.van-popup--center.van-popup--round {
|
||||||
|
border-radius: var(--van-popup-round-radius);
|
||||||
|
}
|
||||||
|
.van-popup--top {
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.van-popup--top.van-popup--round {
|
||||||
|
border-radius: 0 0 var(--van-popup-round-radius) var(--van-popup-round-radius);
|
||||||
|
}
|
||||||
|
.van-popup--right {
|
||||||
|
top: 50%;
|
||||||
|
right: 0;
|
||||||
|
transform: translate3d(0, -50%, 0);
|
||||||
|
}
|
||||||
|
.van-popup--right.van-popup--round {
|
||||||
|
border-radius: var(--van-popup-round-radius) 0 0 var(--van-popup-round-radius);
|
||||||
|
}
|
||||||
|
.van-popup--bottom {
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.van-popup--bottom.van-popup--round {
|
||||||
|
border-radius: var(--van-popup-round-radius) var(--van-popup-round-radius) 0 0;
|
||||||
|
}
|
||||||
|
.van-popup--left {
|
||||||
|
top: 50%;
|
||||||
|
left: 0;
|
||||||
|
transform: translate3d(0, -50%, 0);
|
||||||
|
}
|
||||||
|
.van-popup--left.van-popup--round {
|
||||||
|
border-radius: 0 var(--van-popup-round-radius) var(--van-popup-round-radius) 0;
|
||||||
|
}
|
||||||
|
.van-popup-slide-top-enter-active,
|
||||||
|
.van-popup-slide-left-enter-active,
|
||||||
|
.van-popup-slide-right-enter-active,
|
||||||
|
.van-popup-slide-bottom-enter-active {
|
||||||
|
transition-timing-function: var(--van-ease-out);
|
||||||
|
}
|
||||||
|
.van-popup-slide-top-leave-active,
|
||||||
|
.van-popup-slide-left-leave-active,
|
||||||
|
.van-popup-slide-right-leave-active,
|
||||||
|
.van-popup-slide-bottom-leave-active {
|
||||||
|
transition-timing-function: var(--van-ease-in);
|
||||||
|
}
|
||||||
|
.van-popup-slide-top-enter-from,
|
||||||
|
.van-popup-slide-top-leave-active {
|
||||||
|
transform: translate3d(0, -100%, 0);
|
||||||
|
}
|
||||||
|
.van-popup-slide-right-enter-from,
|
||||||
|
.van-popup-slide-right-leave-active {
|
||||||
|
transform: translate3d(100%, -50%, 0);
|
||||||
|
}
|
||||||
|
.van-popup-slide-bottom-enter-from,
|
||||||
|
.van-popup-slide-bottom-leave-active {
|
||||||
|
transform: translate3d(0, 100%, 0);
|
||||||
|
}
|
||||||
|
.van-popup-slide-left-enter-from,
|
||||||
|
.van-popup-slide-left-leave-active {
|
||||||
|
transform: translate3d(-100%, -50%, 0);
|
||||||
|
}
|
||||||
|
.van-popup__close-icon {
|
||||||
|
position: absolute;
|
||||||
|
z-index: var(--van-popup-close-icon-z-index);
|
||||||
|
color: var(--van-popup-close-icon-color);
|
||||||
|
font-size: var(--van-popup-close-icon-size);
|
||||||
|
}
|
||||||
|
.van-popup__close-icon--top-left {
|
||||||
|
top: var(--van-popup-close-icon-margin);
|
||||||
|
left: var(--van-popup-close-icon-margin);
|
||||||
|
}
|
||||||
|
.van-popup__close-icon--top-right {
|
||||||
|
top: var(--van-popup-close-icon-margin);
|
||||||
|
right: var(--van-popup-close-icon-margin);
|
||||||
|
}
|
||||||
|
.van-popup__close-icon--bottom-left {
|
||||||
|
bottom: var(--van-popup-close-icon-margin);
|
||||||
|
left: var(--van-popup-close-icon-margin);
|
||||||
|
}
|
||||||
|
.van-popup__close-icon--bottom-right {
|
||||||
|
right: var(--van-popup-close-icon-margin);
|
||||||
|
bottom: var(--van-popup-close-icon-margin);
|
||||||
|
}
|
|
@ -0,0 +1,40 @@
|
||||||
|
[data-v-88338670] .van-field__body {
|
||||||
|
height: 100%;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.text-gradient[data-v-88338670] {
|
||||||
|
background: linear-gradient(to right, #ff7e5f, #feb47b);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
|
.text-main[data-v-88338670] {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
.logo2[data-v-88338670] {
|
||||||
|
height: 50px;
|
||||||
|
}
|
||||||
|
.bg_form[data-v-88338670] {
|
||||||
|
background: #fff;
|
||||||
|
padding: 10px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.van-cell[data-v-88338670] {
|
||||||
|
background: inherit;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.van-button--round[data-v-88338670] {
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
.disblock[data-v-88338670] {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0 12px;
|
||||||
|
}
|
||||||
|
.disblock img[data-v-88338670] {
|
||||||
|
height: 30px;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
.borderR[data-v-88338670] {
|
||||||
|
border-right: 1px solid #aaa;
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
.calendar[data-v-9ae0d32f] {
|
||||||
|
width: 100%;
|
||||||
|
border-radius: 8px;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
header[data-v-9ae0d32f] {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
.nav-button[data-v-9ae0d32f] {
|
||||||
|
background-color: #007bff;
|
||||||
|
color: #fff;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
padding: 5px 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.nav-button[data-v-9ae0d32f]:hover {
|
||||||
|
background-color: #0056b3;
|
||||||
|
}
|
||||||
|
.month-year[data-v-9ae0d32f] {
|
||||||
|
font-weight: 700;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
.grid[data-v-9ae0d32f] {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(7, 1fr);
|
||||||
|
}
|
||||||
|
.date[data-v-9ae0d32f] {
|
||||||
|
transition: background-color 0.2s;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.date[data-v-9ae0d32f]:hover {
|
||||||
|
background-color: #e0f7fa;
|
||||||
|
}
|
||||||
|
.today[data-v-9ae0d32f] {
|
||||||
|
background-image: linear-gradient(180deg, #ffb84d, #fffbf7);
|
||||||
|
}
|
||||||
|
.bq[data-v-9ae0d32f] {
|
||||||
|
background: linear-gradient(180deg, #fff268, #faa600);
|
||||||
|
}
|
|
@ -0,0 +1,53 @@
|
||||||
|
.notice[data-v-86571ae9] {
|
||||||
|
background: #fff;
|
||||||
|
border-radius: 14px;
|
||||||
|
}
|
||||||
|
.bowhat[data-v-49647315] {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.bowhat .rightwhat[data-v-49647315] {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
.borders[data-v-49647315] {
|
||||||
|
border: 1px solid #fdab5a;
|
||||||
|
}
|
||||||
|
.mainpos[data-v-49647315] {
|
||||||
|
position: relative;
|
||||||
|
top: -10rem;
|
||||||
|
}
|
||||||
|
.mainpos .borderrdu[data-v-49647315] {
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
.disblocks[data-v-49647315] {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.textrights[data-v-49647315] {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.disblock[data-v-49647315] {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.btn1[data-v-49647315] {
|
||||||
|
background: url(/png/name-960f206d.png) no-repeat;
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
.btn2[data-v-49647315] {
|
||||||
|
background: url(/png/name-6087a1db.png) no-repeat;
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
.amount-wrapper[data-v-49647315] {
|
||||||
|
box-shadow: 0 0.08rem 0.06rem 0.03rem #ececec;
|
||||||
|
}
|
||||||
|
.topr[data-v-49647315] {
|
||||||
|
border-bottom-left-radius: 20px;
|
||||||
|
border-bottom-right-radius: 20px;
|
||||||
|
}
|
||||||
|
.borderR[data-v-49647315] {
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
.van-notice-bar[data-v-49647315] {
|
||||||
|
width: 70%;
|
||||||
|
left: 10%;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,51 @@
|
||||||
|
:root {
|
||||||
|
--van-image-placeholder-text-color: var(--van-text-color-2);
|
||||||
|
--van-image-placeholder-font-size: var(--van-font-size-md);
|
||||||
|
--van-image-placeholder-background: var(--van-background);
|
||||||
|
--van-image-loading-icon-size: 32px;
|
||||||
|
--van-image-loading-icon-color: var(--van-gray-4);
|
||||||
|
--van-image-error-icon-size: 32px;
|
||||||
|
--van-image-error-icon-color: var(--van-gray-4);
|
||||||
|
}
|
||||||
|
.van-image {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.van-image--round {
|
||||||
|
overflow: hidden;
|
||||||
|
border-radius: var(--van-radius-max);
|
||||||
|
}
|
||||||
|
.van-image--round .van-image__img {
|
||||||
|
border-radius: inherit;
|
||||||
|
}
|
||||||
|
.van-image--block {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.van-image__img,
|
||||||
|
.van-image__error,
|
||||||
|
.van-image__loading {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.van-image__error,
|
||||||
|
.van-image__loading {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: var(--van-image-placeholder-text-color);
|
||||||
|
font-size: var(--van-image-placeholder-font-size);
|
||||||
|
background: var(--van-image-placeholder-background);
|
||||||
|
}
|
||||||
|
.van-image__loading-icon {
|
||||||
|
color: var(--van-image-loading-icon-color);
|
||||||
|
font-size: var(--van-image-loading-icon-size);
|
||||||
|
}
|
||||||
|
.van-image__error-icon {
|
||||||
|
color: var(--van-image-error-icon-color);
|
||||||
|
font-size: var(--van-image-error-icon-size);
|
||||||
|
}
|
|
@ -0,0 +1,105 @@
|
||||||
|
:root {
|
||||||
|
--van-nav-bar-height: 46px;
|
||||||
|
--van-nav-bar-background: var(--van-background-2);
|
||||||
|
--van-nav-bar-arrow-size: 16px;
|
||||||
|
--van-nav-bar-icon-color: var(--van-primary-color);
|
||||||
|
--van-nav-bar-text-color: var(--van-primary-color);
|
||||||
|
--van-nav-bar-title-font-size: var(--van-font-size-lg);
|
||||||
|
--van-nav-bar-title-text-color: var(--van-text-color);
|
||||||
|
--van-nav-bar-z-index: 1;
|
||||||
|
--van-nav-bar-disabled-opacity: var(--van-disabled-opacity);
|
||||||
|
}
|
||||||
|
.van-nav-bar {
|
||||||
|
position: relative;
|
||||||
|
z-index: var(--van-nav-bar-z-index);
|
||||||
|
line-height: var(--van-line-height-lg);
|
||||||
|
text-align: center;
|
||||||
|
background: var(--van-nav-bar-background);
|
||||||
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.van-nav-bar--fixed {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.van-nav-bar--safe-area-inset-top {
|
||||||
|
padding-top: constant(safe-area-inset-top);
|
||||||
|
padding-top: env(safe-area-inset-top);
|
||||||
|
}
|
||||||
|
.van-nav-bar .van-icon {
|
||||||
|
color: var(--van-nav-bar-icon-color);
|
||||||
|
}
|
||||||
|
.van-nav-bar__content {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
height: var(--van-nav-bar-height);
|
||||||
|
}
|
||||||
|
.van-nav-bar__arrow {
|
||||||
|
margin-right: var(--van-padding-base);
|
||||||
|
font-size: var(--van-nav-bar-arrow-size);
|
||||||
|
}
|
||||||
|
.van-nav-bar__title {
|
||||||
|
max-width: 60%;
|
||||||
|
margin: 0 auto;
|
||||||
|
color: var(--van-nav-bar-title-text-color);
|
||||||
|
font-weight: var(--van-font-bold);
|
||||||
|
font-size: var(--van-nav-bar-title-font-size);
|
||||||
|
}
|
||||||
|
.van-nav-bar__left,
|
||||||
|
.van-nav-bar__right {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 var(--van-padding-md);
|
||||||
|
font-size: var(--van-font-size-md);
|
||||||
|
}
|
||||||
|
.van-nav-bar__left--disabled,
|
||||||
|
.van-nav-bar__right--disabled {
|
||||||
|
cursor: not-allowed;
|
||||||
|
opacity: var(--van-nav-bar-disabled-opacity);
|
||||||
|
}
|
||||||
|
.van-nav-bar__left {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
.van-nav-bar__right {
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
.van-nav-bar__text {
|
||||||
|
color: var(--van-nav-bar-text-color);
|
||||||
|
}
|
||||||
|
.wdis[data-v-21daf3cf] {
|
||||||
|
display: inline-block;
|
||||||
|
margin-top: 3rem;
|
||||||
|
margin-left: 1rem;
|
||||||
|
}
|
||||||
|
.listS[data-v-21daf3cf] {
|
||||||
|
position: absolute;
|
||||||
|
right: 3rem;
|
||||||
|
}
|
||||||
|
.listS div[data-v-21daf3cf] {
|
||||||
|
display: inline-block;
|
||||||
|
background: #5b56e8;
|
||||||
|
color: #fff;
|
||||||
|
height: 8rem;
|
||||||
|
line-height: 8rem;
|
||||||
|
}
|
||||||
|
[data-v-21daf3cf] .van-cell__title {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.linear[data-v-21daf3cf] {
|
||||||
|
background: linear-gradient(to bottom, #d6d4fe, #f1f1f1);
|
||||||
|
}
|
||||||
|
.bggr[data-v-21daf3cf] {
|
||||||
|
background: #d6d4fe;
|
||||||
|
}
|
||||||
|
.bgmain[data-v-21daf3cf] {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
|
@ -0,0 +1,268 @@
|
||||||
|
@charset "UTF-8";
|
||||||
|
:root {
|
||||||
|
--van-action-bar-background: var(--van-background-2);
|
||||||
|
--van-action-bar-height: 50px;
|
||||||
|
}
|
||||||
|
.van-action-bar {
|
||||||
|
position: fixed;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
box-sizing: content-box;
|
||||||
|
height: var(--van-action-bar-height);
|
||||||
|
background: var(--van-action-bar-background);
|
||||||
|
}
|
||||||
|
:root {
|
||||||
|
--van-action-bar-button-height: 40px;
|
||||||
|
--van-action-bar-button-warning-color: var(--van-gradient-orange);
|
||||||
|
--van-action-bar-button-danger-color: var(--van-gradient-red);
|
||||||
|
}
|
||||||
|
.van-action-bar-button {
|
||||||
|
flex: 1;
|
||||||
|
height: var(--van-action-bar-button-height);
|
||||||
|
font-weight: var(--van-font-bold);
|
||||||
|
font-size: var(--van-font-size-md);
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.van-action-bar-button--first {
|
||||||
|
margin-left: 5px;
|
||||||
|
border-top-left-radius: var(--van-radius-max);
|
||||||
|
border-bottom-left-radius: var(--van-radius-max);
|
||||||
|
}
|
||||||
|
.van-action-bar-button--last {
|
||||||
|
margin-right: 5px;
|
||||||
|
border-top-right-radius: var(--van-radius-max);
|
||||||
|
border-bottom-right-radius: var(--van-radius-max);
|
||||||
|
}
|
||||||
|
.van-action-bar-button--warning {
|
||||||
|
background: var(--van-action-bar-button-warning-color);
|
||||||
|
}
|
||||||
|
.van-action-bar-button--danger {
|
||||||
|
background: var(--van-action-bar-button-danger-color);
|
||||||
|
}
|
||||||
|
@media (max-width: 321px) {
|
||||||
|
.van-action-bar-button {
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
:root {
|
||||||
|
--van-dialog-width: 320px;
|
||||||
|
--van-dialog-small-screen-width: 90%;
|
||||||
|
--van-dialog-font-size: var(--van-font-size-lg);
|
||||||
|
--van-dialog-transition: var(--van-duration-base);
|
||||||
|
--van-dialog-radius: 16px;
|
||||||
|
--van-dialog-background: var(--van-background-2);
|
||||||
|
--van-dialog-header-font-weight: var(--van-font-bold);
|
||||||
|
--van-dialog-header-line-height: 24px;
|
||||||
|
--van-dialog-header-padding-top: 26px;
|
||||||
|
--van-dialog-header-isolated-padding: var(--van-padding-lg) 0;
|
||||||
|
--van-dialog-message-padding: var(--van-padding-lg);
|
||||||
|
--van-dialog-message-font-size: var(--van-font-size-md);
|
||||||
|
--van-dialog-message-line-height: var(--van-line-height-md);
|
||||||
|
--van-dialog-message-max-height: 60vh;
|
||||||
|
--van-dialog-has-title-message-text-color: var(--van-gray-7);
|
||||||
|
--van-dialog-has-title-message-padding-top: var(--van-padding-xs);
|
||||||
|
--van-dialog-button-height: 48px;
|
||||||
|
--van-dialog-round-button-height: 36px;
|
||||||
|
--van-dialog-confirm-button-text-color: var(--van-primary-color);
|
||||||
|
}
|
||||||
|
.van-dialog {
|
||||||
|
top: 45%;
|
||||||
|
width: var(--van-dialog-width);
|
||||||
|
overflow: hidden;
|
||||||
|
font-size: var(--van-dialog-font-size);
|
||||||
|
background: var(--van-dialog-background);
|
||||||
|
border-radius: var(--van-dialog-radius);
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
backface-visibility: hidden;
|
||||||
|
transition: var(--van-dialog-transition);
|
||||||
|
transition-property: transform, opacity;
|
||||||
|
}
|
||||||
|
@media (max-width: 321px) {
|
||||||
|
.van-dialog {
|
||||||
|
width: var(--van-dialog-small-screen-width);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.van-dialog__header {
|
||||||
|
color: var(--van-text-color);
|
||||||
|
padding-top: var(--van-dialog-header-padding-top);
|
||||||
|
font-weight: var(--van-dialog-header-font-weight);
|
||||||
|
line-height: var(--van-dialog-header-line-height);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.van-dialog__header--isolated {
|
||||||
|
padding: var(--van-dialog-header-isolated-padding);
|
||||||
|
}
|
||||||
|
.van-dialog__content--isolated {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
min-height: 104px;
|
||||||
|
}
|
||||||
|
.van-dialog__message {
|
||||||
|
color: var(--van-text-color);
|
||||||
|
flex: 1;
|
||||||
|
max-height: var(--van-dialog-message-max-height);
|
||||||
|
padding: 26px var(--van-dialog-message-padding);
|
||||||
|
overflow-y: auto;
|
||||||
|
font-size: var(--van-dialog-message-font-size);
|
||||||
|
line-height: var(--van-dialog-message-line-height);
|
||||||
|
white-space: pre-wrap;
|
||||||
|
text-align: center;
|
||||||
|
word-wrap: break-word;
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
}
|
||||||
|
.van-dialog__message--has-title {
|
||||||
|
padding-top: var(--van-dialog-has-title-message-padding-top);
|
||||||
|
color: var(--van-dialog-has-title-message-text-color);
|
||||||
|
}
|
||||||
|
.van-dialog__message--left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.van-dialog__message--right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.van-dialog__message--justify {
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
.van-dialog__footer {
|
||||||
|
display: flex;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.van-dialog__confirm,
|
||||||
|
.van-dialog__cancel {
|
||||||
|
flex: 1;
|
||||||
|
height: var(--van-dialog-button-height);
|
||||||
|
margin: 0;
|
||||||
|
border: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.van-dialog__confirm,
|
||||||
|
.van-dialog__confirm:active {
|
||||||
|
color: var(--van-dialog-confirm-button-text-color);
|
||||||
|
}
|
||||||
|
.van-dialog--round-button .van-dialog__footer {
|
||||||
|
position: relative;
|
||||||
|
height: auto;
|
||||||
|
padding: var(--van-padding-xs) var(--van-padding-lg) var(--van-padding-md);
|
||||||
|
}
|
||||||
|
.van-dialog--round-button .van-dialog__message {
|
||||||
|
padding-bottom: var(--van-padding-md);
|
||||||
|
color: var(--van-text-color);
|
||||||
|
}
|
||||||
|
.van-dialog--round-button .van-dialog__confirm,
|
||||||
|
.van-dialog--round-button .van-dialog__cancel {
|
||||||
|
height: var(--van-dialog-round-button-height);
|
||||||
|
}
|
||||||
|
.van-dialog--round-button .van-dialog__confirm {
|
||||||
|
color: var(--van-white);
|
||||||
|
}
|
||||||
|
.van-dialog--round-button .van-action-bar-button--first {
|
||||||
|
border-top-left-radius: var(--van-radius-max);
|
||||||
|
border-bottom-left-radius: var(--van-radius-max);
|
||||||
|
}
|
||||||
|
.van-dialog--round-button .van-action-bar-button--last {
|
||||||
|
border-top-right-radius: var(--van-radius-max);
|
||||||
|
border-bottom-right-radius: var(--van-radius-max);
|
||||||
|
}
|
||||||
|
.van-dialog-bounce-enter-from {
|
||||||
|
transform: translate3d(0, -50%, 0) scale(0.7);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
.van-dialog-bounce-leave-active {
|
||||||
|
transform: translate3d(0, -50%, 0) scale(0.9);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
.table-container[data-v-df311e97] {
|
||||||
|
overflow-x: auto;
|
||||||
|
max-width: 100%;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
table[data-v-df311e97] {
|
||||||
|
width: 100%;
|
||||||
|
border-collapse: separate;
|
||||||
|
border-spacing: 0;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
th[data-v-df311e97],
|
||||||
|
td[data-v-df311e97] {
|
||||||
|
border: 1px solid #ebeef5;
|
||||||
|
padding: 12px 8px;
|
||||||
|
text-align: center;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
.frozen[data-v-df311e97] {
|
||||||
|
position: sticky;
|
||||||
|
background-color: #fff;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
td[data-v-df311e97]:first-child,
|
||||||
|
th[data-v-df311e97]:first-child {
|
||||||
|
left: 0;
|
||||||
|
z-index: 3;
|
||||||
|
box-shadow: 3px 0 5px rgba(0, 0, 0, 0.06);
|
||||||
|
}
|
||||||
|
td[data-v-df311e97]:last-child,
|
||||||
|
th[data-v-df311e97]:last-child {
|
||||||
|
right: 0;
|
||||||
|
z-index: 3;
|
||||||
|
box-shadow: -3px 0 5px rgba(0, 0, 0, 0.06);
|
||||||
|
}
|
||||||
|
th[data-v-df311e97]:first-child,
|
||||||
|
th[data-v-df311e97]:last-child {
|
||||||
|
z-index: 4;
|
||||||
|
}
|
||||||
|
[data-v-df311e97] .van-popup .van-button__text {
|
||||||
|
font-size: 14px !important;
|
||||||
|
}
|
||||||
|
[data-v-df311e97] .van-popup .van-dialog__header {
|
||||||
|
padding-top: 13px;
|
||||||
|
}
|
||||||
|
[data-v-df311e97] .van-popup .van-cell__title {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
[data-v-df311e97] .van-popup .van-cell {
|
||||||
|
padding: 4px 0 16px;
|
||||||
|
font-size: 14px !important;
|
||||||
|
}
|
||||||
|
[data-v-df311e97] .van-popup .van-cell .van-cell__value {
|
||||||
|
padding: 10px;
|
||||||
|
background: #f3f3f3;
|
||||||
|
}
|
||||||
|
.whatbgvideo[data-v-9591394d] {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.whatbgvideonone[data-v-9591394d] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
[data-v-9591394d] .van-cell {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
.bordersd[data-v-9591394d] {
|
||||||
|
border: 1px solid #5b56e8;
|
||||||
|
padding: 3px;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
.whatbgs[data-v-9591394d] {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.whatbgs .whatbg[data-v-9591394d] {
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: #e8e7fe;
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
.whatbgs .whatbg .cens[data-v-9591394d] {
|
||||||
|
display: inline-block;
|
||||||
|
border: 1px solid #5b56e8;
|
||||||
|
}
|
||||||
|
.whatbgnone[data-v-9591394d] {
|
||||||
|
display: none;
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
:root {
|
||||||
|
--van-cell-group-background: var(--van-background-2);
|
||||||
|
--van-cell-group-title-color: var(--van-text-color-2);
|
||||||
|
--van-cell-group-title-padding: var(--van-padding-md) var(--van-padding-md);
|
||||||
|
--van-cell-group-title-font-size: var(--van-font-size-md);
|
||||||
|
--van-cell-group-title-line-height: 16px;
|
||||||
|
--van-cell-group-inset-padding: 0 var(--van-padding-md);
|
||||||
|
--van-cell-group-inset-radius: var(--van-radius-lg);
|
||||||
|
--van-cell-group-inset-title-padding: var(--van-padding-md)
|
||||||
|
var(--van-padding-md);
|
||||||
|
}
|
||||||
|
.van-cell-group {
|
||||||
|
background: var(--van-cell-group-background);
|
||||||
|
}
|
||||||
|
.van-cell-group--inset {
|
||||||
|
margin: var(--van-cell-group-inset-padding);
|
||||||
|
border-radius: var(--van-cell-group-inset-radius);
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.van-cell-group__title {
|
||||||
|
padding: var(--van-cell-group-title-padding);
|
||||||
|
color: var(--van-cell-group-title-color);
|
||||||
|
font-size: var(--van-cell-group-title-font-size);
|
||||||
|
line-height: var(--van-cell-group-title-line-height);
|
||||||
|
}
|
||||||
|
.van-cell-group__title--inset {
|
||||||
|
padding: var(--van-cell-group-inset-title-padding);
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
.turntable-wrapper[data-v-3959e504] {
|
||||||
|
background: url(/png/name-bf46b280.png);
|
||||||
|
background-size: 100% 100%;
|
||||||
|
}
|
||||||
|
.bottom_a[data-v-3959e504] {
|
||||||
|
position: relative;
|
||||||
|
z-index: 5;
|
||||||
|
}
|
||||||
|
.bottom_p[data-v-3959e504] {
|
||||||
|
position: relative;
|
||||||
|
top: -50px;
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
.bottom_p div[data-v-3959e504] {
|
||||||
|
position: relative;
|
||||||
|
top: -36px;
|
||||||
|
}
|
||||||
|
.mar[data-v-3959e504] {
|
||||||
|
margin-top: -58px;
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
.item[data-v-6360e5a5] {
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
.item[data-v-6360e5a5]:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
[data-v-63ce0f1e] .van-tab__text {
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
.contentx[data-v-63ce0f1e] {
|
||||||
|
text-indent: 2em;
|
||||||
|
}
|
||||||
|
.disblocks[data-v-63ce0f1e] {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
top: -5px;
|
||||||
|
left: 5px;
|
||||||
|
}
|
||||||
|
.list .buttonsitem[data-v-63ce0f1e] {
|
||||||
|
position: relative;
|
||||||
|
margin: 5px 0;
|
||||||
|
height: 22px;
|
||||||
|
}
|
||||||
|
.list .buttonsitem div[data-v-63ce0f1e] {
|
||||||
|
position: absolute;
|
||||||
|
top: 5px;
|
||||||
|
right: 0;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.buttons[data-v-63ce0f1e] {
|
||||||
|
text-align: right;
|
||||||
|
margin: 5px 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.buttons div[data-v-63ce0f1e] {
|
||||||
|
display: inline-block;
|
||||||
|
height: 25px;
|
||||||
|
line-height: 25px;
|
||||||
|
}
|
||||||
|
.dels[data-v-63ce0f1e] {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.dels div[data-v-63ce0f1e] {
|
||||||
|
display: inline-block;
|
||||||
|
height: 20px;
|
||||||
|
width: 25px;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 8px;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
.active[data-v-63ce0f1e] {
|
||||||
|
height: 14rem;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
.textright[data-v-c7c47025] {
|
||||||
|
text-align: right;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.textright .disblocks[data-v-c7c47025] {
|
||||||
|
display: inline-block;
|
||||||
|
width: 35px;
|
||||||
|
text-align: center;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.textright .disblocks span[data-v-c7c47025] {
|
||||||
|
position: absolute;
|
||||||
|
display: inline-block;
|
||||||
|
background: #e24f4f;
|
||||||
|
color: #fff;
|
||||||
|
top: -5px;
|
||||||
|
right: 0;
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
[data-v-f0b532c7] .van-cell{font-size:16px}
|
|
@ -0,0 +1,114 @@
|
||||||
|
:root {
|
||||||
|
--van-cell-font-size: var(--van-font-size-md);
|
||||||
|
--van-cell-line-height: 24px;
|
||||||
|
--van-cell-vertical-padding: 10px;
|
||||||
|
--van-cell-horizontal-padding: var(--van-padding-md);
|
||||||
|
--van-cell-text-color: var(--van-text-color);
|
||||||
|
--van-cell-background: var(--van-background-2);
|
||||||
|
--van-cell-border-color: var(--van-border-color);
|
||||||
|
--van-cell-active-color: var(--van-active-color);
|
||||||
|
--van-cell-required-color: var(--van-danger-color);
|
||||||
|
--van-cell-label-color: var(--van-text-color-2);
|
||||||
|
--van-cell-label-font-size: var(--van-font-size-sm);
|
||||||
|
--van-cell-label-line-height: var(--van-line-height-sm);
|
||||||
|
--van-cell-label-margin-top: var(--van-padding-base);
|
||||||
|
--van-cell-value-color: var(--van-text-color-2);
|
||||||
|
--van-cell-value-font-size: inherit;
|
||||||
|
--van-cell-icon-size: 16px;
|
||||||
|
--van-cell-right-icon-color: var(--van-gray-6);
|
||||||
|
--van-cell-large-vertical-padding: var(--van-padding-sm);
|
||||||
|
--van-cell-large-title-font-size: var(--van-font-size-lg);
|
||||||
|
--van-cell-large-label-font-size: var(--van-font-size-md);
|
||||||
|
--van-cell-large-value-font-size: inherit;
|
||||||
|
}
|
||||||
|
.van-cell {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: 100%;
|
||||||
|
padding: var(--van-cell-vertical-padding) var(--van-cell-horizontal-padding);
|
||||||
|
overflow: hidden;
|
||||||
|
color: var(--van-cell-text-color);
|
||||||
|
font-size: var(--van-cell-font-size);
|
||||||
|
line-height: var(--van-cell-line-height);
|
||||||
|
background: var(--van-cell-background);
|
||||||
|
}
|
||||||
|
.van-cell:after {
|
||||||
|
position: absolute;
|
||||||
|
box-sizing: border-box;
|
||||||
|
content: " ";
|
||||||
|
pointer-events: none;
|
||||||
|
right: var(--van-padding-md);
|
||||||
|
bottom: 0;
|
||||||
|
left: var(--van-padding-md);
|
||||||
|
border-bottom: 1px solid var(--van-cell-border-color);
|
||||||
|
transform: scaleY(0.5);
|
||||||
|
}
|
||||||
|
.van-cell:last-child:after,
|
||||||
|
.van-cell--borderless:after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.van-cell__label {
|
||||||
|
margin-top: var(--van-cell-label-margin-top);
|
||||||
|
color: var(--van-cell-label-color);
|
||||||
|
font-size: var(--van-cell-label-font-size);
|
||||||
|
line-height: var(--van-cell-label-line-height);
|
||||||
|
}
|
||||||
|
.van-cell__title,
|
||||||
|
.van-cell__value {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
.van-cell__value {
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
color: var(--van-cell-value-color);
|
||||||
|
font-size: var(--van-cell-value-font-size);
|
||||||
|
text-align: right;
|
||||||
|
vertical-align: middle;
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
.van-cell__left-icon,
|
||||||
|
.van-cell__right-icon {
|
||||||
|
height: var(--van-cell-line-height);
|
||||||
|
font-size: var(--van-cell-icon-size);
|
||||||
|
line-height: var(--van-cell-line-height);
|
||||||
|
}
|
||||||
|
.van-cell__left-icon {
|
||||||
|
margin-right: var(--van-padding-base);
|
||||||
|
}
|
||||||
|
.van-cell__right-icon {
|
||||||
|
margin-left: var(--van-padding-base);
|
||||||
|
color: var(--van-cell-right-icon-color);
|
||||||
|
}
|
||||||
|
.van-cell--clickable {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.van-cell--clickable:active {
|
||||||
|
background-color: var(--van-cell-active-color);
|
||||||
|
}
|
||||||
|
.van-cell--required {
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
.van-cell--required:before {
|
||||||
|
position: absolute;
|
||||||
|
left: var(--van-padding-xs);
|
||||||
|
color: var(--van-cell-required-color);
|
||||||
|
font-size: var(--van-cell-font-size);
|
||||||
|
content: "*";
|
||||||
|
}
|
||||||
|
.van-cell--center {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.van-cell--large {
|
||||||
|
padding-top: var(--van-cell-large-vertical-padding);
|
||||||
|
padding-bottom: var(--van-cell-large-vertical-padding);
|
||||||
|
}
|
||||||
|
.van-cell--large .van-cell__title {
|
||||||
|
font-size: var(--van-cell-large-title-font-size);
|
||||||
|
}
|
||||||
|
.van-cell--large .van-cell__label {
|
||||||
|
font-size: var(--van-cell-large-label-font-size);
|
||||||
|
}
|
||||||
|
.van-cell--large .van-cell__value {
|
||||||
|
font-size: var(--van-cell-large-value-font-size);
|
||||||
|
}
|
|
@ -0,0 +1,328 @@
|
||||||
|
:root {
|
||||||
|
--van-popover-arrow-size: 6px;
|
||||||
|
--van-popover-radius: var(--van-radius-lg);
|
||||||
|
--van-popover-action-width: 128px;
|
||||||
|
--van-popover-action-height: 44px;
|
||||||
|
--van-popover-action-font-size: var(--van-font-size-md);
|
||||||
|
--van-popover-action-line-height: var(--van-line-height-md);
|
||||||
|
--van-popover-action-icon-size: 20px;
|
||||||
|
--van-popover-horizontal-action-height: 34px;
|
||||||
|
--van-popover-horizontal-action-icon-size: 16px;
|
||||||
|
--van-popover-light-text-color: var(--van-text-color);
|
||||||
|
--van-popover-light-background: var(--van-background-2);
|
||||||
|
--van-popover-light-action-disabled-text-color: var(--van-text-color-3);
|
||||||
|
--van-popover-dark-text-color: var(--van-white);
|
||||||
|
--van-popover-dark-background: #4a4a4a;
|
||||||
|
--van-popover-dark-action-disabled-text-color: var(--van-text-color-2);
|
||||||
|
}
|
||||||
|
.van-popover {
|
||||||
|
position: absolute;
|
||||||
|
overflow: visible;
|
||||||
|
background-color: transparent;
|
||||||
|
transition: opacity 0.15s, transform 0.15s;
|
||||||
|
}
|
||||||
|
.van-popover__wrapper {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.van-popover__arrow {
|
||||||
|
position: absolute;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
border-color: transparent;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: var(--van-popover-arrow-size);
|
||||||
|
}
|
||||||
|
.van-popover__content {
|
||||||
|
overflow: hidden;
|
||||||
|
border-radius: var(--van-popover-radius);
|
||||||
|
}
|
||||||
|
.van-popover__content--horizontal {
|
||||||
|
display: flex;
|
||||||
|
width: -webkit-max-content;
|
||||||
|
width: max-content;
|
||||||
|
}
|
||||||
|
.van-popover__content--horizontal .van-popover__action {
|
||||||
|
flex: none;
|
||||||
|
width: auto;
|
||||||
|
height: var(--van-popover-horizontal-action-height);
|
||||||
|
padding: 0 var(--van-padding-sm);
|
||||||
|
}
|
||||||
|
.van-popover__content--horizontal .van-popover__action:last-child:after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.van-popover__content--horizontal .van-popover__action-icon {
|
||||||
|
margin-right: var(--van-padding-base);
|
||||||
|
font-size: var(--van-popover-horizontal-action-icon-size);
|
||||||
|
}
|
||||||
|
.van-popover__action {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: var(--van-popover-action-width);
|
||||||
|
height: var(--van-popover-action-height);
|
||||||
|
padding: 0 var(--van-padding-md);
|
||||||
|
font-size: var(--van-popover-action-font-size);
|
||||||
|
line-height: var(--van-line-height-md);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.van-popover__action:last-child .van-popover__action-text:after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.van-popover__action-text {
|
||||||
|
display: flex;
|
||||||
|
flex: 1;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.van-popover__action-icon {
|
||||||
|
margin-right: var(--van-padding-xs);
|
||||||
|
font-size: var(--van-popover-action-icon-size);
|
||||||
|
}
|
||||||
|
.van-popover__action--with-icon .van-popover__action-text {
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement^="top"] .van-popover__arrow {
|
||||||
|
bottom: 0;
|
||||||
|
border-top-color: currentColor;
|
||||||
|
border-bottom-width: 0;
|
||||||
|
margin-bottom: calc(var(--van-popover-arrow-size) * -1);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="top"] {
|
||||||
|
transform-origin: 50% 100%;
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="top"] .van-popover__arrow {
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="top-start"] {
|
||||||
|
transform-origin: 0 100%;
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="top-start"] .van-popover__arrow {
|
||||||
|
left: var(--van-padding-md);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="top-end"] {
|
||||||
|
transform-origin: 100% 100%;
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="top-end"] .van-popover__arrow {
|
||||||
|
right: var(--van-padding-md);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement^="left"] .van-popover__arrow {
|
||||||
|
right: 0;
|
||||||
|
border-right-width: 0;
|
||||||
|
border-left-color: currentColor;
|
||||||
|
margin-right: calc(var(--van-popover-arrow-size) * -1);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="left"] {
|
||||||
|
transform-origin: 100% 50%;
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="left"] .van-popover__arrow {
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="left-start"] {
|
||||||
|
transform-origin: 100% 0;
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="left-start"] .van-popover__arrow {
|
||||||
|
top: var(--van-padding-md);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="left-end"] {
|
||||||
|
transform-origin: 100% 100%;
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="left-end"] .van-popover__arrow {
|
||||||
|
bottom: var(--van-padding-md);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement^="right"] .van-popover__arrow {
|
||||||
|
left: 0;
|
||||||
|
border-right-color: currentColor;
|
||||||
|
border-left-width: 0;
|
||||||
|
margin-left: calc(var(--van-popover-arrow-size) * -1);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="right"] {
|
||||||
|
transform-origin: 0 50%;
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="right"] .van-popover__arrow {
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="right-start"] {
|
||||||
|
transform-origin: 0 0;
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="right-start"] .van-popover__arrow {
|
||||||
|
top: var(--van-padding-md);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="right-end"] {
|
||||||
|
transform-origin: 0 100%;
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="right-end"] .van-popover__arrow {
|
||||||
|
bottom: var(--van-padding-md);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement^="bottom"] .van-popover__arrow {
|
||||||
|
top: 0;
|
||||||
|
border-top-width: 0;
|
||||||
|
border-bottom-color: currentColor;
|
||||||
|
margin-top: calc(var(--van-popover-arrow-size) * -1);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="bottom"] {
|
||||||
|
transform-origin: 50% 0;
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="bottom"] .van-popover__arrow {
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="bottom-start"] {
|
||||||
|
transform-origin: 0 0;
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="bottom-start"] .van-popover__arrow {
|
||||||
|
left: var(--van-padding-md);
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="bottom-end"] {
|
||||||
|
transform-origin: 100% 0;
|
||||||
|
}
|
||||||
|
.van-popover[data-popper-placement="bottom-end"] .van-popover__arrow {
|
||||||
|
right: var(--van-padding-md);
|
||||||
|
}
|
||||||
|
.van-popover--light {
|
||||||
|
color: var(--van-popover-light-text-color);
|
||||||
|
}
|
||||||
|
.van-popover--light .van-popover__content {
|
||||||
|
background: var(--van-popover-light-background);
|
||||||
|
box-shadow: 0 2px 12px rgba(50, 50, 51, 0.12);
|
||||||
|
}
|
||||||
|
.van-popover--light .van-popover__arrow {
|
||||||
|
color: var(--van-popover-light-background);
|
||||||
|
}
|
||||||
|
.van-popover--light .van-popover__action:active {
|
||||||
|
background-color: var(--van-active-color);
|
||||||
|
}
|
||||||
|
.van-popover--light .van-popover__action--disabled {
|
||||||
|
color: var(--van-popover-light-action-disabled-text-color);
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
.van-popover--light .van-popover__action--disabled:active {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
.van-popover--dark {
|
||||||
|
color: var(--van-popover-dark-text-color);
|
||||||
|
}
|
||||||
|
.van-popover--dark .van-popover__content {
|
||||||
|
background: var(--van-popover-dark-background);
|
||||||
|
}
|
||||||
|
.van-popover--dark .van-popover__arrow {
|
||||||
|
color: var(--van-popover-dark-background);
|
||||||
|
}
|
||||||
|
.van-popover--dark .van-popover__action:active {
|
||||||
|
background-color: rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
.van-popover--dark .van-popover__action--disabled {
|
||||||
|
color: var(--van-popover-dark-action-disabled-text-color);
|
||||||
|
}
|
||||||
|
.van-popover--dark .van-popover__action--disabled:active {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
.van-popover--dark .van-popover__action-text:after {
|
||||||
|
border-color: var(--van-gray-7);
|
||||||
|
}
|
||||||
|
.van-popover-zoom-enter-from,
|
||||||
|
.van-popover-zoom-leave-active {
|
||||||
|
transform: scale(0.8);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
.van-popover-zoom-enter-active {
|
||||||
|
transition-timing-function: var(--van-ease-out);
|
||||||
|
}
|
||||||
|
.van-popover-zoom-leave-active {
|
||||||
|
transition-timing-function: var(--van-ease-in);
|
||||||
|
}
|
||||||
|
.lang-title[data-v-65795db4] {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
background: #fff;
|
||||||
|
border: 1px solid #d0ede9;
|
||||||
|
padding: 5px;
|
||||||
|
border-radius: 4px;
|
||||||
|
gap: 5px;
|
||||||
|
}
|
||||||
|
.lang-title .global[data-v-65795db4] {
|
||||||
|
width: 12px;
|
||||||
|
height: 12px;
|
||||||
|
}
|
||||||
|
.lang-title .arrow[data-v-65795db4] {
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 700;
|
||||||
|
color: #2354e6;
|
||||||
|
}
|
||||||
|
.bg[data-v-65795db4] {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
z-index: 1;
|
||||||
|
background: transparent;
|
||||||
|
background-color: rgba(0, 0, 0, 0.3);
|
||||||
|
}
|
||||||
|
.languages-list[data-v-65795db4] {
|
||||||
|
position: absolute;
|
||||||
|
right: 30px;
|
||||||
|
z-index: 5;
|
||||||
|
}
|
||||||
|
.languages-list .lang-items[data-v-65795db4] {
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: 120px;
|
||||||
|
height: 37px;
|
||||||
|
padding: 0 8px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.languages-list .lang-items[data-v-65795db4]:last-child {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
.languages-list .lang-items[data-v-65795db4]:first-child {
|
||||||
|
border-radius: 3px 3px 0 0;
|
||||||
|
}
|
||||||
|
.languages-list .lang-items[data-v-65795db4]:last-child {
|
||||||
|
border-radius: 0 0 3px 3px;
|
||||||
|
}
|
||||||
|
.languages-list .lang-items .checked[data-v-65795db4] {
|
||||||
|
width: 14px;
|
||||||
|
height: 14px;
|
||||||
|
color: #2354e6;
|
||||||
|
position: absolute;
|
||||||
|
right: 5px;
|
||||||
|
}
|
||||||
|
.languages-list .lang-items p[data-v-65795db4] {
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 17px;
|
||||||
|
letter-spacing: -0.391711235px;
|
||||||
|
}
|
||||||
|
.CommonProblem-padding[data-v-65795db4] {
|
||||||
|
padding-left: 25px;
|
||||||
|
padding-right: 25px;
|
||||||
|
}
|
||||||
|
.lang-padding[data-v-65795db4] {
|
||||||
|
padding: 15px 18px 22px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
border-bottom: 1px solid #ccc;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
color: #ccc;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.lang-flex[data-v-65795db4] {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
.country[data-v-65795db4] {
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
border-radius: 50%;
|
||||||
|
overflow: hidden;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
.country img[data-v-65795db4] {
|
||||||
|
height: 100%;
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
.tabbar-wrapper[data-v-425207e6] {
|
||||||
|
max-width: 460px;
|
||||||
|
height: 56px;
|
||||||
|
background: #fff;
|
||||||
|
box-shadow: 0.1rem 0.1rem 0.1rem 0.1rem #f2f2f2;
|
||||||
|
}
|
||||||
|
.pos[data-v-425207e6] {
|
||||||
|
position: relative;
|
||||||
|
top: -2.5rem;
|
||||||
|
z-index: 5;
|
||||||
|
width: 25rem;
|
||||||
|
}
|
||||||
|
.pos .tabs[data-v-425207e6] {
|
||||||
|
display: inline-block;
|
||||||
|
width: 10rem;
|
||||||
|
height: 10rem;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
.pos .tabs img[data-v-425207e6] {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
input[data-v-a74356d2]::placeholder {
|
||||||
|
color: #c8c9cc;
|
||||||
|
}
|
||||||
|
ul[data-v-a74356d2],
|
||||||
|
li[data-v-a74356d2] {
|
||||||
|
list-style: inside;
|
||||||
|
}
|
||||||
|
.borde[data-v-a74356d2] {
|
||||||
|
border: none;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
|
}
|
||||||
|
.textright[data-v-a74356d2] {
|
||||||
|
text-align: right;
|
||||||
|
}
|
|
@ -0,0 +1,63 @@
|
||||||
|
:root {
|
||||||
|
--van-swipe-indicator-size: 6px;
|
||||||
|
--van-swipe-indicator-margin: var(--van-padding-sm);
|
||||||
|
--van-swipe-indicator-active-opacity: 1;
|
||||||
|
--van-swipe-indicator-inactive-opacity: 0.3;
|
||||||
|
--van-swipe-indicator-active-background: var(--van-primary-color);
|
||||||
|
--van-swipe-indicator-inactive-background: var(--van-border-color);
|
||||||
|
}
|
||||||
|
.van-swipe {
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
transform: translateZ(0);
|
||||||
|
cursor: -webkit-grab;
|
||||||
|
cursor: grab;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.van-swipe__track {
|
||||||
|
display: flex;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.van-swipe__track--vertical {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.van-swipe__indicators {
|
||||||
|
position: absolute;
|
||||||
|
bottom: var(--van-swipe-indicator-margin);
|
||||||
|
left: 50%;
|
||||||
|
display: flex;
|
||||||
|
transform: translate(-50%);
|
||||||
|
}
|
||||||
|
.van-swipe__indicators--vertical {
|
||||||
|
top: 50%;
|
||||||
|
bottom: auto;
|
||||||
|
left: var(--van-swipe-indicator-margin);
|
||||||
|
flex-direction: column;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
}
|
||||||
|
.van-swipe__indicators--vertical .van-swipe__indicator:not(:last-child) {
|
||||||
|
margin-bottom: var(--van-swipe-indicator-size);
|
||||||
|
}
|
||||||
|
.van-swipe__indicator {
|
||||||
|
width: var(--van-swipe-indicator-size);
|
||||||
|
height: var(--van-swipe-indicator-size);
|
||||||
|
background-color: var(--van-swipe-indicator-inactive-background);
|
||||||
|
border-radius: 100%;
|
||||||
|
opacity: var(--van-swipe-indicator-inactive-opacity);
|
||||||
|
transition: opacity var(--van-duration-fast),
|
||||||
|
background-color var(--van-duration-fast);
|
||||||
|
}
|
||||||
|
.van-swipe__indicator:not(:last-child) {
|
||||||
|
margin-right: var(--van-swipe-indicator-size);
|
||||||
|
}
|
||||||
|
.van-swipe__indicator--active {
|
||||||
|
background-color: var(--van-swipe-indicator-active-background);
|
||||||
|
opacity: var(--van-swipe-indicator-active-opacity);
|
||||||
|
}
|
||||||
|
.van-swipe-item {
|
||||||
|
position: relative;
|
||||||
|
flex-shrink: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
|
@ -0,0 +1,144 @@
|
||||||
|
:root {
|
||||||
|
--van-picker-group-background: var(--van-background-2);
|
||||||
|
}
|
||||||
|
.van-picker-group {
|
||||||
|
background: var(--van-picker-group-background);
|
||||||
|
}
|
||||||
|
.van-picker-group__tabs {
|
||||||
|
margin-top: var(--van-padding-base);
|
||||||
|
}
|
||||||
|
.van-picker-group__tab-title {
|
||||||
|
margin-right: 16px;
|
||||||
|
}
|
||||||
|
:root {
|
||||||
|
--van-picker-background: var(--van-background-2);
|
||||||
|
--van-picker-toolbar-height: 44px;
|
||||||
|
--van-picker-title-font-size: var(--van-font-size-lg);
|
||||||
|
--van-picker-title-line-height: var(--van-line-height-md);
|
||||||
|
--van-picker-action-padding: 0 var(--van-padding-md);
|
||||||
|
--van-picker-action-font-size: var(--van-font-size-md);
|
||||||
|
--van-picker-confirm-action-color: var(--van-primary-color);
|
||||||
|
--van-picker-cancel-action-color: var(--van-text-color-2);
|
||||||
|
--van-picker-option-font-size: var(--van-font-size-lg);
|
||||||
|
--van-picker-option-padding: 0 var(--van-padding-base);
|
||||||
|
--van-picker-option-text-color: var(--van-text-color);
|
||||||
|
--van-picker-option-disabled-opacity: 0.3;
|
||||||
|
--van-picker-loading-icon-color: var(--van-primary-color);
|
||||||
|
--van-picker-loading-mask-color: rgba(255, 255, 255, 0.9);
|
||||||
|
--van-picker-mask-color: linear-gradient(
|
||||||
|
180deg,
|
||||||
|
rgba(255, 255, 255, 0.9),
|
||||||
|
rgba(255, 255, 255, 0.4)
|
||||||
|
),
|
||||||
|
linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
|
||||||
|
}
|
||||||
|
.van-theme-dark {
|
||||||
|
--van-picker-loading-mask-color: rgba(0, 0, 0, 0.6);
|
||||||
|
--van-picker-mask-color: linear-gradient(
|
||||||
|
180deg,
|
||||||
|
rgba(0, 0, 0, 0.6),
|
||||||
|
rgba(0, 0, 0, 0.1)
|
||||||
|
),
|
||||||
|
linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
|
||||||
|
}
|
||||||
|
.van-picker {
|
||||||
|
position: relative;
|
||||||
|
background: var(--van-picker-background);
|
||||||
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.van-picker__toolbar {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
height: var(--van-picker-toolbar-height);
|
||||||
|
}
|
||||||
|
.van-picker__cancel,
|
||||||
|
.van-picker__confirm {
|
||||||
|
height: 100%;
|
||||||
|
padding: var(--van-picker-action-padding);
|
||||||
|
font-size: var(--van-picker-action-font-size);
|
||||||
|
background-color: transparent;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
.van-picker__confirm {
|
||||||
|
color: var(--van-picker-confirm-action-color);
|
||||||
|
}
|
||||||
|
.van-picker__cancel {
|
||||||
|
color: var(--van-picker-cancel-action-color);
|
||||||
|
}
|
||||||
|
.van-picker__title {
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
color: var(--van-text-color);
|
||||||
|
max-width: 50%;
|
||||||
|
font-weight: var(--van-font-bold);
|
||||||
|
font-size: var(--van-picker-title-font-size);
|
||||||
|
line-height: var(--van-picker-title-line-height);
|
||||||
|
text-align: center;
|
||||||
|
transform: translate(-50%);
|
||||||
|
}
|
||||||
|
.van-picker__columns {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
cursor: -webkit-grab;
|
||||||
|
cursor: grab;
|
||||||
|
}
|
||||||
|
.van-picker__loading {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 3;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: var(--van-picker-loading-icon-color);
|
||||||
|
background: var(--van-picker-loading-mask-color);
|
||||||
|
}
|
||||||
|
.van-picker__frame {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
right: var(--van-padding-md);
|
||||||
|
left: var(--van-padding-md);
|
||||||
|
z-index: 2;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.van-picker__mask {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-image: var(--van-picker-mask-color);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: top, bottom;
|
||||||
|
transform: translateZ(0);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.van-picker-column {
|
||||||
|
flex: 1;
|
||||||
|
overflow: hidden;
|
||||||
|
font-size: var(--van-picker-option-font-size);
|
||||||
|
}
|
||||||
|
.van-picker-column__wrapper {
|
||||||
|
transition-timing-function: cubic-bezier(0.23, 1, 0.68, 1);
|
||||||
|
}
|
||||||
|
.van-picker-column__item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: var(--van-picker-option-padding);
|
||||||
|
color: var(--van-picker-option-text-color);
|
||||||
|
}
|
||||||
|
.van-picker-column__item--disabled {
|
||||||
|
cursor: not-allowed;
|
||||||
|
opacity: var(--van-picker-option-disabled-opacity);
|
||||||
|
}
|
||||||
|
[data-v-fa6bffe7] .van-tab__text {
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
.wrapper[data-v-84485da4] {
|
||||||
|
background: linear-gradient(
|
||||||
|
180deg,
|
||||||
|
rgb(255, 244, 235) 0%,
|
||||||
|
rgb(255, 255, 255) 30%
|
||||||
|
);
|
||||||
|
}
|
||||||
|
[data-v-84485da4] .van-field__body {
|
||||||
|
height: 100%;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.logo2[data-v-84485da4] {
|
||||||
|
height: 50px;
|
||||||
|
}
|
||||||
|
.bg_form[data-v-84485da4] {
|
||||||
|
background: #fff;
|
||||||
|
padding: 10px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.van-cell[data-v-84485da4] {
|
||||||
|
background: inherit;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.van-button--round[data-v-84485da4] {
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
.text-gradient[data-v-84485da4] {
|
||||||
|
background: linear-gradient(to right, #ff7e5f, #feb47b);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
|
.borderR[data-v-84485da4] {
|
||||||
|
border-right: 1px solid #aaa;
|
||||||
|
}
|
|
@ -0,0 +1,154 @@
|
||||||
|
:root {
|
||||||
|
--van-sticky-z-index: 99;
|
||||||
|
}
|
||||||
|
.van-sticky--fixed {
|
||||||
|
position: fixed;
|
||||||
|
z-index: var(--van-sticky-z-index);
|
||||||
|
}
|
||||||
|
:root {
|
||||||
|
--van-tab-text-color: var(--van-gray-7);
|
||||||
|
--van-tab-active-text-color: var(--van-text-color);
|
||||||
|
--van-tab-disabled-text-color: var(--van-text-color-3);
|
||||||
|
--van-tab-font-size: var(--van-font-size-md);
|
||||||
|
--van-tab-line-height: var(--van-line-height-md);
|
||||||
|
--van-tabs-default-color: var(--van-primary-color);
|
||||||
|
--van-tabs-line-height: 44px;
|
||||||
|
--van-tabs-card-height: 30px;
|
||||||
|
--van-tabs-nav-background: var(--van-background-2);
|
||||||
|
--van-tabs-bottom-bar-width: 40px;
|
||||||
|
--van-tabs-bottom-bar-height: 3px;
|
||||||
|
--van-tabs-bottom-bar-color: var(--van-primary-color);
|
||||||
|
}
|
||||||
|
.van-tab {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
flex: 1;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 0 var(--van-padding-base);
|
||||||
|
color: var(--van-tab-text-color);
|
||||||
|
font-size: var(--van-tab-font-size);
|
||||||
|
line-height: var(--van-tab-line-height);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.van-tab--active {
|
||||||
|
color: var(--van-tab-active-text-color);
|
||||||
|
font-weight: var(--van-font-bold);
|
||||||
|
}
|
||||||
|
.van-tab--disabled {
|
||||||
|
color: var(--van-tab-disabled-text-color);
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
.van-tab--grow {
|
||||||
|
flex: 1 0 auto;
|
||||||
|
padding: 0 var(--van-padding-sm);
|
||||||
|
}
|
||||||
|
.van-tab--shrink {
|
||||||
|
flex: none;
|
||||||
|
padding: 0 var(--van-padding-xs);
|
||||||
|
}
|
||||||
|
.van-tab--card {
|
||||||
|
color: var(--van-tabs-default-color);
|
||||||
|
border-right: var(--van-border-width) solid var(--van-tabs-default-color);
|
||||||
|
}
|
||||||
|
.van-tab--card:last-child {
|
||||||
|
border-right: none;
|
||||||
|
}
|
||||||
|
.van-tab--card.van-tab--active {
|
||||||
|
color: var(--van-white);
|
||||||
|
background-color: var(--van-tabs-default-color);
|
||||||
|
}
|
||||||
|
.van-tab--card--disabled {
|
||||||
|
color: var(--van-tab-disabled-text-color);
|
||||||
|
}
|
||||||
|
.van-tab__text--ellipsis {
|
||||||
|
display: -webkit-box;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-line-clamp: 1;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
}
|
||||||
|
.van-tabs {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.van-tabs__wrap {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.van-tabs__wrap--page-top {
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
.van-tabs__wrap--content-bottom {
|
||||||
|
top: auto;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
.van-tabs__nav {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
background: var(--van-tabs-nav-background);
|
||||||
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.van-tabs__nav--complete {
|
||||||
|
overflow-x: auto;
|
||||||
|
overflow-y: hidden;
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
}
|
||||||
|
.van-tabs__nav--complete::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.van-tabs__nav--line {
|
||||||
|
box-sizing: content-box;
|
||||||
|
height: 100%;
|
||||||
|
padding-bottom: 15px;
|
||||||
|
}
|
||||||
|
.van-tabs__nav--line.van-tabs__nav--shrink,
|
||||||
|
.van-tabs__nav--line.van-tabs__nav--complete {
|
||||||
|
padding-right: var(--van-padding-xs);
|
||||||
|
padding-left: var(--van-padding-xs);
|
||||||
|
}
|
||||||
|
.van-tabs__nav--card {
|
||||||
|
box-sizing: border-box;
|
||||||
|
height: var(--van-tabs-card-height);
|
||||||
|
margin: 0 var(--van-padding-md);
|
||||||
|
border: var(--van-border-width) solid var(--van-tabs-default-color);
|
||||||
|
border-radius: var(--van-border-radius-sm);
|
||||||
|
}
|
||||||
|
.van-tabs__nav--card.van-tabs__nav--shrink {
|
||||||
|
display: inline-flex;
|
||||||
|
}
|
||||||
|
.van-tabs__line {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 15px;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1;
|
||||||
|
width: var(--van-tabs-bottom-bar-width);
|
||||||
|
height: var(--van-tabs-bottom-bar-height);
|
||||||
|
background: var(--van-tabs-bottom-bar-color);
|
||||||
|
border-radius: var(--van-tabs-bottom-bar-height);
|
||||||
|
}
|
||||||
|
.van-tabs__track {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
will-change: left;
|
||||||
|
}
|
||||||
|
.van-tabs__content--animated {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.van-tabs--line .van-tabs__wrap {
|
||||||
|
height: var(--van-tabs-line-height);
|
||||||
|
}
|
||||||
|
.van-tabs--card > .van-tabs__wrap {
|
||||||
|
height: var(--van-tabs-card-height);
|
||||||
|
}
|
||||||
|
.van-tab__panel,
|
||||||
|
.van-tab__panel-wrapper {
|
||||||
|
flex-shrink: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.van-tab__panel-wrapper--inactive {
|
||||||
|
height: 0;
|
||||||
|
overflow: visible;
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
#fangsongs[data-v-4fca9848]{font-size:13px}
|
|
@ -0,0 +1,108 @@
|
||||||
|
:root {
|
||||||
|
--van-count-down-text-color: var(--van-text-color);
|
||||||
|
--van-count-down-font-size: var(--van-font-size-md);
|
||||||
|
--van-count-down-line-height: var(--van-line-height-md);
|
||||||
|
}
|
||||||
|
.van-count-down {
|
||||||
|
color: var(--van-count-down-text-color);
|
||||||
|
font-size: var(--van-count-down-font-size);
|
||||||
|
line-height: var(--van-count-down-line-height);
|
||||||
|
}
|
||||||
|
:root {
|
||||||
|
--van-slider-active-background: var(--van-primary-color);
|
||||||
|
--van-slider-inactive-background: var(--van-gray-3);
|
||||||
|
--van-slider-disabled-opacity: var(--van-disabled-opacity);
|
||||||
|
--van-slider-bar-height: 2px;
|
||||||
|
--van-slider-button-width: 24px;
|
||||||
|
--van-slider-button-height: 24px;
|
||||||
|
--van-slider-button-radius: 50%;
|
||||||
|
--van-slider-button-background: var(--van-white);
|
||||||
|
--van-slider-button-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
|
||||||
|
}
|
||||||
|
.van-theme-dark {
|
||||||
|
--van-slider-inactive-background: var(--van-background-3);
|
||||||
|
}
|
||||||
|
.van-slider {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
height: var(--van-slider-bar-height);
|
||||||
|
background: var(--van-slider-inactive-background);
|
||||||
|
border-radius: var(--van-radius-max);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.van-slider:before {
|
||||||
|
position: absolute;
|
||||||
|
top: calc(var(--van-padding-xs) * -1);
|
||||||
|
right: 0;
|
||||||
|
bottom: calc(var(--van-padding-xs) * -1);
|
||||||
|
left: 0;
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
.van-slider__bar {
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: var(--van-slider-active-background);
|
||||||
|
border-radius: inherit;
|
||||||
|
transition: all var(--van-duration-fast);
|
||||||
|
}
|
||||||
|
.van-slider__button {
|
||||||
|
width: var(--van-slider-button-width);
|
||||||
|
height: var(--van-slider-button-height);
|
||||||
|
background: var(--van-slider-button-background);
|
||||||
|
border-radius: var(--van-slider-button-radius);
|
||||||
|
box-shadow: var(--van-slider-button-shadow);
|
||||||
|
}
|
||||||
|
.van-slider__button-wrapper {
|
||||||
|
position: absolute;
|
||||||
|
cursor: -webkit-grab;
|
||||||
|
cursor: grab;
|
||||||
|
top: 50%;
|
||||||
|
}
|
||||||
|
.van-slider__button-wrapper--right {
|
||||||
|
right: 0;
|
||||||
|
transform: translate3d(50%, -50%, 0);
|
||||||
|
}
|
||||||
|
.van-slider__button-wrapper--left {
|
||||||
|
left: 0;
|
||||||
|
transform: translate3d(-50%, -50%, 0);
|
||||||
|
}
|
||||||
|
.van-slider--disabled {
|
||||||
|
cursor: not-allowed;
|
||||||
|
opacity: var(--van-slider-disabled-opacity);
|
||||||
|
}
|
||||||
|
.van-slider--disabled .van-slider__button-wrapper {
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
.van-slider--vertical {
|
||||||
|
display: inline-block;
|
||||||
|
width: var(--van-slider-bar-height);
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.van-slider--vertical .van-slider__button-wrapper--right {
|
||||||
|
top: auto;
|
||||||
|
right: 50%;
|
||||||
|
bottom: 0;
|
||||||
|
transform: translate3d(50%, 50%, 0);
|
||||||
|
}
|
||||||
|
.van-slider--vertical .van-slider__button-wrapper--left {
|
||||||
|
top: 0;
|
||||||
|
right: 50%;
|
||||||
|
left: auto;
|
||||||
|
transform: translate3d(50%, -50%, 0);
|
||||||
|
}
|
||||||
|
.van-slider--vertical:before {
|
||||||
|
top: 0;
|
||||||
|
right: calc(var(--van-padding-xs) * -1);
|
||||||
|
bottom: 0;
|
||||||
|
left: calc(var(--van-padding-xs) * -1);
|
||||||
|
}
|
||||||
|
.vipbg[data-v-f578f73d] {
|
||||||
|
background-image: url(/png/name-5d0d62fa.png);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
}
|
||||||
|
.titles[data-v-f578f73d] {
|
||||||
|
background: #999;
|
||||||
|
color: #fff;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,200 @@
|
||||||
|
:root {
|
||||||
|
--van-button-mini-height: 24px;
|
||||||
|
--van-button-mini-padding: 0 var(--van-padding-base);
|
||||||
|
--van-button-mini-font-size: var(--van-font-size-xs);
|
||||||
|
--van-button-small-height: 32px;
|
||||||
|
--van-button-small-padding: 0 var(--van-padding-xs);
|
||||||
|
--van-button-small-font-size: var(--van-font-size-sm);
|
||||||
|
--van-button-normal-padding: 0 15px;
|
||||||
|
--van-button-normal-font-size: var(--van-font-size-md);
|
||||||
|
--van-button-large-height: 50px;
|
||||||
|
--van-button-default-height: 44px;
|
||||||
|
--van-button-default-line-height: 1.2;
|
||||||
|
--van-button-default-font-size: var(--van-font-size-lg);
|
||||||
|
--van-button-default-color: var(--van-text-color);
|
||||||
|
--van-button-default-background: var(--van-background-2);
|
||||||
|
--van-button-default-border-color: var(--van-gray-4);
|
||||||
|
--van-button-primary-color: var(--van-white);
|
||||||
|
--van-button-primary-background: var(--van-primary-color);
|
||||||
|
--van-button-primary-border-color: var(--van-primary-color);
|
||||||
|
--van-button-success-color: var(--van-white);
|
||||||
|
--van-button-success-background: var(--van-success-color);
|
||||||
|
--van-button-success-border-color: var(--van-success-color);
|
||||||
|
--van-button-danger-color: var(--van-white);
|
||||||
|
--van-button-danger-background: var(--van-danger-color);
|
||||||
|
--van-button-danger-border-color: var(--van-danger-color);
|
||||||
|
--van-button-warning-color: var(--van-white);
|
||||||
|
--van-button-warning-background: var(--van-warning-color);
|
||||||
|
--van-button-warning-border-color: var(--van-warning-color);
|
||||||
|
--van-button-border-width: var(--van-border-width);
|
||||||
|
--van-button-radius: var(--van-radius-md);
|
||||||
|
--van-button-round-radius: var(--van-radius-max);
|
||||||
|
--van-button-plain-background: var(--van-white);
|
||||||
|
--van-button-disabled-opacity: var(--van-disabled-opacity);
|
||||||
|
--van-button-icon-size: 1.2em;
|
||||||
|
--van-button-loading-icon-size: 20px;
|
||||||
|
}
|
||||||
|
.van-theme-dark {
|
||||||
|
--van-button-plain-background: transparent;
|
||||||
|
}
|
||||||
|
.van-button {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
height: var(--van-button-default-height);
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-size: var(--van-button-default-font-size);
|
||||||
|
line-height: var(--van-button-default-line-height);
|
||||||
|
text-align: center;
|
||||||
|
border-radius: var(--van-button-radius);
|
||||||
|
cursor: pointer;
|
||||||
|
transition: opacity var(--van-duration-fast);
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-webkit-font-smoothing: auto;
|
||||||
|
}
|
||||||
|
.van-button:before {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: var(--van-black);
|
||||||
|
border: inherit;
|
||||||
|
border-color: var(--van-black);
|
||||||
|
border-radius: inherit;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
opacity: 0;
|
||||||
|
content: " ";
|
||||||
|
}
|
||||||
|
.van-button:active:before {
|
||||||
|
opacity: 0.1;
|
||||||
|
}
|
||||||
|
.van-button--loading:before,
|
||||||
|
.van-button--disabled:before {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.van-button--default {
|
||||||
|
color: var(--van-button-default-color);
|
||||||
|
background: var(--van-button-default-background);
|
||||||
|
border: var(--van-button-border-width) solid
|
||||||
|
var(--van-button-default-border-color);
|
||||||
|
}
|
||||||
|
.van-button--primary {
|
||||||
|
color: var(--van-button-primary-color);
|
||||||
|
background: var(--van-button-primary-background);
|
||||||
|
border: var(--van-button-border-width) solid
|
||||||
|
var(--van-button-primary-border-color);
|
||||||
|
}
|
||||||
|
.van-button--success {
|
||||||
|
color: var(--van-button-success-color);
|
||||||
|
background: var(--van-button-success-background);
|
||||||
|
border: var(--van-button-border-width) solid
|
||||||
|
var(--van-button-success-border-color);
|
||||||
|
}
|
||||||
|
.van-button--danger {
|
||||||
|
color: var(--van-button-danger-color);
|
||||||
|
background: var(--van-button-danger-background);
|
||||||
|
border: var(--van-button-border-width) solid
|
||||||
|
var(--van-button-danger-border-color);
|
||||||
|
}
|
||||||
|
.van-button--warning {
|
||||||
|
color: var(--van-button-warning-color);
|
||||||
|
background: var(--van-button-warning-background);
|
||||||
|
border: var(--van-button-border-width) solid
|
||||||
|
var(--van-button-warning-border-color);
|
||||||
|
}
|
||||||
|
.van-button--plain {
|
||||||
|
background: var(--van-button-plain-background);
|
||||||
|
}
|
||||||
|
.van-button--plain.van-button--primary {
|
||||||
|
color: var(--van-button-primary-background);
|
||||||
|
}
|
||||||
|
.van-button--plain.van-button--success {
|
||||||
|
color: var(--van-button-success-background);
|
||||||
|
}
|
||||||
|
.van-button--plain.van-button--danger {
|
||||||
|
color: var(--van-button-danger-background);
|
||||||
|
}
|
||||||
|
.van-button--plain.van-button--warning {
|
||||||
|
color: var(--van-button-warning-background);
|
||||||
|
}
|
||||||
|
.van-button--large {
|
||||||
|
width: 100%;
|
||||||
|
height: var(--van-button-large-height);
|
||||||
|
}
|
||||||
|
.van-button--normal {
|
||||||
|
padding: var(--van-button-normal-padding);
|
||||||
|
font-size: var(--van-button-normal-font-size);
|
||||||
|
}
|
||||||
|
.van-button--small {
|
||||||
|
height: var(--van-button-small-height);
|
||||||
|
padding: var(--van-button-small-padding);
|
||||||
|
font-size: var(--van-button-small-font-size);
|
||||||
|
}
|
||||||
|
.van-button__loading {
|
||||||
|
color: inherit;
|
||||||
|
font-size: inherit;
|
||||||
|
}
|
||||||
|
.van-button__loading .van-loading__spinner {
|
||||||
|
color: currentColor;
|
||||||
|
width: var(--van-button-loading-icon-size);
|
||||||
|
height: var(--van-button-loading-icon-size);
|
||||||
|
}
|
||||||
|
.van-button--mini {
|
||||||
|
height: var(--van-button-mini-height);
|
||||||
|
padding: var(--van-button-mini-padding);
|
||||||
|
font-size: var(--van-button-mini-font-size);
|
||||||
|
}
|
||||||
|
.van-button--mini + .van-button--mini {
|
||||||
|
margin-left: var(--van-padding-base);
|
||||||
|
}
|
||||||
|
.van-button--block {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.van-button--disabled {
|
||||||
|
cursor: not-allowed;
|
||||||
|
opacity: var(--van-button-disabled-opacity);
|
||||||
|
}
|
||||||
|
.van-button--loading {
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
.van-button--round {
|
||||||
|
border-radius: var(--van-button-round-radius);
|
||||||
|
}
|
||||||
|
.van-button--square {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
.van-button__content {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.van-button__content:before {
|
||||||
|
content: " ";
|
||||||
|
}
|
||||||
|
.van-button__icon {
|
||||||
|
font-size: var(--van-button-icon-size);
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
.van-button__icon + .van-button__text,
|
||||||
|
.van-button__loading + .van-button__text,
|
||||||
|
.van-button__text + .van-button__icon,
|
||||||
|
.van-button__text + .van-button__loading {
|
||||||
|
margin-left: var(--van-padding-base);
|
||||||
|
}
|
||||||
|
.van-button--hairline {
|
||||||
|
border-width: 0;
|
||||||
|
}
|
||||||
|
.van-button--hairline:after {
|
||||||
|
border-color: inherit;
|
||||||
|
border-radius: calc(var(--van-button-radius) * 2);
|
||||||
|
}
|
||||||
|
.van-button--hairline.van-button--round:after {
|
||||||
|
border-radius: var(--van-button-round-radius);
|
||||||
|
}
|
||||||
|
.van-button--hairline.van-button--square:after {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
|
@ -0,0 +1,89 @@
|
||||||
|
.van-checkbox-group--horizontal {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
:root {
|
||||||
|
--van-checkbox-size: 20px;
|
||||||
|
--van-checkbox-border-color: var(--van-gray-5);
|
||||||
|
--van-checkbox-duration: var(--van-duration-fast);
|
||||||
|
--van-checkbox-label-margin: var(--van-padding-xs);
|
||||||
|
--van-checkbox-label-color: var(--van-text-color);
|
||||||
|
--van-checkbox-checked-icon-color: var(--van-primary-color);
|
||||||
|
--van-checkbox-disabled-icon-color: var(--van-gray-5);
|
||||||
|
--van-checkbox-disabled-label-color: var(--van-text-color-3);
|
||||||
|
--van-checkbox-disabled-background: var(--van-border-color);
|
||||||
|
}
|
||||||
|
.van-checkbox {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
overflow: hidden;
|
||||||
|
cursor: pointer;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.van-checkbox--disabled {
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
.van-checkbox--label-disabled {
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
.van-checkbox--horizontal {
|
||||||
|
margin-right: var(--van-padding-sm);
|
||||||
|
}
|
||||||
|
.van-checkbox__icon {
|
||||||
|
flex: none;
|
||||||
|
height: 1em;
|
||||||
|
font-size: var(--van-checkbox-size);
|
||||||
|
line-height: 1em;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.van-checkbox__icon .van-icon {
|
||||||
|
display: block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: 1.25em;
|
||||||
|
height: 1.25em;
|
||||||
|
color: transparent;
|
||||||
|
font-size: 0.8em;
|
||||||
|
line-height: 1.25;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid var(--van-checkbox-border-color);
|
||||||
|
transition-duration: var(--van-checkbox-duration);
|
||||||
|
transition-property: color, border-color, background-color;
|
||||||
|
}
|
||||||
|
.van-checkbox__icon--round .van-icon {
|
||||||
|
border-radius: 100%;
|
||||||
|
}
|
||||||
|
.van-checkbox__icon--indeterminate .van-icon {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: var(--van-white);
|
||||||
|
border-color: var(--van-checkbox-checked-icon-color);
|
||||||
|
background-color: var(--van-checkbox-checked-icon-color);
|
||||||
|
}
|
||||||
|
.van-checkbox__icon--checked .van-icon {
|
||||||
|
color: var(--van-white);
|
||||||
|
background-color: var(--van-checkbox-checked-icon-color);
|
||||||
|
border-color: var(--van-checkbox-checked-icon-color);
|
||||||
|
}
|
||||||
|
.van-checkbox__icon--disabled {
|
||||||
|
cursor: not-allowed;
|
||||||
|
}
|
||||||
|
.van-checkbox__icon--disabled .van-icon {
|
||||||
|
background-color: var(--van-checkbox-disabled-background);
|
||||||
|
border-color: var(--van-checkbox-disabled-icon-color);
|
||||||
|
}
|
||||||
|
.van-checkbox__icon--disabled.van-checkbox__icon--checked .van-icon {
|
||||||
|
color: var(--van-checkbox-disabled-icon-color);
|
||||||
|
}
|
||||||
|
.van-checkbox__label {
|
||||||
|
margin-left: var(--van-checkbox-label-margin);
|
||||||
|
color: var(--van-checkbox-label-color);
|
||||||
|
line-height: var(--van-checkbox-size);
|
||||||
|
}
|
||||||
|
.van-checkbox__label--left {
|
||||||
|
margin: 0 var(--van-checkbox-label-margin) 0 0;
|
||||||
|
}
|
||||||
|
.van-checkbox__label--disabled {
|
||||||
|
color: var(--van-checkbox-disabled-label-color);
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
:root {
|
||||||
|
--van-overlay-z-index: 1;
|
||||||
|
--van-overlay-background: rgba(0, 0, 0, 0.7);
|
||||||
|
}
|
||||||
|
.van-overlay {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: var(--van-overlay-z-index);
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: var(--van-overlay-background);
|
||||||
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
.yq-wrapper[data-v-4dd7a0bb] {
|
||||||
|
background: linear-gradient(180deg, #fefdf8, #f1d7bc 99%);
|
||||||
|
}
|
||||||
|
.linear[data-v-4dd7a0bb] {
|
||||||
|
background: linear-gradient(to bottom, #d6d4fe, #f1f1f1);
|
||||||
|
}
|
||||||
|
.borderL[data-v-4dd7a0bb] {
|
||||||
|
display: inline-block;
|
||||||
|
border-left: 2px solid #5b56e8;
|
||||||
|
padding-left: 5px;
|
||||||
|
}
|
|
@ -0,0 +1,143 @@
|
||||||
|
:root {
|
||||||
|
--van-list-text-color: var(--van-text-color-2);
|
||||||
|
--van-list-text-font-size: var(--van-font-size-md);
|
||||||
|
--van-list-text-line-height: 50px;
|
||||||
|
--van-list-loading-icon-size: 16px;
|
||||||
|
}
|
||||||
|
.van-list__loading,
|
||||||
|
.van-list__finished-text,
|
||||||
|
.van-list__error-text {
|
||||||
|
color: var(--van-list-text-color);
|
||||||
|
font-size: var(--van-list-text-font-size);
|
||||||
|
line-height: var(--van-list-text-line-height);
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.van-list__placeholder {
|
||||||
|
height: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.van-list__loading-icon .van-loading__spinner {
|
||||||
|
width: var(--van-list-loading-icon-size);
|
||||||
|
height: var(--van-list-loading-icon-size);
|
||||||
|
}
|
||||||
|
:root {
|
||||||
|
--van-dropdown-menu-height: 48px;
|
||||||
|
--van-dropdown-menu-background: var(--van-background-2);
|
||||||
|
--van-dropdown-menu-shadow: 0 2px 12px rgba(100, 101, 102, 0.12);
|
||||||
|
--van-dropdown-menu-title-font-size: 15px;
|
||||||
|
--van-dropdown-menu-title-text-color: var(--van-text-color);
|
||||||
|
--van-dropdown-menu-title-active-text-color: var(--van-primary-color);
|
||||||
|
--van-dropdown-menu-title-disabled-text-color: var(--van-text-color-2);
|
||||||
|
--van-dropdown-menu-title-padding: 0 var(--van-padding-xs);
|
||||||
|
--van-dropdown-menu-title-line-height: var(--van-line-height-lg);
|
||||||
|
--van-dropdown-menu-option-active-color: var(--van-primary-color);
|
||||||
|
--van-dropdown-menu-content-max-height: 80%;
|
||||||
|
}
|
||||||
|
.van-dropdown-menu {
|
||||||
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
.van-dropdown-menu__bar {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
height: var(--van-dropdown-menu-height);
|
||||||
|
background: var(--van-dropdown-menu-background);
|
||||||
|
box-shadow: var(--van-dropdown-menu-shadow);
|
||||||
|
}
|
||||||
|
.van-dropdown-menu__bar--opened {
|
||||||
|
z-index: calc(var(--van-dropdown-item-z-index) + 1);
|
||||||
|
}
|
||||||
|
.van-dropdown-menu__bar--scrollable {
|
||||||
|
padding-left: var(--van-padding-base);
|
||||||
|
padding-right: var(--van-padding-xs);
|
||||||
|
overflow-x: auto;
|
||||||
|
overflow-y: hidden;
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
}
|
||||||
|
.van-dropdown-menu__bar--scrollable::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.van-dropdown-menu__item {
|
||||||
|
display: flex;
|
||||||
|
flex: 1;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
.van-dropdown-menu__item--disabled .van-dropdown-menu__title {
|
||||||
|
color: var(--van-dropdown-menu-title-disabled-text-color);
|
||||||
|
}
|
||||||
|
.van-dropdown-menu__item--grow {
|
||||||
|
flex: 1 0 auto;
|
||||||
|
padding-left: var(--van-padding-base);
|
||||||
|
padding-right: var(--van-padding-sm);
|
||||||
|
}
|
||||||
|
.van-dropdown-menu__title {
|
||||||
|
position: relative;
|
||||||
|
box-sizing: border-box;
|
||||||
|
max-width: 100%;
|
||||||
|
padding: var(--van-dropdown-menu-title-padding);
|
||||||
|
color: var(--van-dropdown-menu-title-text-color);
|
||||||
|
font-size: var(--van-dropdown-menu-title-font-size);
|
||||||
|
line-height: var(--van-dropdown-menu-title-line-height);
|
||||||
|
}
|
||||||
|
.van-dropdown-menu__title:after {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
right: -4px;
|
||||||
|
margin-top: -5px;
|
||||||
|
border: 3px solid;
|
||||||
|
border-color: transparent transparent var(--van-gray-4) var(--van-gray-4);
|
||||||
|
transform: rotate(-45deg);
|
||||||
|
opacity: 0.8;
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
.van-dropdown-menu__title--active {
|
||||||
|
color: var(--van-dropdown-menu-title-active-text-color);
|
||||||
|
}
|
||||||
|
.van-dropdown-menu__title--active:after {
|
||||||
|
border-color: transparent transparent currentColor currentColor;
|
||||||
|
}
|
||||||
|
.van-dropdown-menu__title--down:after {
|
||||||
|
margin-top: -1px;
|
||||||
|
transform: rotate(135deg);
|
||||||
|
}
|
||||||
|
:root {
|
||||||
|
--van-dropdown-item-z-index: 10;
|
||||||
|
}
|
||||||
|
.van-dropdown-item {
|
||||||
|
position: fixed;
|
||||||
|
right: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: var(--van-dropdown-item-z-index);
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.van-dropdown-item__icon {
|
||||||
|
display: block;
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
.van-dropdown-item__option {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.van-dropdown-item__option--active,
|
||||||
|
.van-dropdown-item__option--active .van-dropdown-item__icon {
|
||||||
|
color: var(--van-dropdown-menu-option-active-color);
|
||||||
|
}
|
||||||
|
.van-dropdown-item--up {
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
.van-dropdown-item--down {
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
.van-dropdown-item__content {
|
||||||
|
position: absolute;
|
||||||
|
max-height: var(--van-dropdown-menu-content-max-height);
|
||||||
|
}
|
||||||
|
.left-active[data-v-303919d0] {
|
||||||
|
border: 1px solid #5b56e8;
|
||||||
|
background: #edecff;
|
||||||
|
color: #5b56e8;
|
||||||
|
}
|
||||||
|
.van-ellipsis[data-v-303919d0] {
|
||||||
|
font-size: 12px !important;
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
|
@ -0,0 +1,2 @@
|
||||||
|
const e = "/mp4/name-9e85ff4d.mp4";
|
||||||
|
export { e as _ };
|
|
@ -0,0 +1,25 @@
|
||||||
|
import { bv as s } from "./index-476be0bb.js";
|
||||||
|
const a = () => s.get("sign/info"),
|
||||||
|
t = () => s.get("sign/sign"),
|
||||||
|
e = () => s.get("userbank/get_bank"),
|
||||||
|
i = () => s.get("pay/lists"),
|
||||||
|
o = (a) => s.post("userbank/add", a),
|
||||||
|
r = (a) => s.post("withdraw/submit", a),
|
||||||
|
g = (a) => s.post("user/active_user", a),
|
||||||
|
n = () => s.get("user/team_info"),
|
||||||
|
p = (a) => s.post("money_log/lists", a),
|
||||||
|
d = (a) => s.post("withdraw/withdrawCashList", a),
|
||||||
|
u = (a) => s.post("user/uppassword", a);
|
||||||
|
export {
|
||||||
|
n as a,
|
||||||
|
u as b,
|
||||||
|
a as c,
|
||||||
|
t as d,
|
||||||
|
p as e,
|
||||||
|
d as f,
|
||||||
|
i as g,
|
||||||
|
e as h,
|
||||||
|
r as i,
|
||||||
|
o as j,
|
||||||
|
g as s,
|
||||||
|
};
|
|
@ -0,0 +1,582 @@
|
||||||
|
import { ba as t, bb as e } from "./index-476be0bb.js";
|
||||||
|
var n = { exports: {} };
|
||||||
|
/*!
|
||||||
|
* clipboard.js v2.0.11
|
||||||
|
* https://clipboardjs.com/
|
||||||
|
*
|
||||||
|
* Licensed MIT © Zeno Rocha
|
||||||
|
*/ const r = e(
|
||||||
|
(n.exports = (function () {
|
||||||
|
return (function () {
|
||||||
|
var t = {
|
||||||
|
686: function (t, e, n) {
|
||||||
|
n.d(e, {
|
||||||
|
default: function () {
|
||||||
|
return w;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
var r = n(279),
|
||||||
|
o = n.n(r),
|
||||||
|
i = n(370),
|
||||||
|
u = n.n(i),
|
||||||
|
c = n(817),
|
||||||
|
a = n.n(c);
|
||||||
|
function f(t) {
|
||||||
|
try {
|
||||||
|
return document.execCommand(t);
|
||||||
|
} catch (e) {
|
||||||
|
return !1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var l = function (t) {
|
||||||
|
var e = a()(t);
|
||||||
|
return f("cut"), e;
|
||||||
|
},
|
||||||
|
s = function (t, e) {
|
||||||
|
var n = (function (t) {
|
||||||
|
var e =
|
||||||
|
"rtl" === document.documentElement.getAttribute("dir"),
|
||||||
|
n = document.createElement("textarea");
|
||||||
|
(n.style.fontSize = "12pt"),
|
||||||
|
(n.style.border = "0"),
|
||||||
|
(n.style.padding = "0"),
|
||||||
|
(n.style.margin = "0"),
|
||||||
|
(n.style.position = "absolute"),
|
||||||
|
(n.style[e ? "right" : "left"] = "-9999px");
|
||||||
|
var r =
|
||||||
|
window.pageYOffset || document.documentElement.scrollTop;
|
||||||
|
return (
|
||||||
|
(n.style.top = "".concat(r, "px")),
|
||||||
|
n.setAttribute("readonly", ""),
|
||||||
|
(n.value = t),
|
||||||
|
n
|
||||||
|
);
|
||||||
|
})(t);
|
||||||
|
e.container.appendChild(n);
|
||||||
|
var r = a()(n);
|
||||||
|
return f("copy"), n.remove(), r;
|
||||||
|
},
|
||||||
|
p = function (t) {
|
||||||
|
var e =
|
||||||
|
arguments.length > 1 && void 0 !== arguments[1]
|
||||||
|
? arguments[1]
|
||||||
|
: { container: document.body },
|
||||||
|
n = "";
|
||||||
|
return (
|
||||||
|
"string" == typeof t
|
||||||
|
? (n = s(t, e))
|
||||||
|
: t instanceof HTMLInputElement &&
|
||||||
|
!["text", "search", "url", "tel", "password"].includes(
|
||||||
|
null == t ? void 0 : t.type
|
||||||
|
)
|
||||||
|
? (n = s(t.value, e))
|
||||||
|
: ((n = a()(t)), f("copy")),
|
||||||
|
n
|
||||||
|
);
|
||||||
|
};
|
||||||
|
function d(t) {
|
||||||
|
return (d =
|
||||||
|
"function" == typeof Symbol &&
|
||||||
|
"symbol" == typeof Symbol.iterator
|
||||||
|
? function (t) {
|
||||||
|
return typeof t;
|
||||||
|
}
|
||||||
|
: function (t) {
|
||||||
|
return t &&
|
||||||
|
"function" == typeof Symbol &&
|
||||||
|
t.constructor === Symbol &&
|
||||||
|
t !== Symbol.prototype
|
||||||
|
? "symbol"
|
||||||
|
: typeof t;
|
||||||
|
})(t);
|
||||||
|
}
|
||||||
|
var y = function () {
|
||||||
|
var t =
|
||||||
|
arguments.length > 0 && void 0 !== arguments[0]
|
||||||
|
? arguments[0]
|
||||||
|
: {},
|
||||||
|
e = t.action,
|
||||||
|
n = void 0 === e ? "copy" : e,
|
||||||
|
r = t.container,
|
||||||
|
o = t.target,
|
||||||
|
i = t.text;
|
||||||
|
if ("copy" !== n && "cut" !== n)
|
||||||
|
throw new Error(
|
||||||
|
'Invalid "action" value, use either "copy" or "cut"'
|
||||||
|
);
|
||||||
|
if (void 0 !== o) {
|
||||||
|
if (!o || "object" !== d(o) || 1 !== o.nodeType)
|
||||||
|
throw new Error(
|
||||||
|
'Invalid "target" value, use a valid Element'
|
||||||
|
);
|
||||||
|
if ("copy" === n && o.hasAttribute("disabled"))
|
||||||
|
throw new Error(
|
||||||
|
'Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute'
|
||||||
|
);
|
||||||
|
if (
|
||||||
|
"cut" === n &&
|
||||||
|
(o.hasAttribute("readonly") || o.hasAttribute("disabled"))
|
||||||
|
)
|
||||||
|
throw new Error(
|
||||||
|
'Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return i
|
||||||
|
? p(i, { container: r })
|
||||||
|
: o
|
||||||
|
? "cut" === n
|
||||||
|
? l(o)
|
||||||
|
: p(o, { container: r })
|
||||||
|
: void 0;
|
||||||
|
};
|
||||||
|
function v(t) {
|
||||||
|
return (v =
|
||||||
|
"function" == typeof Symbol &&
|
||||||
|
"symbol" == typeof Symbol.iterator
|
||||||
|
? function (t) {
|
||||||
|
return typeof t;
|
||||||
|
}
|
||||||
|
: function (t) {
|
||||||
|
return t &&
|
||||||
|
"function" == typeof Symbol &&
|
||||||
|
t.constructor === Symbol &&
|
||||||
|
t !== Symbol.prototype
|
||||||
|
? "symbol"
|
||||||
|
: typeof t;
|
||||||
|
})(t);
|
||||||
|
}
|
||||||
|
function h(t, e) {
|
||||||
|
for (var n = 0; n < e.length; n++) {
|
||||||
|
var r = e[n];
|
||||||
|
(r.enumerable = r.enumerable || !1),
|
||||||
|
(r.configurable = !0),
|
||||||
|
"value" in r && (r.writable = !0),
|
||||||
|
Object.defineProperty(t, r.key, r);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function m(t, e) {
|
||||||
|
return (m =
|
||||||
|
Object.setPrototypeOf ||
|
||||||
|
function (t, e) {
|
||||||
|
return (t.__proto__ = e), t;
|
||||||
|
})(t, e);
|
||||||
|
}
|
||||||
|
function b(t) {
|
||||||
|
var e = (function () {
|
||||||
|
if ("undefined" == typeof Reflect || !Reflect.construct)
|
||||||
|
return !1;
|
||||||
|
if (Reflect.construct.sham) return !1;
|
||||||
|
if ("function" == typeof Proxy) return !0;
|
||||||
|
try {
|
||||||
|
return (
|
||||||
|
Date.prototype.toString.call(
|
||||||
|
Reflect.construct(Date, [], function () {})
|
||||||
|
),
|
||||||
|
!0
|
||||||
|
);
|
||||||
|
} catch (t) {
|
||||||
|
return !1;
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
return function () {
|
||||||
|
var n,
|
||||||
|
r,
|
||||||
|
o,
|
||||||
|
i = g(t);
|
||||||
|
if (e) {
|
||||||
|
var u = g(this).constructor;
|
||||||
|
n = Reflect.construct(i, arguments, u);
|
||||||
|
} else n = i.apply(this, arguments);
|
||||||
|
return (
|
||||||
|
(r = this),
|
||||||
|
!(o = n) || ("object" !== v(o) && "function" != typeof o)
|
||||||
|
? (function (t) {
|
||||||
|
if (void 0 === t)
|
||||||
|
throw new ReferenceError(
|
||||||
|
"this hasn't been initialised - super() hasn't been called"
|
||||||
|
);
|
||||||
|
return t;
|
||||||
|
})(r)
|
||||||
|
: o
|
||||||
|
);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
function g(t) {
|
||||||
|
return (g = Object.setPrototypeOf
|
||||||
|
? Object.getPrototypeOf
|
||||||
|
: function (t) {
|
||||||
|
return t.__proto__ || Object.getPrototypeOf(t);
|
||||||
|
})(t);
|
||||||
|
}
|
||||||
|
function E(t, e) {
|
||||||
|
var n = "data-clipboard-".concat(t);
|
||||||
|
if (e.hasAttribute(n)) return e.getAttribute(n);
|
||||||
|
}
|
||||||
|
var S = (function (t) {
|
||||||
|
!(function (t, e) {
|
||||||
|
if ("function" != typeof e && null !== e)
|
||||||
|
throw new TypeError(
|
||||||
|
"Super expression must either be null or a function"
|
||||||
|
);
|
||||||
|
(t.prototype = Object.create(e && e.prototype, {
|
||||||
|
constructor: { value: t, writable: !0, configurable: !0 },
|
||||||
|
})),
|
||||||
|
e && m(t, e);
|
||||||
|
})(i, t);
|
||||||
|
var e,
|
||||||
|
n,
|
||||||
|
r,
|
||||||
|
o = b(i);
|
||||||
|
function i(t, e) {
|
||||||
|
var n;
|
||||||
|
return (
|
||||||
|
(function (t, e) {
|
||||||
|
if (!(t instanceof e))
|
||||||
|
throw new TypeError(
|
||||||
|
"Cannot call a class as a function"
|
||||||
|
);
|
||||||
|
})(this, i),
|
||||||
|
(n = o.call(this)).resolveOptions(e),
|
||||||
|
n.listenClick(t),
|
||||||
|
n
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
(e = i),
|
||||||
|
(n = [
|
||||||
|
{
|
||||||
|
key: "resolveOptions",
|
||||||
|
value: function () {
|
||||||
|
var t =
|
||||||
|
arguments.length > 0 && void 0 !== arguments[0]
|
||||||
|
? arguments[0]
|
||||||
|
: {};
|
||||||
|
(this.action =
|
||||||
|
"function" == typeof t.action
|
||||||
|
? t.action
|
||||||
|
: this.defaultAction),
|
||||||
|
(this.target =
|
||||||
|
"function" == typeof t.target
|
||||||
|
? t.target
|
||||||
|
: this.defaultTarget),
|
||||||
|
(this.text =
|
||||||
|
"function" == typeof t.text
|
||||||
|
? t.text
|
||||||
|
: this.defaultText),
|
||||||
|
(this.container =
|
||||||
|
"object" === v(t.container)
|
||||||
|
? t.container
|
||||||
|
: document.body);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "listenClick",
|
||||||
|
value: function (t) {
|
||||||
|
var e = this;
|
||||||
|
this.listener = u()(t, "click", function (t) {
|
||||||
|
return e.onClick(t);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "onClick",
|
||||||
|
value: function (t) {
|
||||||
|
var e = t.delegateTarget || t.currentTarget,
|
||||||
|
n = this.action(e) || "copy",
|
||||||
|
r = y({
|
||||||
|
action: n,
|
||||||
|
container: this.container,
|
||||||
|
target: this.target(e),
|
||||||
|
text: this.text(e),
|
||||||
|
});
|
||||||
|
this.emit(r ? "success" : "error", {
|
||||||
|
action: n,
|
||||||
|
text: r,
|
||||||
|
trigger: e,
|
||||||
|
clearSelection: function () {
|
||||||
|
e && e.focus(),
|
||||||
|
window.getSelection().removeAllRanges();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "defaultAction",
|
||||||
|
value: function (t) {
|
||||||
|
return E("action", t);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "defaultTarget",
|
||||||
|
value: function (t) {
|
||||||
|
var e = E("target", t);
|
||||||
|
if (e) return document.querySelector(e);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "defaultText",
|
||||||
|
value: function (t) {
|
||||||
|
return E("text", t);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "destroy",
|
||||||
|
value: function () {
|
||||||
|
this.listener.destroy();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]),
|
||||||
|
(r = [
|
||||||
|
{
|
||||||
|
key: "copy",
|
||||||
|
value: function (t) {
|
||||||
|
var e =
|
||||||
|
arguments.length > 1 && void 0 !== arguments[1]
|
||||||
|
? arguments[1]
|
||||||
|
: { container: document.body };
|
||||||
|
return p(t, e);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "cut",
|
||||||
|
value: function (t) {
|
||||||
|
return l(t);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "isSupported",
|
||||||
|
value: function () {
|
||||||
|
var t =
|
||||||
|
arguments.length > 0 && void 0 !== arguments[0]
|
||||||
|
? arguments[0]
|
||||||
|
: ["copy", "cut"],
|
||||||
|
e = "string" == typeof t ? [t] : t,
|
||||||
|
n = !!document.queryCommandSupported;
|
||||||
|
return (
|
||||||
|
e.forEach(function (t) {
|
||||||
|
n = n && !!document.queryCommandSupported(t);
|
||||||
|
}),
|
||||||
|
n
|
||||||
|
);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]),
|
||||||
|
n && h(e.prototype, n),
|
||||||
|
r && h(e, r),
|
||||||
|
i
|
||||||
|
);
|
||||||
|
})(o()),
|
||||||
|
w = S;
|
||||||
|
},
|
||||||
|
828: function (t) {
|
||||||
|
if ("undefined" != typeof Element && !Element.prototype.matches) {
|
||||||
|
var e = Element.prototype;
|
||||||
|
e.matches =
|
||||||
|
e.matchesSelector ||
|
||||||
|
e.mozMatchesSelector ||
|
||||||
|
e.msMatchesSelector ||
|
||||||
|
e.oMatchesSelector ||
|
||||||
|
e.webkitMatchesSelector;
|
||||||
|
}
|
||||||
|
t.exports = function (t, e) {
|
||||||
|
for (; t && 9 !== t.nodeType; ) {
|
||||||
|
if ("function" == typeof t.matches && t.matches(e)) return t;
|
||||||
|
t = t.parentNode;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
438: function (t, e, n) {
|
||||||
|
var r = n(828);
|
||||||
|
function o(t, e, n, r, o) {
|
||||||
|
var u = i.apply(this, arguments);
|
||||||
|
return (
|
||||||
|
t.addEventListener(n, u, o),
|
||||||
|
{
|
||||||
|
destroy: function () {
|
||||||
|
t.removeEventListener(n, u, o);
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
function i(t, e, n, o) {
|
||||||
|
return function (n) {
|
||||||
|
(n.delegateTarget = r(n.target, e)),
|
||||||
|
n.delegateTarget && o.call(t, n);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
t.exports = function (t, e, n, r, i) {
|
||||||
|
return "function" == typeof t.addEventListener
|
||||||
|
? o.apply(null, arguments)
|
||||||
|
: "function" == typeof n
|
||||||
|
? o.bind(null, document).apply(null, arguments)
|
||||||
|
: ("string" == typeof t && (t = document.querySelectorAll(t)),
|
||||||
|
Array.prototype.map.call(t, function (t) {
|
||||||
|
return o(t, e, n, r, i);
|
||||||
|
}));
|
||||||
|
};
|
||||||
|
},
|
||||||
|
879: function (t, e) {
|
||||||
|
(e.node = function (t) {
|
||||||
|
return (
|
||||||
|
void 0 !== t && t instanceof HTMLElement && 1 === t.nodeType
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
(e.nodeList = function (t) {
|
||||||
|
var n = Object.prototype.toString.call(t);
|
||||||
|
return (
|
||||||
|
void 0 !== t &&
|
||||||
|
("[object NodeList]" === n ||
|
||||||
|
"[object HTMLCollection]" === n) &&
|
||||||
|
"length" in t &&
|
||||||
|
(0 === t.length || e.node(t[0]))
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
(e.string = function (t) {
|
||||||
|
return "string" == typeof t || t instanceof String;
|
||||||
|
}),
|
||||||
|
(e.fn = function (t) {
|
||||||
|
return (
|
||||||
|
"[object Function]" === Object.prototype.toString.call(t)
|
||||||
|
);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
370: function (t, e, n) {
|
||||||
|
var r = n(879),
|
||||||
|
o = n(438);
|
||||||
|
t.exports = function (t, e, n) {
|
||||||
|
if (!t && !e && !n) throw new Error("Missing required arguments");
|
||||||
|
if (!r.string(e))
|
||||||
|
throw new TypeError("Second argument must be a String");
|
||||||
|
if (!r.fn(n))
|
||||||
|
throw new TypeError("Third argument must be a Function");
|
||||||
|
if (r.node(t))
|
||||||
|
return (function (t, e, n) {
|
||||||
|
return (
|
||||||
|
t.addEventListener(e, n),
|
||||||
|
{
|
||||||
|
destroy: function () {
|
||||||
|
t.removeEventListener(e, n);
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
})(t, e, n);
|
||||||
|
if (r.nodeList(t))
|
||||||
|
return (function (t, e, n) {
|
||||||
|
return (
|
||||||
|
Array.prototype.forEach.call(t, function (t) {
|
||||||
|
t.addEventListener(e, n);
|
||||||
|
}),
|
||||||
|
{
|
||||||
|
destroy: function () {
|
||||||
|
Array.prototype.forEach.call(t, function (t) {
|
||||||
|
t.removeEventListener(e, n);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
})(t, e, n);
|
||||||
|
if (r.string(t))
|
||||||
|
return (function (t, e, n) {
|
||||||
|
return o(document.body, t, e, n);
|
||||||
|
})(t, e, n);
|
||||||
|
throw new TypeError(
|
||||||
|
"First argument must be a String, HTMLElement, HTMLCollection, or NodeList"
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
817: function (t) {
|
||||||
|
t.exports = function (t) {
|
||||||
|
var e;
|
||||||
|
if ("SELECT" === t.nodeName) t.focus(), (e = t.value);
|
||||||
|
else if ("INPUT" === t.nodeName || "TEXTAREA" === t.nodeName) {
|
||||||
|
var n = t.hasAttribute("readonly");
|
||||||
|
n || t.setAttribute("readonly", ""),
|
||||||
|
t.select(),
|
||||||
|
t.setSelectionRange(0, t.value.length),
|
||||||
|
n || t.removeAttribute("readonly"),
|
||||||
|
(e = t.value);
|
||||||
|
} else {
|
||||||
|
t.hasAttribute("contenteditable") && t.focus();
|
||||||
|
var r = window.getSelection(),
|
||||||
|
o = document.createRange();
|
||||||
|
o.selectNodeContents(t),
|
||||||
|
r.removeAllRanges(),
|
||||||
|
r.addRange(o),
|
||||||
|
(e = r.toString());
|
||||||
|
}
|
||||||
|
return e;
|
||||||
|
};
|
||||||
|
},
|
||||||
|
279: function (t) {
|
||||||
|
function e() {}
|
||||||
|
(e.prototype = {
|
||||||
|
on: function (t, e, n) {
|
||||||
|
var r = this.e || (this.e = {});
|
||||||
|
return (r[t] || (r[t] = [])).push({ fn: e, ctx: n }), this;
|
||||||
|
},
|
||||||
|
once: function (t, e, n) {
|
||||||
|
var r = this;
|
||||||
|
function o() {
|
||||||
|
r.off(t, o), e.apply(n, arguments);
|
||||||
|
}
|
||||||
|
return (o._ = e), this.on(t, o, n);
|
||||||
|
},
|
||||||
|
emit: function (t) {
|
||||||
|
for (
|
||||||
|
var e = [].slice.call(arguments, 1),
|
||||||
|
n = ((this.e || (this.e = {}))[t] || []).slice(),
|
||||||
|
r = 0,
|
||||||
|
o = n.length;
|
||||||
|
r < o;
|
||||||
|
r++
|
||||||
|
)
|
||||||
|
n[r].fn.apply(n[r].ctx, e);
|
||||||
|
return this;
|
||||||
|
},
|
||||||
|
off: function (t, e) {
|
||||||
|
var n = this.e || (this.e = {}),
|
||||||
|
r = n[t],
|
||||||
|
o = [];
|
||||||
|
if (r && e)
|
||||||
|
for (var i = 0, u = r.length; i < u; i++)
|
||||||
|
r[i].fn !== e && r[i].fn._ !== e && o.push(r[i]);
|
||||||
|
return o.length ? (n[t] = o) : delete n[t], this;
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
(t.exports = e),
|
||||||
|
(t.exports.TinyEmitter = e);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
e = {};
|
||||||
|
function n(r) {
|
||||||
|
if (e[r]) return e[r].exports;
|
||||||
|
var o = (e[r] = { exports: {} });
|
||||||
|
return t[r](o, o.exports, n), o.exports;
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
(n.n = function (t) {
|
||||||
|
var e =
|
||||||
|
t && t.__esModule
|
||||||
|
? function () {
|
||||||
|
return t.default;
|
||||||
|
}
|
||||||
|
: function () {
|
||||||
|
return t;
|
||||||
|
};
|
||||||
|
return n.d(e, { a: e }), e;
|
||||||
|
}),
|
||||||
|
(n.d = function (t, e) {
|
||||||
|
for (var r in e)
|
||||||
|
n.o(e, r) &&
|
||||||
|
!n.o(t, r) &&
|
||||||
|
Object.defineProperty(t, r, { enumerable: !0, get: e[r] });
|
||||||
|
}),
|
||||||
|
(n.o = function (t, e) {
|
||||||
|
return Object.prototype.hasOwnProperty.call(t, e);
|
||||||
|
}),
|
||||||
|
n(686)
|
||||||
|
);
|
||||||
|
})().default;
|
||||||
|
})())
|
||||||
|
);
|
||||||
|
export { r as C };
|
|
@ -0,0 +1,201 @@
|
||||||
|
const n = [
|
||||||
|
{ en: "Angola", cn: "安哥拉", code: "+244" },
|
||||||
|
{ en: "Afghanistan", cn: "阿富汗", code: "+93" },
|
||||||
|
{ en: "Alaska(U.S.A)", cn: "阿拉斯加", code: "+1907" },
|
||||||
|
{ en: "Albania", cn: "阿尔巴尼亚", code: "+355" },
|
||||||
|
{ en: "Algeria", cn: "阿尔及利亚", code: "+213" },
|
||||||
|
{ en: "Andorra", cn: "安道尔共和国", code: "+376" },
|
||||||
|
{ en: "Anguilla", cn: "安圭拉岛", code: "+1254" },
|
||||||
|
{ en: "Antigua and Barbuda", cn: "安提瓜和巴布达", code: "+1268" },
|
||||||
|
{ en: "Argentina", cn: "阿根廷", code: "+54" },
|
||||||
|
{ en: "Armenia", cn: "亚美尼亚", code: "+374" },
|
||||||
|
{ en: "Aruba", cn: "阿鲁巴岛", code: "+297" },
|
||||||
|
{ en: "Ascension", cn: "阿森松", code: "+247" },
|
||||||
|
{ en: "Australia", cn: "澳大利亚", code: "+61" },
|
||||||
|
{ en: "Austria", cn: "奥地利", code: "+43" },
|
||||||
|
{ en: "Azerbaijan", cn: "阿塞拜疆", code: "+994" },
|
||||||
|
{ en: "Bahamas", cn: "巴哈马", code: "+1242" },
|
||||||
|
{ en: "Bahrain", cn: "巴林", code: "+973" },
|
||||||
|
{ en: "Bangladesh", cn: "孟加拉国", code: "+880" },
|
||||||
|
{ en: "Barbados", cn: "巴巴多斯", code: "+1246" },
|
||||||
|
{ en: "Belarus", cn: "白俄罗斯", code: "+375" },
|
||||||
|
{ en: "Belgium", cn: "比利时", code: "+32" },
|
||||||
|
{ en: "Belize", cn: "伯利兹", code: "+501" },
|
||||||
|
{ en: "Benin", cn: "贝宁", code: "+229" },
|
||||||
|
{ en: "Bermuda Is", cn: "百慕大群岛", code: "+1441" },
|
||||||
|
{ en: "Bhutan", cn: "不丹", code: "+975" },
|
||||||
|
{ en: "Bolivia", cn: "玻利维亚", code: "+591" },
|
||||||
|
{ en: "Bosnia And Herzegovina", cn: "波斯尼亚和黑塞哥维那", code: "+387" },
|
||||||
|
{ en: "Botswana", cn: "博茨瓦纳", code: "+267" },
|
||||||
|
{ en: "Brazil", cn: "巴西", code: "+55" },
|
||||||
|
{ en: "Brunei", cn: "文莱", code: "+673" },
|
||||||
|
{ en: "Bulgaria", cn: "保加利亚", code: "+359" },
|
||||||
|
{ en: "Burkina Faso", cn: "布基纳法索", code: "+226" },
|
||||||
|
{ en: "Burma", cn: "缅甸", code: "+95" },
|
||||||
|
{ en: "Burundi", cn: "布隆迪", code: "+257" },
|
||||||
|
{ en: "Cameroon", cn: "喀麦隆", code: "+237" },
|
||||||
|
{ en: "Canada", cn: "加拿大", code: "+1" },
|
||||||
|
{ en: "Cape Verde", cn: "佛得角", code: "+238" },
|
||||||
|
{ en: "Cayman Is", cn: "开曼群岛", code: "+1345" },
|
||||||
|
{ en: "Central African Republic", cn: "中非共和国", code: "+236" },
|
||||||
|
{ en: "Chad", cn: "乍得", code: "+235" },
|
||||||
|
{ en: "Chile", cn: "智利", code: "+56" },
|
||||||
|
{ en: "China", cn: "中国", code: "+86" },
|
||||||
|
{ en: "Colombia", cn: "哥伦比亚", code: "+57" },
|
||||||
|
{ en: "Congo", cn: "刚果", code: "+242" },
|
||||||
|
{ en: "Cook Is", cn: "库克群岛", code: "+682" },
|
||||||
|
{ en: "Costa Rica", cn: "哥斯达黎加", code: "+506" },
|
||||||
|
{ en: "Cuba", cn: "古巴", code: "+53" },
|
||||||
|
{ en: "Cyprus", cn: "塞浦路斯", code: "+357" },
|
||||||
|
{ en: "Czech Republic", cn: "捷克", code: "+420" },
|
||||||
|
{ en: "Republic of Croatia", cn: "克罗地亚共和国", code: "+385" },
|
||||||
|
{ en: "Denmark", cn: "丹麦", code: "+45" },
|
||||||
|
{ en: "Djibouti", cn: "吉布提", code: "+253" },
|
||||||
|
{ en: "Dominica Rep", cn: "多米尼加共和国", code: "+1890" },
|
||||||
|
{ en: "Ecuador", cn: "厄瓜多尔", code: "+593" },
|
||||||
|
{ en: "Egypt", cn: "埃及", code: "+20" },
|
||||||
|
{ en: "EI Salvador", cn: "萨尔瓦多", code: "+503" },
|
||||||
|
{ en: "Estonia", cn: "爱沙尼亚", code: "+372" },
|
||||||
|
{ en: "Ethiopia", cn: "埃塞俄比亚", code: "+251" },
|
||||||
|
{ en: "Fiji", cn: "斐济", code: "+679" },
|
||||||
|
{ en: "Finland", cn: "芬兰", code: "+358" },
|
||||||
|
{ en: "France", cn: "法国", code: "+33" },
|
||||||
|
{ en: "French Guiana", cn: "法属圭亚那", code: "+594" },
|
||||||
|
{ en: "French Polynesia", cn: "法属玻利尼西亚", code: "+689" },
|
||||||
|
{ en: "Gabon", cn: "加蓬", code: "+241" },
|
||||||
|
{ en: "Gambia", cn: "冈比亚", code: "+220" },
|
||||||
|
{ en: "Georgia", cn: "格鲁吉亚", code: "+995" },
|
||||||
|
{ en: "Germany", cn: "德国", code: "+49" },
|
||||||
|
{ en: "Ghana", cn: "加纳", code: "+233" },
|
||||||
|
{ en: "Gibraltar", cn: "直布罗陀", code: "+350" },
|
||||||
|
{ en: "Greece", cn: "希腊", code: "+30" },
|
||||||
|
{ en: "Grenada", cn: "格林纳达", code: "+1809" },
|
||||||
|
{ en: "Guam", cn: "关岛", code: "+1671" },
|
||||||
|
{ en: "Guatemala", cn: "危地马拉", code: "+502" },
|
||||||
|
{ en: "Guinea", cn: "几内亚", code: "+224" },
|
||||||
|
{ en: "Guyana", cn: "圭亚那", code: "+592" },
|
||||||
|
{ en: "Haiti", cn: "海地", code: "+509" },
|
||||||
|
{ en: "Honduras", cn: "洪都拉斯", code: "+504" },
|
||||||
|
{ en: "Hongkong", cn: "香港", code: "+852" },
|
||||||
|
{ en: "Hungary", cn: "匈牙利", code: "+36" },
|
||||||
|
{ en: "Iceland", cn: "冰岛", code: "+354" },
|
||||||
|
{ en: "India", cn: "印度", code: "+91" },
|
||||||
|
{ en: "Indonesia", cn: "印度尼西亚", code: "+62" },
|
||||||
|
{ en: "Iran", cn: "伊朗", code: "+98" },
|
||||||
|
{ en: "Iraq", cn: "伊拉克", code: "+964" },
|
||||||
|
{ en: "Ireland", cn: "爱尔兰", code: "+353" },
|
||||||
|
{ en: "Israel", cn: "以色列", code: "+972" },
|
||||||
|
{ en: "Italy", cn: "意大利", code: "+39" },
|
||||||
|
{ en: "Ivory Coast", cn: "科特迪瓦", code: "+225" },
|
||||||
|
{ en: "Jamaica", cn: "牙买加", code: "+1876" },
|
||||||
|
{ en: "Japan", cn: "日本", code: "+81" },
|
||||||
|
{ en: "Jordan", cn: "约旦", code: "+962" },
|
||||||
|
{ en: "Cambodia", cn: "柬埔寨", code: "+855" },
|
||||||
|
{ en: "Kazakhstan", cn: "哈萨克斯坦", code: "+7" },
|
||||||
|
{ en: "Kenya", cn: "肯尼亚", code: "+254" },
|
||||||
|
{ en: "Korea", cn: "韩国", code: "+82" },
|
||||||
|
{ en: "Kuwait", cn: "科威特", code: "+965" },
|
||||||
|
{ en: "Kyrgyzstan", cn: "吉尔吉斯坦", code: "+331" },
|
||||||
|
{ en: "Laos", cn: "老挝", code: "+856" },
|
||||||
|
{ en: "Latvia", cn: "拉脱维亚", code: "+371" },
|
||||||
|
{ en: "Lebanon", cn: "黎巴嫩", code: "+961" },
|
||||||
|
{ en: "Lesotho", cn: "莱索托", code: "+266" },
|
||||||
|
{ en: "Liberia", cn: "利比里亚", code: "+231" },
|
||||||
|
{ en: "Libya", cn: "利比亚", code: "+218" },
|
||||||
|
{ en: "Liechtenstein", cn: "列支敦士登", code: "+423" },
|
||||||
|
{ en: "Lithuania", cn: "立陶宛", code: "+370" },
|
||||||
|
{ en: "Luxembourg", cn: "卢森堡", code: "+352" },
|
||||||
|
{ en: "Macao", cn: "澳门", code: "+853" },
|
||||||
|
{ en: "Madagascar", cn: "马达加斯加", code: "+261" },
|
||||||
|
{ en: "Malawi", cn: "马拉维", code: "+265" },
|
||||||
|
{ en: "Malaysia", cn: "马来西亚", code: "+60" },
|
||||||
|
{ en: "Maldives", cn: "马尔代夫", code: "+960" },
|
||||||
|
{ en: "Mali", cn: "马里", code: "+223" },
|
||||||
|
{ en: "Malta", cn: "马耳他", code: "+356" },
|
||||||
|
{ en: "Mariana Is", cn: "马里亚那群岛", code: "+1670" },
|
||||||
|
{ en: "Martinique", cn: "马提尼克", code: "+596" },
|
||||||
|
{ en: "Mauritius", cn: "毛里求斯", code: "+230" },
|
||||||
|
{ en: "Mexico", cn: "墨西哥", code: "+52" },
|
||||||
|
{ en: "Moldova", cn: "摩尔多瓦", code: "+373" },
|
||||||
|
{ en: "Monaco", cn: "摩纳哥", code: "+377" },
|
||||||
|
{ en: "Mongolia", cn: "蒙古", code: "+976" },
|
||||||
|
{ en: "Montserrat Is", cn: "蒙特塞拉特岛", code: "+1664" },
|
||||||
|
{ en: "Morocco", cn: "摩洛哥", code: "+212" },
|
||||||
|
{ en: "Mozambique", cn: "莫桑比克", code: "+258" },
|
||||||
|
{ en: "Namibia", cn: "纳米比亚", code: "+264" },
|
||||||
|
{ en: "Nauru", cn: "瑙鲁", code: "+674" },
|
||||||
|
{ en: "Nepal", cn: "尼泊尔", code: "+977" },
|
||||||
|
{ en: "Netheriands Antilles", cn: "荷属安的列斯", code: "+599" },
|
||||||
|
{ en: "Netherlands", cn: "荷兰", code: "+31" },
|
||||||
|
{ en: "New Zealand", cn: "新西兰", code: "+64" },
|
||||||
|
{ en: "Nicaragua", cn: "尼加拉瓜", code: "+505" },
|
||||||
|
{ en: "Niger", cn: "尼日尔", code: "+227" },
|
||||||
|
{ en: "Nigeria", cn: "尼日利亚", code: "+234" },
|
||||||
|
{ en: "North Korea", cn: "朝鲜", code: "+850" },
|
||||||
|
{ en: "Norway", cn: "挪威", code: "+47" },
|
||||||
|
{ en: "Oman", cn: "阿曼", code: "+968" },
|
||||||
|
{ en: "Pakistan", cn: "巴基斯坦", code: "+92" },
|
||||||
|
{ en: "Panama", cn: "巴拿马", code: "+507" },
|
||||||
|
{ en: "Papua New Cuinea", cn: "巴布亚新几内亚", code: "+675" },
|
||||||
|
{ en: "Paraguay", cn: "巴拉圭", code: "+595" },
|
||||||
|
{ en: "Peru", cn: "秘鲁", code: "+51" },
|
||||||
|
{ en: "Philippines", cn: "菲律宾", code: "+63" },
|
||||||
|
{ en: "Poland", cn: "波兰", code: "+48" },
|
||||||
|
{ en: "Portugal", cn: "葡萄牙", code: "+351" },
|
||||||
|
{ en: "Puerto Rico", cn: "波多黎各", code: "+1787" },
|
||||||
|
{ en: "Qatar", cn: "卡塔尔", code: "+974" },
|
||||||
|
{ en: "Reunion", cn: "留尼旺", code: "+262" },
|
||||||
|
{ en: "Romania", cn: "罗马尼亚", code: "+40" },
|
||||||
|
{ en: "Russia", cn: "俄罗斯", code: "+7" },
|
||||||
|
{ en: "Rwanda", cn: "卢旺达", code: "+250" },
|
||||||
|
{ en: "Saint Vincent", cn: "圣文森特岛", code: "+1784" },
|
||||||
|
{ en: "Samoa Eastern", cn: "东萨摩亚(美)", code: "+684" },
|
||||||
|
{ en: "Samoa Western", cn: "西萨摩亚", code: "+685" },
|
||||||
|
{ en: "San Marino", cn: "圣马力诺", code: "+378" },
|
||||||
|
{ en: "Sao Tome and Principe", cn: "圣多美和普林西比", code: "+239" },
|
||||||
|
{ en: "Saudi Arabia", cn: "沙特阿拉伯", code: "+966" },
|
||||||
|
{ en: "Senegal", cn: "塞内加尔", code: "+221" },
|
||||||
|
{ en: "Seychelles", cn: "塞舌尔", code: "+248" },
|
||||||
|
{ en: "Sierra Leone", cn: "塞拉利昂", code: "+232" },
|
||||||
|
{ en: "Singapore", cn: "新加坡", code: "+65" },
|
||||||
|
{ en: "Slovakia", cn: "斯洛伐克", code: "+421" },
|
||||||
|
{ en: "Slovenia", cn: "斯洛文尼亚", code: "+386" },
|
||||||
|
{ en: "Solomon Is", cn: "所罗门群岛", code: "+677" },
|
||||||
|
{ en: "Somali", cn: "索马里", code: "+252" },
|
||||||
|
{ en: "South Africa", cn: "南非", code: "+27" },
|
||||||
|
{ en: "Spain", cn: "西班牙", code: "+34" },
|
||||||
|
{ en: "SriLanka", cn: "斯里兰卡", code: "+94" },
|
||||||
|
{ en: "Saint Lucia", cn: "圣卢西亚", code: "+1758" },
|
||||||
|
{ en: "St.Vincent", cn: "圣文森特", code: "+1784" },
|
||||||
|
{ en: "Sudan", cn: "苏丹", code: "+249" },
|
||||||
|
{ en: "Suriname", cn: "苏里南", code: "+597" },
|
||||||
|
{ en: "Swaziland", cn: "斯威士兰", code: "+268" },
|
||||||
|
{ en: "Sweden", cn: "瑞典", code: "+46" },
|
||||||
|
{ en: "Switzerland", cn: "瑞士", code: "+41" },
|
||||||
|
{ en: "Syria", cn: "叙利亚", code: "+963" },
|
||||||
|
{ en: "Taiwan", cn: "台湾省", code: "+886" },
|
||||||
|
{ en: "Tajikstan", cn: "塔吉克斯坦", code: "+992" },
|
||||||
|
{ en: "Tanzania", cn: "坦桑尼亚", code: "+255" },
|
||||||
|
{ en: "Thailand", cn: "泰国", code: "+66" },
|
||||||
|
{ en: "Togo", cn: "多哥", code: "+228" },
|
||||||
|
{ en: "Tonga", cn: "汤加", code: "+676" },
|
||||||
|
{ en: "Trinidad and Tobago", cn: "特立尼达和多巴哥", code: "+1809" },
|
||||||
|
{ en: "Tunisia", cn: "突尼斯", code: "+216" },
|
||||||
|
{ en: "Turkey", cn: "土耳其", code: "+90" },
|
||||||
|
{ en: "Turkmenistan", cn: "土库曼斯坦", code: "+993" },
|
||||||
|
{ en: "Uganda", cn: "乌干达", code: "+256" },
|
||||||
|
{ en: "Ukraine", cn: "乌克兰", code: "+380" },
|
||||||
|
{ en: "United Arab Emirates", cn: "阿拉伯联合酋长国", code: "+971" },
|
||||||
|
{ en: "United Kiongdom", cn: "英国", code: "+44" },
|
||||||
|
{ en: "United States of America", cn: "美国", code: "+1" },
|
||||||
|
{ en: "Uruguay", cn: "乌拉圭", code: "+598" },
|
||||||
|
{ en: "Uzbekistan", cn: "乌兹别克斯坦", code: "+233" },
|
||||||
|
{ en: "Venezuela", cn: "委内瑞拉", code: "+58" },
|
||||||
|
{ en: "Vietnam", cn: "越南", code: "+84" },
|
||||||
|
{ en: "Yemen", cn: "也门", code: "+967" },
|
||||||
|
{ en: "Yugoslavia", cn: "南斯拉夫", code: "+381" },
|
||||||
|
{ en: "Zimbabwe", cn: "津巴布韦", code: "+263" },
|
||||||
|
{ en: "Zaire", cn: "扎伊尔", code: "+243" },
|
||||||
|
{ en: "Zambia", cn: "赞比亚", code: "+260" },
|
||||||
|
];
|
||||||
|
export { n as c };
|
|
@ -0,0 +1,2 @@
|
||||||
|
const n = "/png/name-f707af90.png";
|
||||||
|
export { n as _ };
|
|
@ -0,0 +1,2 @@
|
||||||
|
const n = "/png/name-f707af90.png";
|
||||||
|
export { n as _ };
|
|
@ -0,0 +1,5 @@
|
||||||
|
const A =
|
||||||
|
"data:image/png;base64,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",
|
||||||
|
E =
|
||||||
|
"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAgCAYAAACcuBHKAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAALdSURBVHgBvVfPaxNBFP5m0tS0Cl3wLE0vPWp6s4dKinepF0+KETTgQbCg5xoQzy2ISCN0xVO9iH+ANPXiNepFvLi23qSyRTSbpu343m4SN8nuZjbJ9oNhk5mXzLdvvvdjBGLAKCijNoaCSOECFPJKwRACRnPZojlLSFTVEd46L0RF93+FjlHmtsqT5QqNPPRh0TBxgJeOKSwMSiJTUFmksRFz814yCiWnLEzEJcFvrwTe+Nw9HATMTB3Ltins3qUgAkV1E+zKEYM2q546wGI3EdltOFlUS8MQmD4bvqaAXH0cWyxw//yY/wtr4EhhQ2jJ1cPCLHDvMnD+XCcB+y+w8wu49gz4vtdJpDZOIgeWA0mAWNL+WhowJoHNu8Cl2fB1HkGgPe6T5tph3D6OzB1VoEcWmogioAVJUdf++J/eCjRxfX5IAh6yzRf3jsNNRjG8cCUXvsZa+PYT9u+6d6z7NUTBjUJPEyn6oqCNhRAvPH0HPNiErZ1bKAlypLjHQTUgB01MhQiOPGA/fE3/GzO5OWksSRATUqs2CWMieP7T7mCZlfeWp9P6WohCn7MPhZKYkpScRlIb7AFJ4BjZMR07DslyIdrmxrw3/Pi4C1x8jL6QKQEbCWFnr78NBeW+/NNwm49E8P5rfxsKT0vCK6sWEgAfRz+QJ6otTWwjImPWGu6R+Y8tyLbbBp9/aEReChW3aLtpW2ILGuBy/eVJ7/yrD0DRRCxQkqzWy2LOzZhcUmkiMYGGgTywxs92FaV0u4aThdVqftsknHXxCEguUnpAHXjrY0ePSdnzKk4C1Hn7rwAdJBplURW+3i8hWESi5J/o6bZr62KVHiUkRUBi0XneeSOTQZasj5F7RKESRCCUBMP1iMQMhhRrM/T5GhhIIJIEg39EXpmht7gVl4y7OQmQbvBzzcgLhVYpbyrZ5Mx6eAy+oU3DS9083H6kceilba4F1CNsT5yBaa8KrQT4D54G74n1KDw5AAAAAElFTkSuQmCC";
|
||||||
|
export { A as _, E as a };
|
|
@ -0,0 +1,5 @@
|
||||||
|
const A =
|
||||||
|
"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFpSURBVHgBnVNBTsJQEJ0ZLMGwqcu6ghPIDbQnoAs1xJAYTyCegHIDuAEmhBhxUU6AR+AGdIfu2EC1DR3nf0L9IQoNL2n+zP/z5r+ZzkfYQeN6flUgrIvpyVfRmwxTAJyuk7TzEjihGY9bw/NmdrlYbgOkLdgL6lrxstMPqossgSZbpxPxapAHoshKIlclIeXrm/OSN9fWEq1WzEZjXimkOIMjsE7ZpQJTOzdDpC/j6EyMZ+USskfAnLvupdRdKpVsEX6pthCprnpwOIFBlnInsP29spIZt465isCdnGQNko6GmVOk+8Gr4zPzgwhcHCKr4SJOYZy5wP7d7Wd7OHL6zOjuJ2/UYVNGl0kHGAfYt5LV09c+clayoHnz0WWEx53zEAFtBrb/IjOnveHovKWbeJJEvizTnZjKf2QlfZV8Kw7oBGqmrThykaEHB6BuVr0JzMdkYjPa4MvRBfzOSCjEMTEGgzfn3Yz/AVdkqwQuqsWdAAAAAElFTkSuQmCC",
|
||||||
|
s =
|
||||||
|
"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADcAAAA3CAMAAACfBSJ0AAAAWlBMVEUAAADKysrGxsa+vr7Hx8fb29vb29vFxcXExMTHx8fExMTFxcW/v7/Pz8/Z2dnExMTIyMjDw8PFxcXCwsLZ2dnOzs7////g4OD6+vrs7Oz09PTy8vLc3Nzj4+PyYHC6AAAAFnRSTlMAgUwOBNvQeXNVNzUQu8YueWZlLse9FM1A2QAAASFJREFUSMetllsSgjAMRS0WyhsVTVLA/W9TGVFRUZo7nv8zHUIed/NfbBsdUpceotaGS4Wp2XdCRNJ5rk0RIm1d7OkVH7vtmmVY6BNh88u02SC0jAyZ/aaVVU/f6atyWcsT+k2SL2kR0xocLWhnWuf8IeZMIXD+VpKEwkjKuWYrCqWyMy/rg70+m3XJQOEMz84xovDEPJ5j0sD3B3ei8mQ3eTHpiKcx9UrPF7eqkJZbZWq1V4+aZbXHY8+0Xu35ZhygTu114zjtRe3J/uqlpCe9eg7wHPoe/H14PRvk/6H9AvYnOg/o/IHzDu8XfJ8BlTHovgbvA3qPwPsH3lvwvoN5AswvUF46lWA+w/Iglj/D8u5xlnePplDk62bK143d/JULyiO3IzV0b44AAAAASUVORK5CYII=";
|
||||||
|
export { A as _, s as a };
|
|
@ -0,0 +1,216 @@
|
||||||
|
/* empty css */ import {
|
||||||
|
_ as A,
|
||||||
|
k as t,
|
||||||
|
aC as s,
|
||||||
|
m as a,
|
||||||
|
p as e,
|
||||||
|
o as i,
|
||||||
|
f as l,
|
||||||
|
e as n,
|
||||||
|
r as o,
|
||||||
|
t as d,
|
||||||
|
n as r,
|
||||||
|
v as f,
|
||||||
|
i as c,
|
||||||
|
F as g,
|
||||||
|
P as v,
|
||||||
|
A as m,
|
||||||
|
B as h,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
const u = {
|
||||||
|
data: () => ({ props: "", list1: [] }),
|
||||||
|
created() {
|
||||||
|
this.auto();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
times(A) {
|
||||||
|
const t = new Date(1e3 * A);
|
||||||
|
return (
|
||||||
|
t.getFullYear() +
|
||||||
|
"-" +
|
||||||
|
("0" + (t.getMonth() + 1)).slice(-2) +
|
||||||
|
"-" +
|
||||||
|
("0" + t.getDate()).slice(-2) +
|
||||||
|
" " +
|
||||||
|
("0" + t.getHours()).slice(-2) +
|
||||||
|
":" +
|
||||||
|
("0" + t.getMinutes()).slice(-2) +
|
||||||
|
":" +
|
||||||
|
("0" + t.getSeconds()).slice(-2)
|
||||||
|
);
|
||||||
|
},
|
||||||
|
auto() {
|
||||||
|
t({ type: 1 }).then((A) => {
|
||||||
|
if (A.data.data) {
|
||||||
|
for (let t in A.data.data)
|
||||||
|
(A.data.data[t].createtime = this.times(
|
||||||
|
A.data.data[t].createtime
|
||||||
|
)),
|
||||||
|
(A.data.data[t].off = 0);
|
||||||
|
this.list1 = A.data.data;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
da(A) {
|
||||||
|
for (let t in this.list1) this.list1[t].off = 0;
|
||||||
|
A.off = 1;
|
||||||
|
},
|
||||||
|
hodd(A) {
|
||||||
|
A.off = 0;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
x = (A) => (m("data-v-63ce0f1e"), (A = A()), h(), A),
|
||||||
|
B = { class: "p-10" },
|
||||||
|
E = { class: "list bg-#fff rounded-8 overflow-hidden p-10 mb-10" },
|
||||||
|
Q = { class: "text-14 mb-10 mt-5" },
|
||||||
|
L = x(() =>
|
||||||
|
l("span", { class: "disblocks w-6 h-6 rounded-50% bg-#5B56E8" }, null, -1)
|
||||||
|
),
|
||||||
|
V = { class: "text-18 font-bold mb-10" },
|
||||||
|
p = ["innerHTML"],
|
||||||
|
w = ["onClick"],
|
||||||
|
b = { class: "text-#5B56E8 text-14" },
|
||||||
|
J = { key: 1, class: "buttons" },
|
||||||
|
R = ["onClick"],
|
||||||
|
F = { class: "text-#5B56E8" },
|
||||||
|
W = x(() =>
|
||||||
|
l(
|
||||||
|
"div",
|
||||||
|
{ class: "dels" },
|
||||||
|
[
|
||||||
|
l("div", null, [
|
||||||
|
l("img", {
|
||||||
|
class: "w-14",
|
||||||
|
src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAOCAYAAAAWo42rAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEJSURBVHgBjZDNTQMxEIXnjU3EzyF7hdNSAaGCpAQjgRSJCx1QAxUgSuCCkDiwqSAlZDvAt3DcCyhKiAfb60VGykqZw8x43+z3RgPKYmqWJWkq4+OH7Gt1ajsN0+vlhNGKAO59GSXNishDaMS5RjPEgNQwSkK1z/UfhTCOlZn2DoR0e/M5991k14CIm728nRlO40UvCXwRajJHSf2mEaKTQXw4wpUiN3KBsHW1KPXeaTr/l0ke9Xp1GfrN4GjxX8sXJ3leH5yUKzosIDTbMYgmZsHY33WuBrwQxjDXWmtI43FFOJGndvi7BLMZ0T1RTwi5uAK6D8Z8FMd+P5ZtewGo5nvzZavqPFr/AsDZUoB16dg3AAAAAElFTkSuQmCC",
|
||||||
|
}),
|
||||||
|
]),
|
||||||
|
],
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
S = { key: 1 },
|
||||||
|
H = x(() =>
|
||||||
|
l(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
class: "w-100% mt-40",
|
||||||
|
src: "data:image/png;base64,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",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
y = { class: "text-center text-#aaa" };
|
||||||
|
const C = A(u, [
|
||||||
|
[
|
||||||
|
"render",
|
||||||
|
function (A, t, m, h, u, x) {
|
||||||
|
const C = v,
|
||||||
|
P = s("normal-layout");
|
||||||
|
return (
|
||||||
|
i(),
|
||||||
|
a(
|
||||||
|
P,
|
||||||
|
{
|
||||||
|
flex: "",
|
||||||
|
title: A.$t("消息中心"),
|
||||||
|
"bg-color": "#f2f2f2",
|
||||||
|
"nav-bg-color": "#fff",
|
||||||
|
"text-color": "#000",
|
||||||
|
backType: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: e(() => [
|
||||||
|
l("div", B, [
|
||||||
|
u.list1.length > 0
|
||||||
|
? (i(!0),
|
||||||
|
n(
|
||||||
|
g,
|
||||||
|
{ key: 0 },
|
||||||
|
o(
|
||||||
|
u.list1,
|
||||||
|
(t) => (
|
||||||
|
i(),
|
||||||
|
n("div", E, [
|
||||||
|
l("div", Q, [
|
||||||
|
l("span", null, d(t.createtime), 1),
|
||||||
|
L,
|
||||||
|
]),
|
||||||
|
l("div", V, d(t.title), 1),
|
||||||
|
l(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: r([
|
||||||
|
"text-14 textp lh-18 contentx",
|
||||||
|
{ active: 0 == t.off },
|
||||||
|
]),
|
||||||
|
innerHTML: t.content,
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
10,
|
||||||
|
p
|
||||||
|
),
|
||||||
|
t.content.length > 40 && 0 == t.off
|
||||||
|
? (i(),
|
||||||
|
n(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
key: 0,
|
||||||
|
class: "buttonsitem",
|
||||||
|
onClick: (A) => x.da(t),
|
||||||
|
},
|
||||||
|
[
|
||||||
|
l("div", null, [
|
||||||
|
l("span", b, d(A.$t("展开")), 1),
|
||||||
|
f(C, {
|
||||||
|
name: "arrow-down",
|
||||||
|
color: "#5B56E8",
|
||||||
|
}),
|
||||||
|
]),
|
||||||
|
],
|
||||||
|
8,
|
||||||
|
w
|
||||||
|
))
|
||||||
|
: c("", !0),
|
||||||
|
t.content.length > 40 && 1 == t.off
|
||||||
|
? (i(),
|
||||||
|
n("div", J, [
|
||||||
|
l(
|
||||||
|
"div",
|
||||||
|
{ onClick: (A) => x.hodd(t) },
|
||||||
|
[
|
||||||
|
l("span", F, d(A.$t("隐藏")), 1),
|
||||||
|
f(C, {
|
||||||
|
name: "arrow-up",
|
||||||
|
color: "#5B56E8",
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
8,
|
||||||
|
R
|
||||||
|
),
|
||||||
|
]))
|
||||||
|
: c("", !0),
|
||||||
|
W,
|
||||||
|
])
|
||||||
|
)
|
||||||
|
),
|
||||||
|
256
|
||||||
|
))
|
||||||
|
: c("", !0),
|
||||||
|
0 == u.list1.length
|
||||||
|
? (i(), n("div", S, [H, l("div", y, d(A.$t("暂无消息")), 1)]))
|
||||||
|
: c("", !0),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["title"]
|
||||||
|
)
|
||||||
|
);
|
||||||
|
},
|
||||||
|
],
|
||||||
|
["__scopeId", "data-v-63ce0f1e"],
|
||||||
|
]);
|
||||||
|
export { C as default };
|
|
@ -0,0 +1,367 @@
|
||||||
|
import {
|
||||||
|
H as t,
|
||||||
|
I as o,
|
||||||
|
j as e,
|
||||||
|
ae as n,
|
||||||
|
K as a,
|
||||||
|
v as l,
|
||||||
|
Q as s,
|
||||||
|
a5 as c,
|
||||||
|
ao as i,
|
||||||
|
c as r,
|
||||||
|
ad as u,
|
||||||
|
bc as d,
|
||||||
|
J as m,
|
||||||
|
an as f,
|
||||||
|
a0 as B,
|
||||||
|
bd as g,
|
||||||
|
a3 as b,
|
||||||
|
aw as p,
|
||||||
|
ax as h,
|
||||||
|
ag as C,
|
||||||
|
aK as v,
|
||||||
|
be as w,
|
||||||
|
bf as y,
|
||||||
|
aO as x,
|
||||||
|
bg as k,
|
||||||
|
bh as S,
|
||||||
|
al as D,
|
||||||
|
X as T,
|
||||||
|
aL as O,
|
||||||
|
aM as H,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
import { B as j } from "./index-97676c1f.js";
|
||||||
|
import { u as A } from "./use-placeholder-8391a3e3.js";
|
||||||
|
import { a as P, u as z } from "./use-route-126c4f06.js";
|
||||||
|
const [I, K] = t("action-bar"),
|
||||||
|
N = Symbol(I);
|
||||||
|
const U = s(
|
||||||
|
o({
|
||||||
|
name: I,
|
||||||
|
props: { placeholder: Boolean, safeAreaInsetBottom: a },
|
||||||
|
setup(t, { slots: o }) {
|
||||||
|
const a = e(),
|
||||||
|
s = A(a, K),
|
||||||
|
{ linkChildren: c } = n(N);
|
||||||
|
c();
|
||||||
|
const i = () => {
|
||||||
|
var e;
|
||||||
|
return l(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
ref: a,
|
||||||
|
class: [K(), { "van-safe-area-bottom": t.safeAreaInsetBottom }],
|
||||||
|
},
|
||||||
|
[null == (e = o.default) ? void 0 : e.call(o)]
|
||||||
|
);
|
||||||
|
};
|
||||||
|
return () => (t.placeholder ? s(i) : i());
|
||||||
|
},
|
||||||
|
})
|
||||||
|
),
|
||||||
|
[E, F] = t("action-bar-button");
|
||||||
|
const L = s(
|
||||||
|
o({
|
||||||
|
name: E,
|
||||||
|
props: c({}, P, {
|
||||||
|
type: String,
|
||||||
|
text: String,
|
||||||
|
icon: String,
|
||||||
|
color: String,
|
||||||
|
loading: Boolean,
|
||||||
|
disabled: Boolean,
|
||||||
|
}),
|
||||||
|
setup(t, { slots: o }) {
|
||||||
|
const e = z(),
|
||||||
|
{ parent: n, index: a } = i(N),
|
||||||
|
s = r(() => {
|
||||||
|
if (n) {
|
||||||
|
const t = n.children[a.value - 1];
|
||||||
|
return !(t && "isButton" in t);
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
c = r(() => {
|
||||||
|
if (n) {
|
||||||
|
const t = n.children[a.value + 1];
|
||||||
|
return !(t && "isButton" in t);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return (
|
||||||
|
u({ isButton: !0 }),
|
||||||
|
() => {
|
||||||
|
const {
|
||||||
|
type: n,
|
||||||
|
icon: a,
|
||||||
|
text: i,
|
||||||
|
color: r,
|
||||||
|
loading: u,
|
||||||
|
disabled: d,
|
||||||
|
} = t;
|
||||||
|
return l(
|
||||||
|
j,
|
||||||
|
{
|
||||||
|
class: F([n, { last: c.value, first: s.value }]),
|
||||||
|
size: "large",
|
||||||
|
type: n,
|
||||||
|
icon: a,
|
||||||
|
color: r,
|
||||||
|
loading: u,
|
||||||
|
disabled: d,
|
||||||
|
onClick: e,
|
||||||
|
},
|
||||||
|
{ default: () => [o.default ? o.default() : i] }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
})
|
||||||
|
),
|
||||||
|
[M, Q, J] = t("dialog"),
|
||||||
|
R = c({}, d, {
|
||||||
|
title: String,
|
||||||
|
theme: String,
|
||||||
|
width: m,
|
||||||
|
message: [String, Function],
|
||||||
|
callback: Function,
|
||||||
|
allowHtml: Boolean,
|
||||||
|
className: f,
|
||||||
|
transition: B("van-dialog-bounce"),
|
||||||
|
messageAlign: String,
|
||||||
|
closeOnPopstate: a,
|
||||||
|
showCancelButton: Boolean,
|
||||||
|
cancelButtonText: String,
|
||||||
|
cancelButtonColor: String,
|
||||||
|
cancelButtonDisabled: Boolean,
|
||||||
|
confirmButtonText: String,
|
||||||
|
confirmButtonColor: String,
|
||||||
|
confirmButtonDisabled: Boolean,
|
||||||
|
showConfirmButton: a,
|
||||||
|
closeOnClickOverlay: Boolean,
|
||||||
|
}),
|
||||||
|
V = [...g, "transition", "closeOnPopstate"];
|
||||||
|
var X = o({
|
||||||
|
name: M,
|
||||||
|
props: R,
|
||||||
|
emits: ["confirm", "cancel", "keydown", "update:show"],
|
||||||
|
setup(t, { emit: o, slots: n }) {
|
||||||
|
const a = e(),
|
||||||
|
s = b({ confirm: !1, cancel: !1 }),
|
||||||
|
c = (t) => o("update:show", t),
|
||||||
|
i = (o) => {
|
||||||
|
var e;
|
||||||
|
c(!1), null == (e = t.callback) || e.call(t, o);
|
||||||
|
},
|
||||||
|
r = (e) => () => {
|
||||||
|
t.show &&
|
||||||
|
(o(e),
|
||||||
|
t.beforeClose
|
||||||
|
? ((s[e] = !0),
|
||||||
|
D(t.beforeClose, {
|
||||||
|
args: [e],
|
||||||
|
done() {
|
||||||
|
i(e), (s[e] = !1);
|
||||||
|
},
|
||||||
|
canceled() {
|
||||||
|
s[e] = !1;
|
||||||
|
},
|
||||||
|
}))
|
||||||
|
: i(e));
|
||||||
|
},
|
||||||
|
u = r("cancel"),
|
||||||
|
d = r("confirm"),
|
||||||
|
m = w(
|
||||||
|
(e) => {
|
||||||
|
var n, l;
|
||||||
|
if (
|
||||||
|
e.target !==
|
||||||
|
(null == (l = null == (n = a.value) ? void 0 : n.popupRef)
|
||||||
|
? void 0
|
||||||
|
: l.value)
|
||||||
|
)
|
||||||
|
return;
|
||||||
|
({
|
||||||
|
Enter: t.showConfirmButton ? d : y,
|
||||||
|
Escape: t.showCancelButton ? u : y,
|
||||||
|
})[e.key](),
|
||||||
|
o("keydown", e);
|
||||||
|
},
|
||||||
|
["enter", "esc"]
|
||||||
|
),
|
||||||
|
f = () => {
|
||||||
|
const o = n.title ? n.title() : t.title;
|
||||||
|
if (o)
|
||||||
|
return l(
|
||||||
|
"div",
|
||||||
|
{ class: Q("header", { isolated: !t.message && !n.default }) },
|
||||||
|
[o]
|
||||||
|
);
|
||||||
|
},
|
||||||
|
B = (o) => {
|
||||||
|
const { message: e, allowHtml: n, messageAlign: a } = t,
|
||||||
|
s = Q("message", { "has-title": o, [a]: a }),
|
||||||
|
c = x(e) ? e() : e;
|
||||||
|
return n && "string" == typeof c
|
||||||
|
? l("div", { class: s, innerHTML: c }, null)
|
||||||
|
: l("div", { class: s }, [c]);
|
||||||
|
},
|
||||||
|
g = () => {
|
||||||
|
if (n.default) return l("div", { class: Q("content") }, [n.default()]);
|
||||||
|
const { title: o, message: e, allowHtml: a } = t;
|
||||||
|
if (e) {
|
||||||
|
const t = !(!o && !n.title);
|
||||||
|
return l(
|
||||||
|
"div",
|
||||||
|
{ key: a ? 1 : 0, class: Q("content", { isolated: !t }) },
|
||||||
|
[B(t)]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
T = () =>
|
||||||
|
n.footer
|
||||||
|
? n.footer()
|
||||||
|
: "round-button" === t.theme
|
||||||
|
? l(
|
||||||
|
U,
|
||||||
|
{ class: Q("footer") },
|
||||||
|
{
|
||||||
|
default: () => [
|
||||||
|
t.showCancelButton &&
|
||||||
|
l(
|
||||||
|
L,
|
||||||
|
{
|
||||||
|
type: "warning",
|
||||||
|
text: t.cancelButtonText || J("cancel"),
|
||||||
|
class: Q("cancel"),
|
||||||
|
color: t.cancelButtonColor,
|
||||||
|
loading: s.cancel,
|
||||||
|
disabled: t.cancelButtonDisabled,
|
||||||
|
onClick: u,
|
||||||
|
},
|
||||||
|
null
|
||||||
|
),
|
||||||
|
t.showConfirmButton &&
|
||||||
|
l(
|
||||||
|
L,
|
||||||
|
{
|
||||||
|
type: "danger",
|
||||||
|
text: t.confirmButtonText || J("confirm"),
|
||||||
|
class: Q("confirm"),
|
||||||
|
color: t.confirmButtonColor,
|
||||||
|
loading: s.confirm,
|
||||||
|
disabled: t.confirmButtonDisabled,
|
||||||
|
onClick: d,
|
||||||
|
},
|
||||||
|
null
|
||||||
|
),
|
||||||
|
],
|
||||||
|
}
|
||||||
|
)
|
||||||
|
: l("div", { class: [S, Q("footer")] }, [
|
||||||
|
t.showCancelButton &&
|
||||||
|
l(
|
||||||
|
j,
|
||||||
|
{
|
||||||
|
size: "large",
|
||||||
|
text: t.cancelButtonText || J("cancel"),
|
||||||
|
class: Q("cancel"),
|
||||||
|
style: { color: t.cancelButtonColor },
|
||||||
|
loading: s.cancel,
|
||||||
|
disabled: t.cancelButtonDisabled,
|
||||||
|
onClick: u,
|
||||||
|
},
|
||||||
|
null
|
||||||
|
),
|
||||||
|
t.showConfirmButton &&
|
||||||
|
l(
|
||||||
|
j,
|
||||||
|
{
|
||||||
|
size: "large",
|
||||||
|
text: t.confirmButtonText || J("confirm"),
|
||||||
|
class: [Q("confirm"), { [k]: t.showCancelButton }],
|
||||||
|
style: { color: t.confirmButtonColor },
|
||||||
|
loading: s.confirm,
|
||||||
|
disabled: t.confirmButtonDisabled,
|
||||||
|
onClick: d,
|
||||||
|
},
|
||||||
|
null
|
||||||
|
),
|
||||||
|
]);
|
||||||
|
return () => {
|
||||||
|
const { width: o, title: e, theme: n, message: s, className: i } = t;
|
||||||
|
return l(
|
||||||
|
v,
|
||||||
|
p(
|
||||||
|
{
|
||||||
|
ref: a,
|
||||||
|
role: "dialog",
|
||||||
|
class: [Q([n]), i],
|
||||||
|
style: { width: C(o) },
|
||||||
|
tabindex: 0,
|
||||||
|
"aria-labelledby": e || s,
|
||||||
|
onKeydown: m,
|
||||||
|
"onUpdate:show": c,
|
||||||
|
},
|
||||||
|
h(t, V)
|
||||||
|
),
|
||||||
|
{ default: () => [f(), g(), T()] }
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
});
|
||||||
|
let q;
|
||||||
|
let G = c(
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
title: "",
|
||||||
|
width: "",
|
||||||
|
theme: null,
|
||||||
|
message: "",
|
||||||
|
overlay: !0,
|
||||||
|
callback: null,
|
||||||
|
teleport: "body",
|
||||||
|
className: "",
|
||||||
|
allowHtml: !1,
|
||||||
|
lockScroll: !0,
|
||||||
|
transition: void 0,
|
||||||
|
beforeClose: null,
|
||||||
|
overlayClass: "",
|
||||||
|
overlayStyle: void 0,
|
||||||
|
messageAlign: "",
|
||||||
|
cancelButtonText: "",
|
||||||
|
cancelButtonColor: null,
|
||||||
|
cancelButtonDisabled: !1,
|
||||||
|
confirmButtonText: "",
|
||||||
|
confirmButtonColor: null,
|
||||||
|
confirmButtonDisabled: !1,
|
||||||
|
showConfirmButton: !0,
|
||||||
|
showCancelButton: !1,
|
||||||
|
closeOnPopstate: !0,
|
||||||
|
closeOnClickOverlay: !1,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
function W(t) {
|
||||||
|
return T
|
||||||
|
? new Promise((o, e) => {
|
||||||
|
q ||
|
||||||
|
(function () {
|
||||||
|
const t = {
|
||||||
|
setup() {
|
||||||
|
const { state: t, toggle: o } = H();
|
||||||
|
return () => l(X, p(t, { "onUpdate:show": o }), null);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
({ instance: q } = O(t));
|
||||||
|
})(),
|
||||||
|
q.open(
|
||||||
|
c({}, G, t, {
|
||||||
|
callback: (t) => {
|
||||||
|
("confirm" === t ? o : e)(t);
|
||||||
|
},
|
||||||
|
})
|
||||||
|
);
|
||||||
|
})
|
||||||
|
: Promise.resolve();
|
||||||
|
}
|
||||||
|
const Y = (t) => W(c({ showCancelButton: !0 }, t)),
|
||||||
|
Z = s(X);
|
||||||
|
export { Z as D, W as a, Y as s };
|
|
@ -0,0 +1,340 @@
|
||||||
|
/* empty css */ /* empty css */ import {
|
||||||
|
H as e,
|
||||||
|
I as t,
|
||||||
|
j as l,
|
||||||
|
J as s,
|
||||||
|
K as a,
|
||||||
|
L as i,
|
||||||
|
v as d,
|
||||||
|
M as r,
|
||||||
|
N as c,
|
||||||
|
P as n,
|
||||||
|
Q as o,
|
||||||
|
_ as A,
|
||||||
|
u as p,
|
||||||
|
a as v,
|
||||||
|
k as x,
|
||||||
|
e as f,
|
||||||
|
f as g,
|
||||||
|
t as h,
|
||||||
|
h as m,
|
||||||
|
p as w,
|
||||||
|
R as u,
|
||||||
|
O as R,
|
||||||
|
o as z,
|
||||||
|
q as j,
|
||||||
|
y as B,
|
||||||
|
A as S,
|
||||||
|
B as J,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
import { _ as U } from "./IMG_7054-e9087211.js";
|
||||||
|
import { u as F } from "./useCustomerService-a54309ad.js";
|
||||||
|
import { u as Q } from "./use-placeholder-8391a3e3.js";
|
||||||
|
const [D, b] = e("nav-bar");
|
||||||
|
const E = o(
|
||||||
|
t({
|
||||||
|
name: D,
|
||||||
|
props: {
|
||||||
|
title: String,
|
||||||
|
fixed: Boolean,
|
||||||
|
zIndex: s,
|
||||||
|
border: a,
|
||||||
|
leftText: String,
|
||||||
|
rightText: String,
|
||||||
|
leftDisabled: Boolean,
|
||||||
|
rightDisabled: Boolean,
|
||||||
|
leftArrow: Boolean,
|
||||||
|
placeholder: Boolean,
|
||||||
|
safeAreaInsetTop: Boolean,
|
||||||
|
clickable: a,
|
||||||
|
},
|
||||||
|
emits: ["clickLeft", "clickRight"],
|
||||||
|
setup(e, { emit: t, slots: s }) {
|
||||||
|
const a = l(),
|
||||||
|
o = Q(a, b),
|
||||||
|
A = (l) => {
|
||||||
|
e.leftDisabled || t("clickLeft", l);
|
||||||
|
},
|
||||||
|
p = (l) => {
|
||||||
|
e.rightDisabled || t("clickRight", l);
|
||||||
|
},
|
||||||
|
v = () => {
|
||||||
|
const { title: t, fixed: l, border: o, zIndex: v } = e,
|
||||||
|
x = i(v),
|
||||||
|
f = e.leftArrow || e.leftText || s.left,
|
||||||
|
g = e.rightText || s.right;
|
||||||
|
return d(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
ref: a,
|
||||||
|
style: x,
|
||||||
|
class: [
|
||||||
|
b({ fixed: l }),
|
||||||
|
{ [c]: o, "van-safe-area-top": e.safeAreaInsetTop },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
[
|
||||||
|
d("div", { class: b("content") }, [
|
||||||
|
f &&
|
||||||
|
d(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: [
|
||||||
|
b("left", { disabled: e.leftDisabled }),
|
||||||
|
e.clickable && !e.leftDisabled ? r : "",
|
||||||
|
],
|
||||||
|
onClick: A,
|
||||||
|
},
|
||||||
|
[
|
||||||
|
s.left
|
||||||
|
? s.left()
|
||||||
|
: [
|
||||||
|
e.leftArrow &&
|
||||||
|
d(
|
||||||
|
n,
|
||||||
|
{ class: b("arrow"), name: "arrow-left" },
|
||||||
|
null
|
||||||
|
),
|
||||||
|
e.leftText &&
|
||||||
|
d("span", { class: b("text") }, [e.leftText]),
|
||||||
|
],
|
||||||
|
]
|
||||||
|
),
|
||||||
|
d("div", { class: [b("title"), "van-ellipsis"] }, [
|
||||||
|
s.title ? s.title() : t,
|
||||||
|
]),
|
||||||
|
g &&
|
||||||
|
d(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: [
|
||||||
|
b("right", { disabled: e.rightDisabled }),
|
||||||
|
e.clickable && !e.rightDisabled ? r : "",
|
||||||
|
],
|
||||||
|
onClick: p,
|
||||||
|
},
|
||||||
|
[
|
||||||
|
s.right
|
||||||
|
? s.right()
|
||||||
|
: d("span", { class: b("text") }, [e.rightText]),
|
||||||
|
]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]
|
||||||
|
);
|
||||||
|
};
|
||||||
|
return () => (e.fixed && e.placeholder ? o(v) : v());
|
||||||
|
},
|
||||||
|
})
|
||||||
|
),
|
||||||
|
Y =
|
||||||
|
"data:image/png;base64,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",
|
||||||
|
k = (e) => (S("data-v-21daf3cf"), (e = e()), J(), e),
|
||||||
|
I = { class: "bgmain" },
|
||||||
|
y = { class: "px-14 linear" },
|
||||||
|
C = { class: "flex p-10 bg-white rounded-10" },
|
||||||
|
G = k(() =>
|
||||||
|
g(
|
||||||
|
"img",
|
||||||
|
{ class: "w-38%", src: "/png/name-c152f16f.png", alt: "" },
|
||||||
|
null,
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
K = { class: "font-600 w-62% pospan" },
|
||||||
|
M = { class: "text-18 py-10" },
|
||||||
|
L = { class: "text-grey text-13" },
|
||||||
|
T = { class: "bg-white flex rounded-8 p-10 mt-10 text-14 relative" },
|
||||||
|
W = k(() =>
|
||||||
|
g(
|
||||||
|
"div",
|
||||||
|
null,
|
||||||
|
[
|
||||||
|
g("img", {
|
||||||
|
src: "data:image/png;base64,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",
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
H = { class: "lh-45 pl-10" },
|
||||||
|
P = { class: "lh-45 listS text-13" },
|
||||||
|
O = { class: "bg-white flex rounded-8 p-10 mt-10 text-14 relative" },
|
||||||
|
V = k(() => g("div", null, [g("img", { src: Y })], -1)),
|
||||||
|
q = { class: "lh-45 pl-10" },
|
||||||
|
X = { class: "lh-45 listS text-13" },
|
||||||
|
Z = { class: "bg-white flex rounded-8 p-10 mt-10 text-14 relative" },
|
||||||
|
N = k(() => g("div", null, [g("img", { src: Y })], -1)),
|
||||||
|
_ = { class: "lh-45 pl-10" },
|
||||||
|
$ = { class: "lh-45 listS text-13" },
|
||||||
|
ee = {
|
||||||
|
class:
|
||||||
|
"w-full fixed top-50% left-50% transform -translate-x-50% -translate-y-50% flex flex-col items-center justify-center",
|
||||||
|
},
|
||||||
|
te = k(() => g("source", { src: U, type: "video/mp4" }, null, -1)),
|
||||||
|
le = A(
|
||||||
|
{
|
||||||
|
__name: "index",
|
||||||
|
setup(e) {
|
||||||
|
const t = p(),
|
||||||
|
{ toCustomerService: s } = F();
|
||||||
|
v();
|
||||||
|
const a = l({}),
|
||||||
|
i = l(!1),
|
||||||
|
r = l(null),
|
||||||
|
c = l(null);
|
||||||
|
Promise.all([
|
||||||
|
x({ type: 4, id: 1 }),
|
||||||
|
x({ type: 4, id: 2 }),
|
||||||
|
x({ type: 4, id: 3 }),
|
||||||
|
]).then((e) => {
|
||||||
|
e.forEach((e) => {
|
||||||
|
var t, l;
|
||||||
|
a.value[null == (t = e.data.data) ? void 0 : t.id] =
|
||||||
|
null == (l = e.data.data) ? void 0 : l.video;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
const o = (e) => {
|
||||||
|
1 == e
|
||||||
|
? window.open(t.config.service_1)
|
||||||
|
: 2 == e
|
||||||
|
? window.open(t.config.service_2)
|
||||||
|
: window.open(t.config.service_3);
|
||||||
|
},
|
||||||
|
A = () => {
|
||||||
|
(i.value = !1),
|
||||||
|
c.value && c.value.pause(),
|
||||||
|
(r.value = null),
|
||||||
|
(c.value = null);
|
||||||
|
};
|
||||||
|
return (e, t) => {
|
||||||
|
const l = E,
|
||||||
|
a = n,
|
||||||
|
r = R;
|
||||||
|
return (
|
||||||
|
z(),
|
||||||
|
f("div", I, [
|
||||||
|
d(
|
||||||
|
l,
|
||||||
|
{
|
||||||
|
class: "bggr",
|
||||||
|
title: e.$t("客服中心"),
|
||||||
|
"text-color": "#000",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["title"]
|
||||||
|
),
|
||||||
|
g("div", y, [
|
||||||
|
g("div", C, [
|
||||||
|
G,
|
||||||
|
g("div", K, [
|
||||||
|
g("div", M, h(e.$t("我是在线客服")), 1),
|
||||||
|
g("div", L, h(e.$t("有问题找客服")), 1),
|
||||||
|
g(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"py-8 px-12 wdis items-center justify-center text-#f1f1f1 text-13 bg-#5B56E8 rounded-full",
|
||||||
|
onClick: t[0] || (t[0] = (...e) => m(s) && m(s)(...e)),
|
||||||
|
},
|
||||||
|
h(e.$t("立即咨询")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
g("div", null, [
|
||||||
|
g("div", T, [
|
||||||
|
W,
|
||||||
|
g("div", H, " whatsapp " + h(e.$t("频道")), 1),
|
||||||
|
g("div", P, [
|
||||||
|
g(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "px-10 rounded-20",
|
||||||
|
onClick: t[1] || (t[1] = (e) => o(1)),
|
||||||
|
},
|
||||||
|
h(e.$t("立即加入")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
g("div", O, [
|
||||||
|
V,
|
||||||
|
g("div", q, " telegram " + h(e.$t("群组")), 1),
|
||||||
|
g("div", X, [
|
||||||
|
g(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "px-10 rounded-20",
|
||||||
|
onClick: t[2] || (t[2] = (e) => o(2)),
|
||||||
|
},
|
||||||
|
h(e.$t("立即加入")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
g("div", Z, [
|
||||||
|
N,
|
||||||
|
g("div", _, " telegram " + h(e.$t("频道")), 1),
|
||||||
|
g("div", $, [
|
||||||
|
g(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "px-10 rounded-20",
|
||||||
|
onClick: t[3] || (t[3] = (e) => o(3)),
|
||||||
|
},
|
||||||
|
h(e.$t("立即加入")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
d(
|
||||||
|
r,
|
||||||
|
{
|
||||||
|
class: "!z-9999",
|
||||||
|
show: m(i),
|
||||||
|
"onUpdate:show":
|
||||||
|
t[5] || (t[5] = (e) => (u(i) ? (i.value = e) : null)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: w(() => [
|
||||||
|
g("div", ee, [
|
||||||
|
g(
|
||||||
|
"video",
|
||||||
|
{
|
||||||
|
onClick: t[4] || (t[4] = j(() => {}, ["stop"])),
|
||||||
|
ref_key: "videoPlayer",
|
||||||
|
ref: c,
|
||||||
|
controls: "",
|
||||||
|
preload: "metadata",
|
||||||
|
class: "w-90% max-h-500",
|
||||||
|
},
|
||||||
|
[te, B(" " + h(e.$t("您的浏览器不支持视频标签。")), 1)],
|
||||||
|
512
|
||||||
|
),
|
||||||
|
g(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "mt-20 p-10 rounded-full bg-[rgba(0,0,0,.5)]",
|
||||||
|
onClick: A,
|
||||||
|
},
|
||||||
|
[d(a, { name: "cross", size: "30", color: "#fff" })]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["show"]
|
||||||
|
),
|
||||||
|
])
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-21daf3cf"]]
|
||||||
|
);
|
||||||
|
export { le as default };
|
|
@ -0,0 +1,191 @@
|
||||||
|
import { _ as e, a } from "./inactive-62bbd674.js";
|
||||||
|
import {
|
||||||
|
a as l,
|
||||||
|
aV as t,
|
||||||
|
j as n,
|
||||||
|
aC as o,
|
||||||
|
m as s,
|
||||||
|
p as i,
|
||||||
|
o as r,
|
||||||
|
f as d,
|
||||||
|
e as c,
|
||||||
|
r as f,
|
||||||
|
t as u,
|
||||||
|
i as m,
|
||||||
|
h as v,
|
||||||
|
F as g,
|
||||||
|
bs as p,
|
||||||
|
bt as h,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
var C = {
|
||||||
|
name: "Name",
|
||||||
|
tel: "Phone",
|
||||||
|
save: "Save",
|
||||||
|
clear: "Clear",
|
||||||
|
cancel: "Cancel",
|
||||||
|
confirm: "Confirm",
|
||||||
|
delete: "Delete",
|
||||||
|
loading: "Loading...",
|
||||||
|
noCoupon: "No coupons",
|
||||||
|
nameEmpty: "Please fill in the name",
|
||||||
|
addContact: "Add contact",
|
||||||
|
telInvalid: "Malformed phone number",
|
||||||
|
vanCalendar: {
|
||||||
|
end: "End",
|
||||||
|
start: "Start",
|
||||||
|
title: "Calendar",
|
||||||
|
weekdays: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
|
||||||
|
monthTitle: (e, a) => "".concat(e, "/").concat(a),
|
||||||
|
rangePrompt: (e) => "Choose no more than ".concat(e, " days"),
|
||||||
|
},
|
||||||
|
vanCascader: { select: "Select" },
|
||||||
|
vanPagination: { prev: "Previous", next: "Next" },
|
||||||
|
vanPullRefresh: {
|
||||||
|
pulling: "Pull to refresh...",
|
||||||
|
loosing: "Loose to refresh...",
|
||||||
|
},
|
||||||
|
vanSubmitBar: { label: "Total:" },
|
||||||
|
vanCoupon: {
|
||||||
|
unlimited: "Unlimited",
|
||||||
|
discount: (e) => "".concat(10 * e, "% off"),
|
||||||
|
condition: (e) => "At least ".concat(e),
|
||||||
|
},
|
||||||
|
vanCouponCell: {
|
||||||
|
title: "Coupon",
|
||||||
|
count: (e) => "You have ".concat(e, " coupons"),
|
||||||
|
},
|
||||||
|
vanCouponList: {
|
||||||
|
exchange: "Exchange",
|
||||||
|
close: "Close",
|
||||||
|
enable: "Available",
|
||||||
|
disabled: "Unavailable",
|
||||||
|
placeholder: "Coupon code",
|
||||||
|
},
|
||||||
|
vanAddressEdit: {
|
||||||
|
area: "Area",
|
||||||
|
areaEmpty: "Please select a receiving area",
|
||||||
|
addressEmpty: "Address can not be empty",
|
||||||
|
addressDetail: "Address",
|
||||||
|
defaultAddress: "Set as the default address",
|
||||||
|
},
|
||||||
|
vanAddressList: { add: "Add new address" },
|
||||||
|
};
|
||||||
|
const y = { class: "p-15" },
|
||||||
|
b = ["onClick"],
|
||||||
|
k = { class: "flex items-center justify-between py-8 relative item" },
|
||||||
|
w = { class: "text-13 text-black" },
|
||||||
|
x = { key: 0, class: "w-17 ml-13", src: e, alt: "" },
|
||||||
|
A = { key: 1, class: "w-17 ml-13", src: a, alt: "" },
|
||||||
|
S = {
|
||||||
|
__name: "index",
|
||||||
|
props: { color: { type: String, default: "#fff" } },
|
||||||
|
setup(e) {
|
||||||
|
const a = {
|
||||||
|
zhCN: { lang: "zh-CN", value: h },
|
||||||
|
en: { lang: "en-US", value: C },
|
||||||
|
},
|
||||||
|
{ locale: S, t: _ } = l(),
|
||||||
|
E = t();
|
||||||
|
n(!1);
|
||||||
|
let N = n([
|
||||||
|
{
|
||||||
|
title: "简体中文",
|
||||||
|
id: 2,
|
||||||
|
off: 0,
|
||||||
|
key: "zh-CN",
|
||||||
|
image: new URL(
|
||||||
|
"../../assets/images/language/zh-CN.png",
|
||||||
|
self.location
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "English",
|
||||||
|
id: 1,
|
||||||
|
off: 0,
|
||||||
|
key: "en",
|
||||||
|
image: new URL(
|
||||||
|
"../../assets/images/language/en-US.png",
|
||||||
|
self.location
|
||||||
|
),
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
"zhCN" == E.language
|
||||||
|
? ((N._rawValue[0].off = 1), (N._rawValue[1].off = 0))
|
||||||
|
: ((N._rawValue[0].off = 0), (N._rawValue[1].off = 1));
|
||||||
|
const P = n(!1),
|
||||||
|
L = [
|
||||||
|
{ title: _("简体中文"), id: 2 },
|
||||||
|
{ title: "English", id: 1 },
|
||||||
|
],
|
||||||
|
V = n(L[1]);
|
||||||
|
return (e, l) => {
|
||||||
|
const t = o("normal-layout");
|
||||||
|
return (
|
||||||
|
r(),
|
||||||
|
s(
|
||||||
|
t,
|
||||||
|
{
|
||||||
|
flex: "",
|
||||||
|
"bg-color": "#f6f6f6",
|
||||||
|
"nav-bg-color": "#fff",
|
||||||
|
"text-color": "#000",
|
||||||
|
title: e.$t("语言设置"),
|
||||||
|
backType: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: i(() => [
|
||||||
|
d("div", y, [
|
||||||
|
(r(!0),
|
||||||
|
c(
|
||||||
|
g,
|
||||||
|
null,
|
||||||
|
f(
|
||||||
|
v(N),
|
||||||
|
(e, l) => (
|
||||||
|
r(),
|
||||||
|
c(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
key: e.id,
|
||||||
|
onClick: (l) =>
|
||||||
|
((e) => {
|
||||||
|
for (let a in N._rawValue)
|
||||||
|
N._rawValue[a].off = 0;
|
||||||
|
(e.off = 1),
|
||||||
|
(S.value = e.key),
|
||||||
|
(V.value = e.key),
|
||||||
|
E.setLanguage(e.key),
|
||||||
|
(P.value = !1),
|
||||||
|
p.use(a[e.key].lang, a[e.key].value);
|
||||||
|
})(e),
|
||||||
|
class:
|
||||||
|
"relative px-12 py-5 van-hairline--bottom bg-#fff rounded-8 mb-10",
|
||||||
|
},
|
||||||
|
[
|
||||||
|
d("div", k, [
|
||||||
|
d("div", w, u(e.title), 1),
|
||||||
|
d("div", null, [
|
||||||
|
1 == e.off ? (r(), c("img", x)) : m("", !0),
|
||||||
|
0 == e.off ? (r(), c("img", A)) : m("", !0),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
],
|
||||||
|
8,
|
||||||
|
b
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
|
128
|
||||||
|
)),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["title"]
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
};
|
||||||
|
export { S as default };
|
|
@ -0,0 +1,155 @@
|
||||||
|
import {
|
||||||
|
H as a,
|
||||||
|
I as o,
|
||||||
|
j as r,
|
||||||
|
ay as e,
|
||||||
|
c as l,
|
||||||
|
ag as s,
|
||||||
|
ah as i,
|
||||||
|
w as n,
|
||||||
|
X as t,
|
||||||
|
Z as d,
|
||||||
|
D as c,
|
||||||
|
a8 as u,
|
||||||
|
v,
|
||||||
|
J as g,
|
||||||
|
K as f,
|
||||||
|
a0 as h,
|
||||||
|
as as m,
|
||||||
|
aT as p,
|
||||||
|
aw as w,
|
||||||
|
P as y,
|
||||||
|
Q as b,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
const [z, L] = a("image");
|
||||||
|
const S = b(
|
||||||
|
o({
|
||||||
|
name: z,
|
||||||
|
props: {
|
||||||
|
src: String,
|
||||||
|
alt: String,
|
||||||
|
fit: String,
|
||||||
|
position: String,
|
||||||
|
round: Boolean,
|
||||||
|
block: Boolean,
|
||||||
|
width: g,
|
||||||
|
height: g,
|
||||||
|
radius: g,
|
||||||
|
lazyLoad: Boolean,
|
||||||
|
iconSize: g,
|
||||||
|
showError: f,
|
||||||
|
errorIcon: h("photo-fail"),
|
||||||
|
iconPrefix: String,
|
||||||
|
showLoading: f,
|
||||||
|
loadingIcon: h("photo"),
|
||||||
|
},
|
||||||
|
emits: ["load", "error"],
|
||||||
|
setup(a, { emit: o, slots: g }) {
|
||||||
|
const f = r(!1),
|
||||||
|
h = r(!0),
|
||||||
|
b = r(),
|
||||||
|
{ $Lazyload: z } = e().proxy,
|
||||||
|
S = l(() => {
|
||||||
|
const o = { width: s(a.width), height: s(a.height) };
|
||||||
|
return (
|
||||||
|
i(a.radius) &&
|
||||||
|
((o.overflow = "hidden"), (o.borderRadius = s(a.radius))),
|
||||||
|
o
|
||||||
|
);
|
||||||
|
});
|
||||||
|
n(
|
||||||
|
() => a.src,
|
||||||
|
() => {
|
||||||
|
(f.value = !1), (h.value = !0);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
const x = (a) => {
|
||||||
|
h.value && ((h.value = !1), o("load", a));
|
||||||
|
},
|
||||||
|
I = () => {
|
||||||
|
const a = new Event("load");
|
||||||
|
Object.defineProperty(a, "target", {
|
||||||
|
value: b.value,
|
||||||
|
enumerable: !0,
|
||||||
|
}),
|
||||||
|
x(a);
|
||||||
|
},
|
||||||
|
P = (a) => {
|
||||||
|
(f.value = !0), (h.value = !1), o("error", a);
|
||||||
|
},
|
||||||
|
j = (o, r, e) =>
|
||||||
|
e
|
||||||
|
? e()
|
||||||
|
: v(
|
||||||
|
y,
|
||||||
|
{
|
||||||
|
name: o,
|
||||||
|
size: a.iconSize,
|
||||||
|
class: r,
|
||||||
|
classPrefix: a.iconPrefix,
|
||||||
|
},
|
||||||
|
null
|
||||||
|
),
|
||||||
|
$ = () => {
|
||||||
|
if (f.value || !a.src) return;
|
||||||
|
const o = {
|
||||||
|
alt: a.alt,
|
||||||
|
class: L("img"),
|
||||||
|
style: { objectFit: a.fit, objectPosition: a.position },
|
||||||
|
};
|
||||||
|
return a.lazyLoad
|
||||||
|
? m(v("img", w({ ref: b }, o), null), [[p("lazy"), a.src]])
|
||||||
|
: v(
|
||||||
|
"img",
|
||||||
|
w({ ref: b, src: a.src, onLoad: x, onError: P }, o),
|
||||||
|
null
|
||||||
|
);
|
||||||
|
},
|
||||||
|
E = ({ el: a }) => {
|
||||||
|
const o = () => {
|
||||||
|
a === b.value && h.value && I();
|
||||||
|
};
|
||||||
|
b.value ? o() : u(o);
|
||||||
|
},
|
||||||
|
k = ({ el: a }) => {
|
||||||
|
a !== b.value || f.value || P();
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
z &&
|
||||||
|
t &&
|
||||||
|
(z.$on("loaded", E),
|
||||||
|
z.$on("error", k),
|
||||||
|
d(() => {
|
||||||
|
z.$off("loaded", E), z.$off("error", k);
|
||||||
|
})),
|
||||||
|
c(() => {
|
||||||
|
u(() => {
|
||||||
|
var o;
|
||||||
|
(null == (o = b.value) ? void 0 : o.complete) && !a.lazyLoad && I();
|
||||||
|
});
|
||||||
|
}),
|
||||||
|
() => {
|
||||||
|
var o;
|
||||||
|
return v(
|
||||||
|
"div",
|
||||||
|
{ class: L({ round: a.round, block: a.block }), style: S.value },
|
||||||
|
[
|
||||||
|
$(),
|
||||||
|
h.value && a.showLoading
|
||||||
|
? v("div", { class: L("loading") }, [
|
||||||
|
j(a.loadingIcon, L("loading-icon"), g.loading),
|
||||||
|
])
|
||||||
|
: f.value && a.showError
|
||||||
|
? v("div", { class: L("error") }, [
|
||||||
|
j(a.errorIcon, L("error-icon"), g.error),
|
||||||
|
])
|
||||||
|
: void 0,
|
||||||
|
null == (o = g.default) ? void 0 : o.call(g),
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
})
|
||||||
|
);
|
||||||
|
export { S as I };
|
|
@ -0,0 +1,128 @@
|
||||||
|
import { a as l, u as e } from "./use-route-126c4f06.js";
|
||||||
|
import {
|
||||||
|
H as a,
|
||||||
|
a5 as r,
|
||||||
|
I as i,
|
||||||
|
v as t,
|
||||||
|
a0 as n,
|
||||||
|
J as s,
|
||||||
|
K as o,
|
||||||
|
an as c,
|
||||||
|
ah as u,
|
||||||
|
P as d,
|
||||||
|
Q as v,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
const [b, f] = a("cell"),
|
||||||
|
g = {
|
||||||
|
tag: n("div"),
|
||||||
|
icon: String,
|
||||||
|
size: String,
|
||||||
|
title: s,
|
||||||
|
value: s,
|
||||||
|
label: s,
|
||||||
|
center: Boolean,
|
||||||
|
isLink: Boolean,
|
||||||
|
border: o,
|
||||||
|
required: Boolean,
|
||||||
|
iconPrefix: String,
|
||||||
|
valueClass: c,
|
||||||
|
labelClass: c,
|
||||||
|
titleClass: c,
|
||||||
|
titleStyle: null,
|
||||||
|
arrowDirection: String,
|
||||||
|
clickable: { type: Boolean, default: null },
|
||||||
|
};
|
||||||
|
const p = v(
|
||||||
|
i({
|
||||||
|
name: b,
|
||||||
|
props: r({}, g, l),
|
||||||
|
setup(l, { slots: a }) {
|
||||||
|
const r = e(),
|
||||||
|
i = () => {
|
||||||
|
if (a.label || u(l.label))
|
||||||
|
return t("div", { class: [f("label"), l.labelClass] }, [
|
||||||
|
a.label ? a.label() : l.label,
|
||||||
|
]);
|
||||||
|
},
|
||||||
|
n = () => {
|
||||||
|
var e;
|
||||||
|
if (a.title || u(l.title)) {
|
||||||
|
const r = null == (e = a.title) ? void 0 : e.call(a);
|
||||||
|
if (Array.isArray(r) && 0 === r.length) return;
|
||||||
|
return t(
|
||||||
|
"div",
|
||||||
|
{ class: [f("title"), l.titleClass], style: l.titleStyle },
|
||||||
|
[r || t("span", null, [l.title]), i()]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
s = () => {
|
||||||
|
const e = a.value || a.default;
|
||||||
|
if (e || u(l.value))
|
||||||
|
return t("div", { class: [f("value"), l.valueClass] }, [
|
||||||
|
e ? e() : t("span", null, [l.value]),
|
||||||
|
]);
|
||||||
|
},
|
||||||
|
o = () => {
|
||||||
|
if (a["right-icon"]) return a["right-icon"]();
|
||||||
|
if (l.isLink) {
|
||||||
|
const e =
|
||||||
|
l.arrowDirection && "right" !== l.arrowDirection
|
||||||
|
? "arrow-".concat(l.arrowDirection)
|
||||||
|
: "arrow";
|
||||||
|
return t(d, { name: e, class: f("right-icon") }, null);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return () => {
|
||||||
|
var e;
|
||||||
|
const {
|
||||||
|
tag: i,
|
||||||
|
size: c,
|
||||||
|
center: u,
|
||||||
|
border: v,
|
||||||
|
isLink: b,
|
||||||
|
required: g,
|
||||||
|
} = l,
|
||||||
|
p = null != (e = l.clickable) ? e : b,
|
||||||
|
C = { center: u, required: g, clickable: p, borderless: !v };
|
||||||
|
return (
|
||||||
|
c && (C[c] = !!c),
|
||||||
|
t(
|
||||||
|
i,
|
||||||
|
{
|
||||||
|
class: f(C),
|
||||||
|
role: p ? "button" : void 0,
|
||||||
|
tabindex: p ? 0 : void 0,
|
||||||
|
onClick: r,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: () => {
|
||||||
|
var e;
|
||||||
|
return [
|
||||||
|
a.icon
|
||||||
|
? a.icon()
|
||||||
|
: l.icon
|
||||||
|
? t(
|
||||||
|
d,
|
||||||
|
{
|
||||||
|
name: l.icon,
|
||||||
|
class: f("left-icon"),
|
||||||
|
classPrefix: l.iconPrefix,
|
||||||
|
},
|
||||||
|
null
|
||||||
|
)
|
||||||
|
: void 0,
|
||||||
|
n(),
|
||||||
|
s(),
|
||||||
|
o(),
|
||||||
|
null == (e = a.extra) ? void 0 : e.call(a),
|
||||||
|
];
|
||||||
|
},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
})
|
||||||
|
);
|
||||||
|
export { p as C, g as c };
|
|
@ -0,0 +1,122 @@
|
||||||
|
import {
|
||||||
|
H as e,
|
||||||
|
I as a,
|
||||||
|
ae as r,
|
||||||
|
ad as t,
|
||||||
|
v as n,
|
||||||
|
J as o,
|
||||||
|
K as l,
|
||||||
|
aE as s,
|
||||||
|
bm as i,
|
||||||
|
Q as d,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
const [m, u] = e("form");
|
||||||
|
const c = d(
|
||||||
|
a({
|
||||||
|
name: m,
|
||||||
|
props: {
|
||||||
|
colon: Boolean,
|
||||||
|
disabled: Boolean,
|
||||||
|
readonly: Boolean,
|
||||||
|
showError: Boolean,
|
||||||
|
labelWidth: o,
|
||||||
|
labelAlign: String,
|
||||||
|
inputAlign: String,
|
||||||
|
scrollToError: Boolean,
|
||||||
|
validateFirst: Boolean,
|
||||||
|
submitOnEnter: l,
|
||||||
|
showErrorMessage: l,
|
||||||
|
errorMessageAlign: String,
|
||||||
|
validateTrigger: { type: [String, Array], default: "onBlur" },
|
||||||
|
},
|
||||||
|
emits: ["submit", "failed"],
|
||||||
|
setup(e, { emit: a, slots: o }) {
|
||||||
|
const { children: l, linkChildren: d } = r(i),
|
||||||
|
m = (e) => (e ? l.filter((a) => e.includes(a.name)) : l),
|
||||||
|
c = (a) => {
|
||||||
|
return "string" == typeof a
|
||||||
|
? ((e) => {
|
||||||
|
const a = l.find((a) => a.name === e);
|
||||||
|
return a
|
||||||
|
? new Promise((e, r) => {
|
||||||
|
a.validate().then((a) => {
|
||||||
|
a ? r(a) : e();
|
||||||
|
});
|
||||||
|
})
|
||||||
|
: Promise.reject();
|
||||||
|
})(a)
|
||||||
|
: e.validateFirst
|
||||||
|
? ((r = a),
|
||||||
|
new Promise((e, a) => {
|
||||||
|
const t = [];
|
||||||
|
m(r)
|
||||||
|
.reduce(
|
||||||
|
(e, a) =>
|
||||||
|
e.then(() => {
|
||||||
|
if (!t.length)
|
||||||
|
return a.validate().then((e) => {
|
||||||
|
e && t.push(e);
|
||||||
|
});
|
||||||
|
}),
|
||||||
|
Promise.resolve()
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
t.length ? a(t) : e();
|
||||||
|
});
|
||||||
|
}))
|
||||||
|
: ((e) =>
|
||||||
|
new Promise((a, r) => {
|
||||||
|
const t = m(e);
|
||||||
|
Promise.all(t.map((e) => e.validate())).then((e) => {
|
||||||
|
(e = e.filter(Boolean)).length ? r(e) : a();
|
||||||
|
});
|
||||||
|
}))(a);
|
||||||
|
var r;
|
||||||
|
},
|
||||||
|
g = (e, a) => {
|
||||||
|
l.some((r) => r.name === e && (r.$el.scrollIntoView(a), !0));
|
||||||
|
},
|
||||||
|
h = () =>
|
||||||
|
l.reduce(
|
||||||
|
(e, a) => (void 0 !== a.name && (e[a.name] = a.formValue.value), e),
|
||||||
|
{}
|
||||||
|
),
|
||||||
|
f = () => {
|
||||||
|
const r = h();
|
||||||
|
c()
|
||||||
|
.then(() => a("submit", r))
|
||||||
|
.catch((t) => {
|
||||||
|
a("failed", { values: r, errors: t }),
|
||||||
|
e.scrollToError && t[0].name && g(t[0].name);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
v = (e) => {
|
||||||
|
s(e), f();
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
d({ props: e }),
|
||||||
|
t({
|
||||||
|
submit: f,
|
||||||
|
validate: c,
|
||||||
|
getValues: h,
|
||||||
|
scrollToField: g,
|
||||||
|
resetValidation: (e) => {
|
||||||
|
"string" == typeof e && (e = [e]);
|
||||||
|
m(e).forEach((e) => {
|
||||||
|
e.resetValidation();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
getValidationStatus: () =>
|
||||||
|
l.reduce((e, a) => ((e[a.name] = a.getValidationStatus()), e), {}),
|
||||||
|
}),
|
||||||
|
() => {
|
||||||
|
var e;
|
||||||
|
return n("form", { class: u(), onSubmit: v }, [
|
||||||
|
null == (e = o.default) ? void 0 : e.call(o),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
})
|
||||||
|
);
|
||||||
|
export { c as F };
|
|
@ -0,0 +1,365 @@
|
||||||
|
import {
|
||||||
|
H as e,
|
||||||
|
K as a,
|
||||||
|
J as t,
|
||||||
|
a1 as i,
|
||||||
|
I as l,
|
||||||
|
j as o,
|
||||||
|
a3 as s,
|
||||||
|
aD as n,
|
||||||
|
ae as c,
|
||||||
|
c as u,
|
||||||
|
ad as v,
|
||||||
|
w as r,
|
||||||
|
aa as h,
|
||||||
|
ab as p,
|
||||||
|
aU as f,
|
||||||
|
D as d,
|
||||||
|
l as g,
|
||||||
|
af as w,
|
||||||
|
Y as m,
|
||||||
|
Z as b,
|
||||||
|
a6 as x,
|
||||||
|
v as y,
|
||||||
|
aq as C,
|
||||||
|
a7 as S,
|
||||||
|
a8 as z,
|
||||||
|
aE as M,
|
||||||
|
aF as T,
|
||||||
|
Q as D,
|
||||||
|
ao as I,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
const [Y, E] = e("swipe"),
|
||||||
|
O = {
|
||||||
|
loop: a,
|
||||||
|
width: t,
|
||||||
|
height: t,
|
||||||
|
vertical: Boolean,
|
||||||
|
autoplay: i(0),
|
||||||
|
duration: i(500),
|
||||||
|
touchable: a,
|
||||||
|
lazyRender: Boolean,
|
||||||
|
initialSwipe: i(0),
|
||||||
|
indicatorColor: String,
|
||||||
|
showIndicators: a,
|
||||||
|
stopPropagation: a,
|
||||||
|
},
|
||||||
|
X = Symbol(Y);
|
||||||
|
const k = D(
|
||||||
|
l({
|
||||||
|
name: Y,
|
||||||
|
props: O,
|
||||||
|
emits: ["change", "dragStart", "dragEnd"],
|
||||||
|
setup(e, { emit: a, slots: t }) {
|
||||||
|
const i = o(),
|
||||||
|
l = o(),
|
||||||
|
D = s({
|
||||||
|
rect: null,
|
||||||
|
width: 0,
|
||||||
|
height: 0,
|
||||||
|
offset: 0,
|
||||||
|
active: 0,
|
||||||
|
swiping: !1,
|
||||||
|
});
|
||||||
|
let I = !1;
|
||||||
|
const Y = n(),
|
||||||
|
{ children: O, linkChildren: k } = c(X),
|
||||||
|
P = u(() => O.length),
|
||||||
|
j = u(() => D[e.vertical ? "height" : "width"]),
|
||||||
|
B = u(() => (e.vertical ? Y.deltaY.value : Y.deltaX.value)),
|
||||||
|
H = u(() => {
|
||||||
|
if (D.rect) {
|
||||||
|
return (
|
||||||
|
(e.vertical ? D.rect.height : D.rect.width) - j.value * P.value
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}),
|
||||||
|
R = u(() =>
|
||||||
|
j.value ? Math.ceil(Math.abs(H.value) / j.value) : P.value
|
||||||
|
),
|
||||||
|
q = u(() => P.value * j.value),
|
||||||
|
A = u(() => (D.active + P.value) % P.value),
|
||||||
|
F = u(() => {
|
||||||
|
const a = e.vertical ? "vertical" : "horizontal";
|
||||||
|
return Y.direction.value === a;
|
||||||
|
}),
|
||||||
|
J = u(() => {
|
||||||
|
const a = {
|
||||||
|
transitionDuration: "".concat(D.swiping ? 0 : e.duration, "ms"),
|
||||||
|
transform: "translate"
|
||||||
|
.concat(e.vertical ? "Y" : "X", "(")
|
||||||
|
.concat(D.offset, "px)"),
|
||||||
|
};
|
||||||
|
if (j.value) {
|
||||||
|
const t = e.vertical ? "height" : "width",
|
||||||
|
i = e.vertical ? "width" : "height";
|
||||||
|
(a[t] = "".concat(q.value, "px")),
|
||||||
|
(a[i] = e[i] ? "".concat(e[i], "px") : "");
|
||||||
|
}
|
||||||
|
return a;
|
||||||
|
}),
|
||||||
|
K = (a, t = 0) => {
|
||||||
|
let i = a * j.value;
|
||||||
|
e.loop || (i = Math.min(i, -H.value));
|
||||||
|
let l = t - i;
|
||||||
|
return e.loop || (l = T(l, H.value, 0)), l;
|
||||||
|
},
|
||||||
|
Q = ({ pace: t = 0, offset: i = 0, emitChange: l }) => {
|
||||||
|
if (P.value <= 1) return;
|
||||||
|
const { active: o } = D,
|
||||||
|
s = ((a) => {
|
||||||
|
const { active: t } = D;
|
||||||
|
return a
|
||||||
|
? e.loop
|
||||||
|
? T(t + a, -1, P.value)
|
||||||
|
: T(t + a, 0, R.value)
|
||||||
|
: t;
|
||||||
|
})(t),
|
||||||
|
n = K(s, i);
|
||||||
|
if (e.loop) {
|
||||||
|
if (O[0] && n !== H.value) {
|
||||||
|
const e = n < H.value;
|
||||||
|
O[0].setOffset(e ? q.value : 0);
|
||||||
|
}
|
||||||
|
if (O[P.value - 1] && 0 !== n) {
|
||||||
|
const e = n > 0;
|
||||||
|
O[P.value - 1].setOffset(e ? -q.value : 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
(D.active = s),
|
||||||
|
(D.offset = n),
|
||||||
|
l && s !== o && a("change", A.value);
|
||||||
|
},
|
||||||
|
U = () => {
|
||||||
|
(D.swiping = !0),
|
||||||
|
D.active <= -1
|
||||||
|
? Q({ pace: P.value })
|
||||||
|
: D.active >= P.value && Q({ pace: -P.value });
|
||||||
|
},
|
||||||
|
W = () => {
|
||||||
|
U(),
|
||||||
|
Y.reset(),
|
||||||
|
C(() => {
|
||||||
|
(D.swiping = !1), Q({ pace: 1, emitChange: !0 });
|
||||||
|
});
|
||||||
|
};
|
||||||
|
let Z;
|
||||||
|
const G = () => clearTimeout(Z),
|
||||||
|
L = () => {
|
||||||
|
G(),
|
||||||
|
+e.autoplay > 0 &&
|
||||||
|
P.value > 1 &&
|
||||||
|
(Z = setTimeout(() => {
|
||||||
|
W(), L();
|
||||||
|
}, +e.autoplay));
|
||||||
|
},
|
||||||
|
N = (a = +e.initialSwipe) => {
|
||||||
|
if (!i.value) return;
|
||||||
|
const t = () => {
|
||||||
|
var t, l;
|
||||||
|
if (!S(i)) {
|
||||||
|
const a = {
|
||||||
|
width: i.value.offsetWidth,
|
||||||
|
height: i.value.offsetHeight,
|
||||||
|
};
|
||||||
|
(D.rect = a),
|
||||||
|
(D.width = +(null != (t = e.width) ? t : a.width)),
|
||||||
|
(D.height = +(null != (l = e.height) ? l : a.height));
|
||||||
|
}
|
||||||
|
P.value &&
|
||||||
|
-1 === (a = Math.min(P.value - 1, a)) &&
|
||||||
|
(a = P.value - 1),
|
||||||
|
(D.active = a),
|
||||||
|
(D.swiping = !0),
|
||||||
|
(D.offset = K(a)),
|
||||||
|
O.forEach((e) => {
|
||||||
|
e.setOffset(0);
|
||||||
|
}),
|
||||||
|
L();
|
||||||
|
};
|
||||||
|
S(i) ? z().then(t) : t();
|
||||||
|
},
|
||||||
|
V = () => N(D.active);
|
||||||
|
let $;
|
||||||
|
const _ = (a) => {
|
||||||
|
!e.touchable ||
|
||||||
|
a.touches.length > 1 ||
|
||||||
|
(Y.start(a), (I = !1), ($ = Date.now()), G(), U());
|
||||||
|
},
|
||||||
|
ee = () => {
|
||||||
|
if (!e.touchable || !D.swiping) return;
|
||||||
|
const t = Date.now() - $,
|
||||||
|
i = B.value / t;
|
||||||
|
if (
|
||||||
|
(Math.abs(i) > 0.25 || Math.abs(B.value) > j.value / 2) &&
|
||||||
|
F.value
|
||||||
|
) {
|
||||||
|
const a = e.vertical ? Y.offsetY.value : Y.offsetX.value;
|
||||||
|
let t = 0;
|
||||||
|
(t = e.loop
|
||||||
|
? a > 0
|
||||||
|
? B.value > 0
|
||||||
|
? -1
|
||||||
|
: 1
|
||||||
|
: 0
|
||||||
|
: -Math[B.value > 0 ? "ceil" : "floor"](B.value / j.value)),
|
||||||
|
Q({ pace: t, emitChange: !0 });
|
||||||
|
} else B.value && Q({ pace: 0 });
|
||||||
|
(I = !1), (D.swiping = !1), a("dragEnd", { index: A.value }), L();
|
||||||
|
},
|
||||||
|
ae = (a, t) => {
|
||||||
|
const i = t === A.value,
|
||||||
|
l = i ? { backgroundColor: e.indicatorColor } : void 0;
|
||||||
|
return y(
|
||||||
|
"i",
|
||||||
|
{ style: l, class: E("indicator", { active: i }) },
|
||||||
|
null
|
||||||
|
);
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
v({
|
||||||
|
prev: () => {
|
||||||
|
U(),
|
||||||
|
Y.reset(),
|
||||||
|
C(() => {
|
||||||
|
(D.swiping = !1), Q({ pace: -1, emitChange: !0 });
|
||||||
|
});
|
||||||
|
},
|
||||||
|
next: W,
|
||||||
|
state: D,
|
||||||
|
resize: V,
|
||||||
|
swipeTo: (a, t = {}) => {
|
||||||
|
U(),
|
||||||
|
Y.reset(),
|
||||||
|
C(() => {
|
||||||
|
let i;
|
||||||
|
(i =
|
||||||
|
e.loop && a === P.value
|
||||||
|
? 0 === D.active
|
||||||
|
? 0
|
||||||
|
: a
|
||||||
|
: a % P.value),
|
||||||
|
t.immediate
|
||||||
|
? C(() => {
|
||||||
|
D.swiping = !1;
|
||||||
|
})
|
||||||
|
: (D.swiping = !1),
|
||||||
|
Q({ pace: i - D.active, emitChange: !0 });
|
||||||
|
});
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
k({ size: j, props: e, count: P, activeIndicator: A }),
|
||||||
|
r(
|
||||||
|
() => e.initialSwipe,
|
||||||
|
(e) => N(+e)
|
||||||
|
),
|
||||||
|
r(P, () => N(D.active)),
|
||||||
|
r(() => e.autoplay, L),
|
||||||
|
r([h, p, () => e.width, () => e.height], V),
|
||||||
|
r(f(), (e) => {
|
||||||
|
"visible" === e ? L() : G();
|
||||||
|
}),
|
||||||
|
d(N),
|
||||||
|
g(() => N(D.active)),
|
||||||
|
w(() => N(D.active)),
|
||||||
|
m(G),
|
||||||
|
b(G),
|
||||||
|
x(
|
||||||
|
"touchmove",
|
||||||
|
(t) => {
|
||||||
|
if (e.touchable && D.swiping && (Y.move(t), F.value)) {
|
||||||
|
(!e.loop &&
|
||||||
|
((0 === D.active && B.value > 0) ||
|
||||||
|
(D.active === P.value - 1 && B.value < 0))) ||
|
||||||
|
(M(t, e.stopPropagation),
|
||||||
|
Q({ offset: B.value }),
|
||||||
|
I || (a("dragStart", { index: A.value }), (I = !0)));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ target: l }
|
||||||
|
),
|
||||||
|
() => {
|
||||||
|
var a;
|
||||||
|
return y("div", { ref: i, class: E() }, [
|
||||||
|
y(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
ref: l,
|
||||||
|
style: J.value,
|
||||||
|
class: E("track", { vertical: e.vertical }),
|
||||||
|
onTouchstartPassive: _,
|
||||||
|
onTouchend: ee,
|
||||||
|
onTouchcancel: ee,
|
||||||
|
},
|
||||||
|
[null == (a = t.default) ? void 0 : a.call(t)]
|
||||||
|
),
|
||||||
|
t.indicator
|
||||||
|
? t.indicator({ active: A.value, total: P.value })
|
||||||
|
: e.showIndicators && P.value > 1
|
||||||
|
? y(
|
||||||
|
"div",
|
||||||
|
{ class: E("indicators", { vertical: e.vertical }) },
|
||||||
|
[Array(P.value).fill("").map(ae)]
|
||||||
|
)
|
||||||
|
: void 0,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
})
|
||||||
|
),
|
||||||
|
[P, j] = e("swipe-item");
|
||||||
|
const B = D(
|
||||||
|
l({
|
||||||
|
name: P,
|
||||||
|
setup(e, { slots: a }) {
|
||||||
|
let t;
|
||||||
|
const i = s({ offset: 0, inited: !1, mounted: !1 }),
|
||||||
|
{ parent: l, index: o } = I(X);
|
||||||
|
if (!l) return;
|
||||||
|
const n = u(() => {
|
||||||
|
const e = {},
|
||||||
|
{ vertical: a } = l.props;
|
||||||
|
return (
|
||||||
|
l.size.value &&
|
||||||
|
(e[a ? "height" : "width"] = "".concat(l.size.value, "px")),
|
||||||
|
i.offset &&
|
||||||
|
(e.transform = "translate"
|
||||||
|
.concat(a ? "Y" : "X", "(")
|
||||||
|
.concat(i.offset, "px)")),
|
||||||
|
e
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
c = u(() => {
|
||||||
|
const { loop: e, lazyRender: a } = l.props;
|
||||||
|
if (!a || t) return !0;
|
||||||
|
if (!i.mounted) return !1;
|
||||||
|
const s = l.activeIndicator.value,
|
||||||
|
n = l.count.value - 1,
|
||||||
|
c = 0 === s && e ? n : s - 1,
|
||||||
|
u = s === n && e ? 0 : s + 1;
|
||||||
|
return (t = o.value === s || o.value === c || o.value === u), t;
|
||||||
|
});
|
||||||
|
return (
|
||||||
|
d(() => {
|
||||||
|
z(() => {
|
||||||
|
i.mounted = !0;
|
||||||
|
});
|
||||||
|
}),
|
||||||
|
v({
|
||||||
|
setOffset: (e) => {
|
||||||
|
i.offset = e;
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
() => {
|
||||||
|
var e;
|
||||||
|
return y("div", { class: j(), style: n.value }, [
|
||||||
|
c.value ? (null == (e = a.default) ? void 0 : e.call(a)) : null,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
})
|
||||||
|
);
|
||||||
|
export { B as S, k as a };
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,204 @@
|
||||||
|
import {
|
||||||
|
_ as t,
|
||||||
|
u as e,
|
||||||
|
a,
|
||||||
|
c as s,
|
||||||
|
g as c,
|
||||||
|
b as n,
|
||||||
|
d as i,
|
||||||
|
o as l,
|
||||||
|
e as r,
|
||||||
|
f as o,
|
||||||
|
F as p,
|
||||||
|
r as h,
|
||||||
|
h as v,
|
||||||
|
n as g,
|
||||||
|
t as u,
|
||||||
|
i as x,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
const d = { class: "tabbar-wrapper w-full relative z-10 van-hairline--top" },
|
||||||
|
f = { class: "flex h-full" },
|
||||||
|
k = ["onClick"],
|
||||||
|
m = { key: 0, class: "text-center" },
|
||||||
|
b = ["src"],
|
||||||
|
I = ["src"],
|
||||||
|
_ = { key: 1, class: "text-center pos" },
|
||||||
|
y = { class: "bg-#DDDCFC text-center tabs" },
|
||||||
|
w = ["src"],
|
||||||
|
C = ["src"],
|
||||||
|
D = t(
|
||||||
|
{
|
||||||
|
__name: "index",
|
||||||
|
setup(t) {
|
||||||
|
const { changeUserInfo: D, getToken: j } = e(),
|
||||||
|
{ t: B } = a(),
|
||||||
|
E = s(() => [
|
||||||
|
{
|
||||||
|
title: B("首页"),
|
||||||
|
path: "/",
|
||||||
|
icon: c("one.png"),
|
||||||
|
activeIcon: c("one_c.png"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: B("推广"),
|
||||||
|
path: "/subscription",
|
||||||
|
icon: c("two.png"),
|
||||||
|
activeIcon: c("two_c.png"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: B("开始任务"),
|
||||||
|
path: "/autoTask",
|
||||||
|
icon: c("taberbar.png"),
|
||||||
|
activeIcon: c("taberbar.png"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: B("客服"),
|
||||||
|
path: "/service",
|
||||||
|
icon: c("three.png"),
|
||||||
|
activeIcon: c("three_c.png"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: B("账户"),
|
||||||
|
path: "/mine",
|
||||||
|
icon: c("four.png"),
|
||||||
|
activeIcon: c("four_c.png"),
|
||||||
|
},
|
||||||
|
]),
|
||||||
|
F = n(),
|
||||||
|
T = i();
|
||||||
|
return (t, e) => (
|
||||||
|
l(),
|
||||||
|
r("div", d, [
|
||||||
|
o("div", f, [
|
||||||
|
(l(!0),
|
||||||
|
r(
|
||||||
|
p,
|
||||||
|
null,
|
||||||
|
h(
|
||||||
|
v(E),
|
||||||
|
(t, e) => (
|
||||||
|
l(),
|
||||||
|
r(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"flex-1 flex flex-col justify-center items-center",
|
||||||
|
key: e,
|
||||||
|
onClick: (e) => {
|
||||||
|
return (a = t.path), D(), void F.push(a);
|
||||||
|
var a;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[
|
||||||
|
2 != e
|
||||||
|
? (l(),
|
||||||
|
r("div", m, [
|
||||||
|
v(T).path === t.path
|
||||||
|
? (l(),
|
||||||
|
r(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
key: 0,
|
||||||
|
class: "h-22",
|
||||||
|
src: t.activeIcon,
|
||||||
|
alt: "",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
b
|
||||||
|
))
|
||||||
|
: (l(),
|
||||||
|
r(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
key: 1,
|
||||||
|
class: "h-22",
|
||||||
|
src: t.icon,
|
||||||
|
alt: "",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
I
|
||||||
|
)),
|
||||||
|
o(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: g([
|
||||||
|
"mt-4 text-12 text-center",
|
||||||
|
[
|
||||||
|
v(T).path === t.path
|
||||||
|
? "text-[#5B56E8]"
|
||||||
|
: "text-[#999]",
|
||||||
|
],
|
||||||
|
]),
|
||||||
|
},
|
||||||
|
u(t.title),
|
||||||
|
3
|
||||||
|
),
|
||||||
|
]))
|
||||||
|
: x("", !0),
|
||||||
|
2 == e
|
||||||
|
? (l(),
|
||||||
|
r("div", _, [
|
||||||
|
o("div", y, [
|
||||||
|
v(T).path === t.path
|
||||||
|
? (l(),
|
||||||
|
r(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
key: 0,
|
||||||
|
class: "h-20",
|
||||||
|
src: t.activeIcon,
|
||||||
|
alt: "",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
w
|
||||||
|
))
|
||||||
|
: (l(),
|
||||||
|
r(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
key: 1,
|
||||||
|
class: "h-20",
|
||||||
|
src: t.icon,
|
||||||
|
alt: "",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
C
|
||||||
|
)),
|
||||||
|
]),
|
||||||
|
o(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: g([
|
||||||
|
"mt-4 text-12 text-center",
|
||||||
|
[
|
||||||
|
v(T).path === t.path
|
||||||
|
? "text-[#5B56E8]"
|
||||||
|
: "text-[#999]",
|
||||||
|
],
|
||||||
|
]),
|
||||||
|
},
|
||||||
|
u(t.title),
|
||||||
|
3
|
||||||
|
),
|
||||||
|
]))
|
||||||
|
: x("", !0),
|
||||||
|
],
|
||||||
|
8,
|
||||||
|
k
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
|
128
|
||||||
|
)),
|
||||||
|
]),
|
||||||
|
])
|
||||||
|
);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-425207e6"]]
|
||||||
|
);
|
||||||
|
export { D as default };
|
|
@ -0,0 +1,381 @@
|
||||||
|
import {
|
||||||
|
_ as e,
|
||||||
|
a as t,
|
||||||
|
j as a,
|
||||||
|
c as l,
|
||||||
|
aC as s,
|
||||||
|
e as n,
|
||||||
|
v as i,
|
||||||
|
f as o,
|
||||||
|
y as u,
|
||||||
|
t as c,
|
||||||
|
F as r,
|
||||||
|
r as d,
|
||||||
|
az as v,
|
||||||
|
aW as f,
|
||||||
|
G as g,
|
||||||
|
o as p,
|
||||||
|
n as x,
|
||||||
|
i as y,
|
||||||
|
A as b,
|
||||||
|
B as h,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
import { c as _, d as m } from "./api.mine-40f950d7.js";
|
||||||
|
const k = (e) => (b("data-v-9ae0d32f"), (e = e()), h(), e),
|
||||||
|
$ = k(() => o("div", { class: "relative pt-15" }, null, -1)),
|
||||||
|
w = { class: "px-10 pb-20 bg-#5A55E6" },
|
||||||
|
M = { class: "bg-white rounded-5 pb-30 shadow-lg" },
|
||||||
|
D = {
|
||||||
|
class: "border-b border-b-solid border-b-#eeecec p-10 font-600 text-15",
|
||||||
|
},
|
||||||
|
j = ["innerHTML"],
|
||||||
|
C = ["innerHTML"],
|
||||||
|
T = { class: "calendar" },
|
||||||
|
A = { class: "month-year text-16 text-center" },
|
||||||
|
F = { class: "grid gap-10 px-10" },
|
||||||
|
H = ["onClick"],
|
||||||
|
L = { class: "relative" },
|
||||||
|
E = k(() =>
|
||||||
|
o(
|
||||||
|
"img",
|
||||||
|
{ class: "w-30", src: "/png/name-ad7bf4cb.png", alt: "" },
|
||||||
|
null,
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
Y = { class: "absolute left-1/2 top-1/2 -translate-1/2 text-white text-14" },
|
||||||
|
B = { class: "text-8 w-full text-center py-4 rounded-4 mt-4" },
|
||||||
|
z = { key: 0, class: "text-12 text-#ff0000 font-600" },
|
||||||
|
G = { key: 0, class: "text-10" },
|
||||||
|
I = { key: 1, class: "text-12" },
|
||||||
|
J = { class: "bg-white p-14 mt-15 rounded-4 shadow-lg" },
|
||||||
|
O = { class: "mb-4 font-600" },
|
||||||
|
W = { class: "pt-8 lh-20 text-14" },
|
||||||
|
q = { class: "pt-8 lh-20 text-14" },
|
||||||
|
K = { class: "pt-8 lh-20 text-14" },
|
||||||
|
N = { class: "pt-8 lh-20 text-14" },
|
||||||
|
P = e(
|
||||||
|
{
|
||||||
|
__name: "index",
|
||||||
|
setup(e) {
|
||||||
|
const { t: b } = t(),
|
||||||
|
h = a(new Date()),
|
||||||
|
k = l(() => {
|
||||||
|
const e = h.value.getFullYear(),
|
||||||
|
t = h.value.getMonth() + 1;
|
||||||
|
return "".concat(e, ".").concat(t);
|
||||||
|
}),
|
||||||
|
P = l(() => [
|
||||||
|
b("一"),
|
||||||
|
b("二"),
|
||||||
|
b("三"),
|
||||||
|
b("四"),
|
||||||
|
b("五"),
|
||||||
|
b("六"),
|
||||||
|
b("日"),
|
||||||
|
]),
|
||||||
|
Q = l(() => h.value.getMonth()),
|
||||||
|
R = l(() => h.value.getDate()),
|
||||||
|
S = l(() => {
|
||||||
|
const e = h.value.getFullYear(),
|
||||||
|
t = h.value.getMonth(),
|
||||||
|
a = new Date(e, t, 1).getDay(),
|
||||||
|
l = new Date(e, t + 1, 0).getDate(),
|
||||||
|
s = [];
|
||||||
|
for (let n = 0; n < (a + 6) % 7; n++) s.push("");
|
||||||
|
for (let n = 1; n <= l; n++) s.push(n);
|
||||||
|
return s;
|
||||||
|
}),
|
||||||
|
U = a({}),
|
||||||
|
V = () => {
|
||||||
|
_().then((e) => {
|
||||||
|
U.value = e.data;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
V();
|
||||||
|
const X = async () => {
|
||||||
|
if (1 == +U.value.today_sign) return;
|
||||||
|
v({ duration: 0, forbidClick: !0 });
|
||||||
|
const e = await m();
|
||||||
|
V(), f(), 1 == e.code && g(b("签到成功"));
|
||||||
|
};
|
||||||
|
return (e, t) => {
|
||||||
|
const a = s("normal-layout");
|
||||||
|
return (
|
||||||
|
p(),
|
||||||
|
n(
|
||||||
|
r,
|
||||||
|
null,
|
||||||
|
[
|
||||||
|
i(
|
||||||
|
a,
|
||||||
|
{
|
||||||
|
flex: "",
|
||||||
|
title: e.$t("签到"),
|
||||||
|
"bg-color": "#5A55E6",
|
||||||
|
backType: 0,
|
||||||
|
"nav-bg-color": "#fff",
|
||||||
|
"text-color": "#000",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["title"]
|
||||||
|
),
|
||||||
|
$,
|
||||||
|
o("div", w, [
|
||||||
|
o("div", M, [
|
||||||
|
o("div", D, [
|
||||||
|
o(
|
||||||
|
"span",
|
||||||
|
{
|
||||||
|
innerHTML: e.$t("已连续签到{0}天", [
|
||||||
|
U.value.sign_days,
|
||||||
|
]),
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
j
|
||||||
|
),
|
||||||
|
u(","),
|
||||||
|
o(
|
||||||
|
"span",
|
||||||
|
{
|
||||||
|
innerHTML: e.$t("再连签{0}天领{1}积分", [
|
||||||
|
U.value.next_days,
|
||||||
|
U.value.next_score,
|
||||||
|
]),
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
C
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
o("div", T, [
|
||||||
|
o("header", null, [
|
||||||
|
o("h2", A, c(e.$t("签到日历")) + " " + c(k.value), 1),
|
||||||
|
]),
|
||||||
|
o("div", F, [
|
||||||
|
(p(!0),
|
||||||
|
n(
|
||||||
|
r,
|
||||||
|
null,
|
||||||
|
d(
|
||||||
|
P.value,
|
||||||
|
(e, t) => (
|
||||||
|
p(),
|
||||||
|
n(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"day pb-6 text-14 !text-#86898c text-center",
|
||||||
|
key: t,
|
||||||
|
},
|
||||||
|
c(e),
|
||||||
|
1
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
|
128
|
||||||
|
)),
|
||||||
|
(p(!0),
|
||||||
|
n(
|
||||||
|
r,
|
||||||
|
null,
|
||||||
|
d(S.value, (t, a) => {
|
||||||
|
var l;
|
||||||
|
return (
|
||||||
|
p(),
|
||||||
|
n(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: x([
|
||||||
|
"date flex flex-col justify-center items-center rounded-4 pt-6",
|
||||||
|
{
|
||||||
|
today: t === R.value,
|
||||||
|
"bg-#f9f9fa": "" !== t,
|
||||||
|
"opacity-50":
|
||||||
|
U.value.sign_info &&
|
||||||
|
0 == +U.value.sign_info[t] &&
|
||||||
|
t < R.value,
|
||||||
|
},
|
||||||
|
]),
|
||||||
|
key: "" === t ? "empty-" + a : t,
|
||||||
|
onClick: (e) =>
|
||||||
|
((e) => {
|
||||||
|
e &&
|
||||||
|
new Date(
|
||||||
|
h.value.getFullYear(),
|
||||||
|
Q.value,
|
||||||
|
e
|
||||||
|
);
|
||||||
|
})(t),
|
||||||
|
},
|
||||||
|
[
|
||||||
|
"" !== t
|
||||||
|
? (p(),
|
||||||
|
n(
|
||||||
|
r,
|
||||||
|
{ key: 0 },
|
||||||
|
[
|
||||||
|
o("div", L, [
|
||||||
|
E,
|
||||||
|
o(
|
||||||
|
"div",
|
||||||
|
Y,
|
||||||
|
c(
|
||||||
|
null != (l = U.value.day_score)
|
||||||
|
? l
|
||||||
|
: "--"
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
o("div", B, [
|
||||||
|
t >= R.value
|
||||||
|
? (p(),
|
||||||
|
n(
|
||||||
|
r,
|
||||||
|
{ key: 0 },
|
||||||
|
[
|
||||||
|
t == R.value
|
||||||
|
? (p(),
|
||||||
|
n("div", z, [
|
||||||
|
U.value.sign_info &&
|
||||||
|
1 ==
|
||||||
|
+U.value.sign_info[
|
||||||
|
t
|
||||||
|
]
|
||||||
|
? (p(),
|
||||||
|
n(
|
||||||
|
"span",
|
||||||
|
G,
|
||||||
|
c(
|
||||||
|
e.$t("已签到")
|
||||||
|
),
|
||||||
|
1
|
||||||
|
))
|
||||||
|
: (p(),
|
||||||
|
n(
|
||||||
|
r,
|
||||||
|
{ key: 1 },
|
||||||
|
[
|
||||||
|
u(
|
||||||
|
c(
|
||||||
|
e.$t(
|
||||||
|
"今天"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
],
|
||||||
|
64
|
||||||
|
)),
|
||||||
|
]))
|
||||||
|
: (p(),
|
||||||
|
n("div", I, c(t), 1)),
|
||||||
|
],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: U.value.sign_info &&
|
||||||
|
0 == +U.value.sign_info[t]
|
||||||
|
? (p(),
|
||||||
|
n(
|
||||||
|
r,
|
||||||
|
{ key: 1 },
|
||||||
|
[u(c(e.$t("未签到")), 1)],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: U.value.sign_info &&
|
||||||
|
1 == +U.value.sign_info[t]
|
||||||
|
? (p(),
|
||||||
|
n(
|
||||||
|
r,
|
||||||
|
{ key: 2 },
|
||||||
|
[u(c(e.$t("已签到")), 1)],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: y("", !0),
|
||||||
|
]),
|
||||||
|
],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: y("", !0),
|
||||||
|
],
|
||||||
|
10,
|
||||||
|
H
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
128
|
||||||
|
)),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
o(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"flex items-center justify-center h-45 mt-30 w-80% mx-auto bg-#5A55E6 rounded-full text-white",
|
||||||
|
onClick: X,
|
||||||
|
},
|
||||||
|
[
|
||||||
|
1 == +U.value.today_sign
|
||||||
|
? (p(),
|
||||||
|
n(r, { key: 0 }, [u(c(e.$t("今日已签到")), 1)], 64))
|
||||||
|
: (p(),
|
||||||
|
n(
|
||||||
|
r,
|
||||||
|
{ key: 1 },
|
||||||
|
[u(c(e.$t("立即签到!")), 1)],
|
||||||
|
64
|
||||||
|
)),
|
||||||
|
]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
o("div", J, [
|
||||||
|
o("div", O, c(e.$t("规则")) + ":", 1),
|
||||||
|
o(
|
||||||
|
"div",
|
||||||
|
W,
|
||||||
|
c(e.$t("1.每位成员每天只能领取一次签到奖励。")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
o(
|
||||||
|
"div",
|
||||||
|
q,
|
||||||
|
c(
|
||||||
|
e.$t(
|
||||||
|
"2.成员必须在当天完成签到,才能继续参加第二天的签到活动。"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
o(
|
||||||
|
"div",
|
||||||
|
K,
|
||||||
|
c(
|
||||||
|
e.$t("3.如果成员未能按时签到,成员可以在24小时内补签。")
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
o(
|
||||||
|
"div",
|
||||||
|
N,
|
||||||
|
c(
|
||||||
|
e.$t(
|
||||||
|
"4.22 JOB 保留随时解释本活动规则及修改或更改规则、奖励或参与条款的权利,恕不另行通知"
|
||||||
|
)
|
||||||
|
) + "。 ",
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
],
|
||||||
|
64
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-9ae0d32f"]]
|
||||||
|
);
|
||||||
|
export { P as default };
|
|
@ -0,0 +1,370 @@
|
||||||
|
import { _ as t, a as e } from "./fis-0c75affb.js";
|
||||||
|
import { _ as s } from "./wash-7c0edfd9.js";
|
||||||
|
import {
|
||||||
|
_ as a,
|
||||||
|
b as o,
|
||||||
|
a as i,
|
||||||
|
u as n,
|
||||||
|
j as c,
|
||||||
|
D as l,
|
||||||
|
E as d,
|
||||||
|
e as r,
|
||||||
|
f as p,
|
||||||
|
t as m,
|
||||||
|
h as u,
|
||||||
|
G as v,
|
||||||
|
o as f,
|
||||||
|
A as b,
|
||||||
|
B as x,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
import { a as w } from "./api.mine-40f950d7.js";
|
||||||
|
import { u as g } from "./index-dec55e5c.js";
|
||||||
|
import "./clipboard-c314aeef.js";
|
||||||
|
const h = (t) => (b("data-v-4dd7a0bb"), (t = t()), x(), t),
|
||||||
|
y = { class: "relative linear" },
|
||||||
|
C = { class: "relative z-10 pt-20 p-15 pb-50" },
|
||||||
|
$ = { class: "" },
|
||||||
|
j = { class: "text-28 font-600" },
|
||||||
|
_ = { class: "text-16 pt-10 pb-5" },
|
||||||
|
A = { class: "text-#666 text-13 lh-20" },
|
||||||
|
I = { class: "mt-10" },
|
||||||
|
S = { class: "text-14" },
|
||||||
|
k = { class: "pt-12" },
|
||||||
|
E = { class: "mb-10" },
|
||||||
|
R = { class: "flex items-center justify-between" },
|
||||||
|
U = { class: "flex-1 lh-18 bg-#fff h-40 lh-40 pl-10" },
|
||||||
|
q = { class: "mb-10 mt-15" },
|
||||||
|
O = { class: "flex items-center justify-between van-hairline--bottom" },
|
||||||
|
B = { class: "flex-1 lh-18 bg-#fff h-40 lh-40 pl-10" },
|
||||||
|
D = {
|
||||||
|
class:
|
||||||
|
"relative font-600 text-center bg-#fff shadow-sm rounded-10 mt-10 mx-auto py-24",
|
||||||
|
},
|
||||||
|
L = { class: "text-14 pb-12" },
|
||||||
|
P = { class: "text-#aaa" },
|
||||||
|
z = { class: "text-36 mt-12 text-#5B56E8" },
|
||||||
|
F = { class: "w-full flex items-center justify-around mt-20" },
|
||||||
|
G = { class: "font-400 mb-12 text-14 text-#aaa" },
|
||||||
|
K = { class: "text-22" },
|
||||||
|
M = { class: "font-400 mb-12 text-14 text-#aaa" },
|
||||||
|
N = { class: "text-22" },
|
||||||
|
H = { class: "font-400 mb-12 text-14 text-#aaa" },
|
||||||
|
J = { class: "text-22" },
|
||||||
|
Q = { class: "font-400 mb-12 text-14 text-#aaa" },
|
||||||
|
T = { class: "text-22" },
|
||||||
|
V = { class: "bg-#fff p-10 pt-15 rounded-10 mt-10" },
|
||||||
|
W = { class: "text-13 borderL" },
|
||||||
|
X = { class: "text-center flex p-10 pt-20" },
|
||||||
|
Y = [h(() => p("img", { class: "w-30", src: t }, null, -1))],
|
||||||
|
Z = [h(() => p("img", { class: "w-30", src: s }, null, -1))],
|
||||||
|
tt = [h(() => p("img", { class: "w-30", src: e }, null, -1))],
|
||||||
|
et = h(() =>
|
||||||
|
p("img", { class: "w-100% mt-10", src: "/png/name-3c3d1a77.png" }, null, -1)
|
||||||
|
),
|
||||||
|
st = { class: "mx-auto pt-10 px-14 pb-20 bg-#fff rounded-10 mt-10 mb-70" },
|
||||||
|
at = { class: "text-center mb-20" },
|
||||||
|
ot = { class: "text-15 borderL font-bold mb-12" },
|
||||||
|
it = { class: "text-13" },
|
||||||
|
nt = { class: "py-4 mb-8" },
|
||||||
|
ct = { class: "py-4 mb-8 lh-18" },
|
||||||
|
lt = { class: "py-4 mb-8" },
|
||||||
|
dt = { class: "text-15 borderL font-bold mb-12 mt-10" },
|
||||||
|
rt = { class: "py-4" },
|
||||||
|
pt = { class: "py-4 text-12 lh-15 text-#aaa" },
|
||||||
|
mt = { class: "py-4" },
|
||||||
|
ut = { class: "py-4 text-12 lh-15 text-#aaa" },
|
||||||
|
vt = a(
|
||||||
|
{
|
||||||
|
__name: "index",
|
||||||
|
setup(t) {
|
||||||
|
const e = o(),
|
||||||
|
{ toClipboard: s } = g(),
|
||||||
|
{ t: a } = i(),
|
||||||
|
b = n(),
|
||||||
|
x = c("");
|
||||||
|
l(() => {
|
||||||
|
(x.value = ""
|
||||||
|
.concat(window.location.origin)
|
||||||
|
.concat(d, "#/reg?i=")
|
||||||
|
.concat(b.userInfo.invite_code)),
|
||||||
|
(window.appConfig = {
|
||||||
|
...window.appConfig,
|
||||||
|
title: a("注册赚积分"),
|
||||||
|
description: a("轻松赚取每日积分"),
|
||||||
|
image: "../../assets/images/logo3.png",
|
||||||
|
});
|
||||||
|
const t = document.querySelector('meta[property="og:title"]'),
|
||||||
|
e = document.querySelector('meta[property="og:description"]'),
|
||||||
|
s = document.querySelector('meta[property="og:image"]');
|
||||||
|
t.setAttribute(
|
||||||
|
"content",
|
||||||
|
Object.getOwnPropertyDescriptor(window.appConfig, "title").value
|
||||||
|
),
|
||||||
|
e.setAttribute(
|
||||||
|
"content",
|
||||||
|
Object.getOwnPropertyDescriptor(window.appConfig, "description")
|
||||||
|
.value
|
||||||
|
),
|
||||||
|
s.setAttribute(
|
||||||
|
"content",
|
||||||
|
Object.getOwnPropertyDescriptor(window.appConfig, "image").value
|
||||||
|
);
|
||||||
|
const o = window.appConfig.title,
|
||||||
|
i = window.appConfig.description,
|
||||||
|
n = window.appConfig.image,
|
||||||
|
c = document.querySelector('meta[property="og:title"]'),
|
||||||
|
l = document.querySelector('meta[property="og:description"]'),
|
||||||
|
r = document.querySelector('meta[property="og:image"]');
|
||||||
|
if (c) c.setAttribute("content", o);
|
||||||
|
else {
|
||||||
|
const t = document.createElement("meta");
|
||||||
|
t.setAttribute("property", "og:title"),
|
||||||
|
t.setAttribute("content", o),
|
||||||
|
document.head.appendChild(t);
|
||||||
|
}
|
||||||
|
if (l) l.setAttribute("content", i);
|
||||||
|
else {
|
||||||
|
const t = document.createElement("meta");
|
||||||
|
t.setAttribute("property", "og:description"),
|
||||||
|
t.setAttribute("content", i),
|
||||||
|
document.head.appendChild(t);
|
||||||
|
}
|
||||||
|
if (r) r.setAttribute("content", n);
|
||||||
|
else {
|
||||||
|
const t = document.createElement("meta");
|
||||||
|
t.setAttribute("property", "og:image"),
|
||||||
|
t.setAttribute("content", n),
|
||||||
|
document.head.appendChild(t);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const h = async (t) => {
|
||||||
|
try {
|
||||||
|
await s(t), v(a("链接复制成功"));
|
||||||
|
} catch (e) {}
|
||||||
|
},
|
||||||
|
vt = (t, e) => {
|
||||||
|
1 == e &&
|
||||||
|
window.open(
|
||||||
|
"https://t.me/share/url?url=" +
|
||||||
|
encodeURIComponent(t) +
|
||||||
|
"&text=" +
|
||||||
|
encodeURIComponent(a("分享"))
|
||||||
|
),
|
||||||
|
2 == e &&
|
||||||
|
window.open(
|
||||||
|
"https://api.whatsapp.com/send?text=" +
|
||||||
|
encodeURIComponent(t) +
|
||||||
|
encodeURIComponent(a("分享"))
|
||||||
|
),
|
||||||
|
3 == e &&
|
||||||
|
window.open(
|
||||||
|
"https://www.facebook.com/sharer/sharer.php?u=" +
|
||||||
|
encodeURIComponent(t) +
|
||||||
|
"&title=" +
|
||||||
|
encodeURIComponent(t) +
|
||||||
|
"&description=" +
|
||||||
|
encodeURIComponent(a("分享"))
|
||||||
|
);
|
||||||
|
},
|
||||||
|
ft = c({});
|
||||||
|
return (
|
||||||
|
w().then((t) => {
|
||||||
|
ft.value = t.data;
|
||||||
|
}),
|
||||||
|
(t, s) => {
|
||||||
|
var a, o, i, n, c;
|
||||||
|
return (
|
||||||
|
f(),
|
||||||
|
r("div", y, [
|
||||||
|
p("div", C, [
|
||||||
|
p("div", $, [
|
||||||
|
p("div", j, m(t.$t("邀请好友赚钱")), 1),
|
||||||
|
p("div", _, m(t.$t("获得积分奖励")), 1),
|
||||||
|
p("span", A, m(t.$t("每邀請一位朋友")), 1),
|
||||||
|
]),
|
||||||
|
p("div", I, [
|
||||||
|
p("div", S, [
|
||||||
|
p("div", k, [
|
||||||
|
p("div", E, m(t.$t("推荐链接")), 1),
|
||||||
|
p("div", R, [
|
||||||
|
p("div", U, m(u(x)), 1),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"flex items-center justify-center w-60 lh-40 h-40 bg-#5B56E8 text-white",
|
||||||
|
onClick: s[0] || (s[0] = (t) => h(u(x))),
|
||||||
|
},
|
||||||
|
m(t.$t("复制")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
p("div", q, m(t.$t("推荐码")), 1),
|
||||||
|
p("div", O, [
|
||||||
|
p("div", B, m(u(b).userInfo.invite_code.toString()), 1),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"flex items-center justify-center w-60 lh-40 h-40 bg-#5B56E8 text-white",
|
||||||
|
onClick:
|
||||||
|
s[1] ||
|
||||||
|
(s[1] = (t) =>
|
||||||
|
h(u(b).userInfo.invite_code.toString())),
|
||||||
|
},
|
||||||
|
m(t.$t("复制")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
p("div", D, [
|
||||||
|
p("div", L, [
|
||||||
|
p("div", P, m(t.$t("累计佣金")), 1),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
z,
|
||||||
|
m(null != (a = u(ft).all_income) ? a : "--"),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
p("div", F, [
|
||||||
|
p("div", null, [
|
||||||
|
p("div", G, m(t.$t("今日佣金")), 1),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
K,
|
||||||
|
m(null != (o = u(ft).today_income) ? o : "--"),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
p("div", null, [
|
||||||
|
p("div", M, m(t.$t("昨日佣金")), 1),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
N,
|
||||||
|
m(null != (i = u(ft).yesterday_income) ? i : "--"),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
p("div", null, [
|
||||||
|
p("div", H, m(t.$t("直属活跃")), 1),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
J,
|
||||||
|
m(null != (n = u(ft).level_1) ? n : "--"),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
onClick:
|
||||||
|
s[2] || (s[2] = (t) => u(e).push("/subordinates")),
|
||||||
|
},
|
||||||
|
[
|
||||||
|
p("div", Q, m(t.$t("活跃人数")), 1),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
T,
|
||||||
|
m(null != (c = u(ft).active_users) ? c : "--"),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
p("div", V, [
|
||||||
|
p("span", W, m(t.$t("分享到您的社交平台")), 1),
|
||||||
|
p("div", X, [
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "w-33.3%",
|
||||||
|
onClick: s[3] || (s[3] = (t) => vt(u(x), 1)),
|
||||||
|
},
|
||||||
|
Y
|
||||||
|
),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "w-33.3%",
|
||||||
|
onClick: s[4] || (s[4] = (t) => vt(u(x), 2)),
|
||||||
|
},
|
||||||
|
Z
|
||||||
|
),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "w-33.3%",
|
||||||
|
onClick: s[5] || (s[5] = (t) => vt(u(x), 3)),
|
||||||
|
},
|
||||||
|
tt
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
et,
|
||||||
|
p("div", st, [
|
||||||
|
p("div", at, m(t.$t("提示")), 1),
|
||||||
|
p("span", ot, m(t.$t("邀请步骤")), 1),
|
||||||
|
p("div", it, [
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
nt,
|
||||||
|
m(
|
||||||
|
t.$t("1.点击“复制”按钮,复制链接或选择其他分享方式。")
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
ct,
|
||||||
|
m(
|
||||||
|
t.$t(
|
||||||
|
"2.将链接分享给您的朋友,并确保他们使用您分享的链接注册。"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
lt,
|
||||||
|
m(t.$t("3.您的朋友注册后完成任务您将额外获得返佣。")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
p("div", dt, m(t.$t("返佣计算方式:")), 1),
|
||||||
|
p("div", rt, m(t.$t("一级直属返佣20%")), 1),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
pt,
|
||||||
|
m(
|
||||||
|
t.$t(
|
||||||
|
"*一级直属:通过您邀请链接的注册用户为一级直属下级,直属下级做任务您将获得20%返佣。比如直属下级做了任务获得1000积分,您将额外获得200积分。"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
p("div", mt, m(t.$t("二级下属返佣10%")), 1),
|
||||||
|
p(
|
||||||
|
"div",
|
||||||
|
ut,
|
||||||
|
m(
|
||||||
|
t.$t(
|
||||||
|
"*二级下属:您的一级直属下级邀请的注册用户,二级下属做任务您将获得10%返佣。比如二级下属做了任务获得1000积分,您将额外获得100积分。"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
])
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-4dd7a0bb"]]
|
||||||
|
);
|
||||||
|
export { vt as default };
|
|
@ -0,0 +1,252 @@
|
||||||
|
import {
|
||||||
|
u as t,
|
||||||
|
a as e,
|
||||||
|
j as s,
|
||||||
|
c as o,
|
||||||
|
aC as a,
|
||||||
|
o as n,
|
||||||
|
m as r,
|
||||||
|
h as f,
|
||||||
|
az as d,
|
||||||
|
b1 as l,
|
||||||
|
aW as i,
|
||||||
|
b2 as c,
|
||||||
|
_ as p,
|
||||||
|
p as u,
|
||||||
|
f as x,
|
||||||
|
t as m,
|
||||||
|
v as g,
|
||||||
|
A as b,
|
||||||
|
B as v,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
import { a as h } from "./index-0a638fc2.js";
|
||||||
|
import "./index-97676c1f.js";
|
||||||
|
import "./use-route-126c4f06.js";
|
||||||
|
import "./use-placeholder-8391a3e3.js";
|
||||||
|
const k = {
|
||||||
|
__name: "Turntable",
|
||||||
|
emits: ["refresh"],
|
||||||
|
setup(p, { emit: u }) {
|
||||||
|
t();
|
||||||
|
const { t: x } = e(),
|
||||||
|
m = s(null),
|
||||||
|
g = [
|
||||||
|
{
|
||||||
|
padding: "4rem",
|
||||||
|
imgs: [
|
||||||
|
{ src: "/png/name-7736010d.png", width: "100%", height: "100%" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{ padding: "5px", background: "#fff" },
|
||||||
|
{ padding: "5px", background: "#BF6BEE" },
|
||||||
|
],
|
||||||
|
b = s([]),
|
||||||
|
v = o(() =>
|
||||||
|
0 === b.value.length
|
||||||
|
? [
|
||||||
|
{
|
||||||
|
fonts: [{ text: "--", top: "10%", fontColor: "#000" }],
|
||||||
|
background: "#fff1d8",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fonts: [{ text: "--", top: "10%", fontColor: "#000" }],
|
||||||
|
background: "#ffe0b7",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fonts: [{ text: "--", top: "10%", fontColor: "#000" }],
|
||||||
|
background: "#fff1d8",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fonts: [{ text: "--", top: "10%", fontColor: "#000" }],
|
||||||
|
background: "#ffe0b7",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fonts: [{ text: "--", top: "10%", fontColor: "#000" }],
|
||||||
|
background: "#fff1d8",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
fonts: [{ text: "--", top: "10%", fontColor: "#000" }],
|
||||||
|
background: "#ffe0b7",
|
||||||
|
},
|
||||||
|
]
|
||||||
|
: b.value.map((t, e) => ({
|
||||||
|
fonts: [
|
||||||
|
{
|
||||||
|
text: t.amount,
|
||||||
|
top: "10%",
|
||||||
|
fontColor: "#000",
|
||||||
|
fontSize: "3.5rem",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
background: (e + 1) % 2 == 0 ? "#FFFFFF" : "#FFF1E2",
|
||||||
|
}))
|
||||||
|
);
|
||||||
|
d({ forbidClick: !0, duration: 0 }),
|
||||||
|
l().then((t) => {
|
||||||
|
i(), (b.value = t.data);
|
||||||
|
});
|
||||||
|
const k = o(() => [
|
||||||
|
{
|
||||||
|
radius: "35%",
|
||||||
|
imgs: [
|
||||||
|
{ src: "/png/name-333f0c74.png", width: "100%", top: "-118%" },
|
||||||
|
],
|
||||||
|
pointer: !0,
|
||||||
|
fonts: [
|
||||||
|
{ text: x("开始"), top: "-4px", fontSize: 13, fontColor: "#000" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]),
|
||||||
|
$ = () => {
|
||||||
|
d({ forbidClick: !0, duration: 0 }),
|
||||||
|
c().then((t) => {
|
||||||
|
i(),
|
||||||
|
m.value.play(),
|
||||||
|
setTimeout(() => {
|
||||||
|
const e = b.value.findIndex((e) => e.id == t.data);
|
||||||
|
m.value.stop(e);
|
||||||
|
}, 3e3);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
C = (t) => {
|
||||||
|
h({ message: x("恭喜获得:{0}", [t.fonts[0].text]) }).then(() => {
|
||||||
|
u("refresh");
|
||||||
|
});
|
||||||
|
};
|
||||||
|
return (t, e) => {
|
||||||
|
const s = a("LuckyWheel");
|
||||||
|
return (
|
||||||
|
n(),
|
||||||
|
r(
|
||||||
|
s,
|
||||||
|
{
|
||||||
|
ref_key: "myLucky",
|
||||||
|
ref: m,
|
||||||
|
width: "80rem",
|
||||||
|
height: "80rem",
|
||||||
|
prizes: f(v),
|
||||||
|
blocks: g,
|
||||||
|
buttons: f(k),
|
||||||
|
onStart: $,
|
||||||
|
onEnd: C,
|
||||||
|
class: "ml-10%",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["prizes", "buttons"]
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
$ = { class: "relative pb-20 bg-#5B56E8" },
|
||||||
|
C = { class: "py-20 text-center text-#fff text-32 font-500" },
|
||||||
|
_ = { class: "text-center text-15" },
|
||||||
|
F = { class: "bg-#fff p-3 px-5 rounded-5" },
|
||||||
|
y = { class: "pt-15 mb-10 text-center text-#f1f1f1 text-14" },
|
||||||
|
E = { class: "w-100% text-center" },
|
||||||
|
j = { class: "bottom_a" },
|
||||||
|
B = { class: "bottom_p" },
|
||||||
|
w = ((t) => (b("data-v-3959e504"), (t = t()), v(), t))(() =>
|
||||||
|
x("img", { src: "/png/name-4a24943e.png" }, null, -1)
|
||||||
|
),
|
||||||
|
z = { class: "text-13 text-#fff" },
|
||||||
|
I = { class: "px-14 mar" },
|
||||||
|
S = { class: "bg-white p-14 mt-30 rounded-4" },
|
||||||
|
T = { class: "mb-4 font-600" },
|
||||||
|
L = { class: "pt-8 lh-20 text-14" },
|
||||||
|
U = { class: "pt-8 lh-20 text-14" },
|
||||||
|
W = { class: "pt-8 lh-20 text-14" },
|
||||||
|
A = { class: "pt-8 lh-20 text-14" },
|
||||||
|
Q = { class: "pt-8 lh-20 text-14" },
|
||||||
|
R = { class: "pt-8 lh-20 text-14" },
|
||||||
|
V = p(
|
||||||
|
{
|
||||||
|
__name: "index",
|
||||||
|
setup(e) {
|
||||||
|
const s = t(),
|
||||||
|
o = () => {
|
||||||
|
s.changeUserInfo();
|
||||||
|
};
|
||||||
|
return (t, e) => {
|
||||||
|
const d = a("normal-layout");
|
||||||
|
return (
|
||||||
|
n(),
|
||||||
|
r(
|
||||||
|
d,
|
||||||
|
{ flex: "", "bg-color": "#5B56E8", "nav-bg-color": "#5B56E8" },
|
||||||
|
{
|
||||||
|
default: u(() => [
|
||||||
|
x("div", $, [
|
||||||
|
x("div", C, m(t.$t("现金大转盘")), 1),
|
||||||
|
x("div", _, [
|
||||||
|
x("span", F, m(t.$t("每次转动消耗10积分")), 1),
|
||||||
|
]),
|
||||||
|
x(
|
||||||
|
"div",
|
||||||
|
y,
|
||||||
|
m(t.$t("可用余额")) +
|
||||||
|
":" +
|
||||||
|
m(f(s).userInfo.money) +
|
||||||
|
" " +
|
||||||
|
m(t.$t("积分")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
x("div", E, [
|
||||||
|
x("div", j, [g(k, { onRefresh: o })]),
|
||||||
|
x("div", B, [
|
||||||
|
w,
|
||||||
|
x("div", z, m(t.$t("积分可提现为现金")), 1),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
x("div", I, [
|
||||||
|
x("div", S, [
|
||||||
|
x("div", T, m(t.$t("规则")) + ":", 1),
|
||||||
|
x("div", L, m(t.$t("1.运作原理:")), 1),
|
||||||
|
x(
|
||||||
|
"div",
|
||||||
|
U,
|
||||||
|
m(
|
||||||
|
t.$t(
|
||||||
|
"2.旋转轮盘:每次旋转都会为您的总分增加更多分数!"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
x(
|
||||||
|
"div",
|
||||||
|
W,
|
||||||
|
m(t.$t("3.提高您的分数:每次旋转您的分数都会增加。")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
x("div", A, m(t.$t("4.没有旋转了?")) + "。", 1),
|
||||||
|
x(
|
||||||
|
"div",
|
||||||
|
Q,
|
||||||
|
m(
|
||||||
|
t.$t(
|
||||||
|
"5.购买更多旋转:使用您的积分购买更多旋转并继续享受乐趣!"
|
||||||
|
)
|
||||||
|
) + "。",
|
||||||
|
1
|
||||||
|
),
|
||||||
|
x(
|
||||||
|
"div",
|
||||||
|
R,
|
||||||
|
m(t.$t("6.旋转、赚取并保持兴奋!")) + "。",
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-3959e504"]]
|
||||||
|
);
|
||||||
|
export { V as default };
|
|
@ -0,0 +1 @@
|
||||||
|
/* empty css */import"./index-325f2a5d.js";import{F as e}from"./index-8da36b2b.js";import{c as a}from"./countryCode-16bf7887.js";import{_ as l,a as t,b as s,j as o,c as n,aC as i,m as r,p as c,o as d,f as u,v as f,h as x,R as p,e as m,r as v,F as b,y,t as h,i as j}from"./index-476be0bb.js";import"./use-route-126c4f06.js";import"./use-id-50eda0ee.js";const C={class:"flex flex-col pt-12 h-full box-border"},g={class:"px-12"},k={class:"flex-1 overflow-auto bg-white mt-12 px-14"},_=["onClick"],w={class:"text-main"},F={key:0,class:"text-center py-20 text-grey text-14"},N=l({__name:"index",setup(l){const{locale:N}=t(),V={"zh-CN":"cn",en:"en"},$=s(),z=o("");const O=n((()=>{return""===z.value?a:(e=z.value/1,Number.isFinite(e)?a.filter((e=>-1!==e.code.indexOf(z.value))):a.filter((e=>-1!==e[V[N.value]].indexOf(z.value))));var e}));return(a,l)=>{const t=e,s=i("normal-layout");return d(),r(s,{flex:"","bg-color":"#f6f6f6","nav-bg-color":"#3574f0","text-color":"#fff",title:a.$t("选择国家")},{default:c((()=>[u("div",C,[u("div",g,[f(t,{class:"rounded-8",modelValue:x(z),"onUpdate:modelValue":l[0]||(l[0]=e=>p(z)?z.value=e:null),"left-icon":"search",placeholder:a.$t("输入国家名称"),style:{"--van-padding-base":"10px"}},null,8,["modelValue","placeholder"])]),u("div",k,[(d(!0),m(b,null,v(x(O),(e=>(d(),m("div",{class:"flex justify-between py-14 text-14 van-hairline--bottom",onClick:a=>x($).replace("/autoTask?code="+e.code)},[u("div",null,["zh-CN"===x(N)?(d(),m(b,{key:0},[y(h(e.cn),1)],64)):(d(),m(b,{key:1},[y(h(e.en),1)],64))]),u("div",w,h(e.code),1)],8,_)))),256)),0===x(O).length?(d(),m("div",F,h(a.$t("暂无数据")),1)):j("",!0)])])])),_:1},8,["title"])}}},[["__scopeId","data-v-f0b532c7"]]);export{N as default};
|
|
@ -0,0 +1,646 @@
|
||||||
|
import {
|
||||||
|
_ as e,
|
||||||
|
b as t,
|
||||||
|
a,
|
||||||
|
u as l,
|
||||||
|
j as i,
|
||||||
|
D as s,
|
||||||
|
c as n,
|
||||||
|
aC as o,
|
||||||
|
m as u,
|
||||||
|
p as d,
|
||||||
|
o as r,
|
||||||
|
f as c,
|
||||||
|
t as v,
|
||||||
|
e as f,
|
||||||
|
r as y,
|
||||||
|
h as m,
|
||||||
|
F as p,
|
||||||
|
y as x,
|
||||||
|
i as k,
|
||||||
|
as as $,
|
||||||
|
bi as g,
|
||||||
|
R as h,
|
||||||
|
G as b,
|
||||||
|
az as I,
|
||||||
|
aW as _,
|
||||||
|
A as w,
|
||||||
|
B as E,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
import { _ as j, a as F } from "./inactive-62bbd674.js";
|
||||||
|
import { _ as C } from "./point-afbdbc16.js";
|
||||||
|
import { g as M, h as R, i as T } from "./api.mine-40f950d7.js";
|
||||||
|
const X = (e) => (w("data-v-a74356d2"), (e = e()), E(), e),
|
||||||
|
A = { class: "px-14 mt-12" },
|
||||||
|
D = { class: "bg-white mb-10 px-16" },
|
||||||
|
N = { class: "relative py-18 van-hairline--bottom text-18" },
|
||||||
|
S = ["onClick"],
|
||||||
|
U = { class: "flex items-center justify-between py-8 relative item" },
|
||||||
|
B = { class: "text-14 text-black" },
|
||||||
|
G = { key: 0, class: "w-17 ml-13", src: j, alt: "" },
|
||||||
|
P = { key: 1, class: "w-17 ml-13", src: F, alt: "" },
|
||||||
|
q = {
|
||||||
|
class:
|
||||||
|
"bg-white rounded-8 mb-10 flex items-center justify-between relative item px-16",
|
||||||
|
},
|
||||||
|
z = { class: "flex items-center w-88%" },
|
||||||
|
H = { class: "text-14 text-black w-33%" },
|
||||||
|
K = { class: "ml-10 text-18 w-98% overflow-hidden" },
|
||||||
|
L = X(() =>
|
||||||
|
c(
|
||||||
|
"div",
|
||||||
|
{ class: "inline-block w-16 h-16 relative" },
|
||||||
|
[c("span", { class: "absolute bottom-1" }, "...")],
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
V = { key: 2, class: "text-16 translate-y-1 text-grey" },
|
||||||
|
W = { class: "text-14 h-50 lh-50 text-#5A55E6 w-50 text-center" },
|
||||||
|
J = { class: "rounded-8 bg-white p-20 pb-0" },
|
||||||
|
O = { class: "justify-center text-14" },
|
||||||
|
Q = { key: 0, class: "pl-20 text-#E21716" },
|
||||||
|
Y = { key: 1, class: "pl-20 text-#E21716" },
|
||||||
|
Z = { key: 2, class: "pl-20 text-#E21716" },
|
||||||
|
ee = { key: 3, class: "pl-20 text-#E21716" },
|
||||||
|
te = { key: 4, class: "pl-20 text-#E21716" },
|
||||||
|
ae = { key: 5, class: "pl-20 text-#E21716" },
|
||||||
|
le = { key: 6, class: "pl-20 text-#E21716" },
|
||||||
|
ie = ["placeholder"],
|
||||||
|
se = { class: "h-70 text-14 relative" },
|
||||||
|
ne = { class: "lh-30 pt-3 text-#aaa" },
|
||||||
|
oe = { key: 0, class: "lh-30" },
|
||||||
|
ue = { key: 0, class: "text-#E21716" },
|
||||||
|
de = { key: 1, class: "text-#E21716" },
|
||||||
|
re = { key: 2, class: "text-#E21716" },
|
||||||
|
ce = { key: 3, class: "text-#E21716" },
|
||||||
|
ve = { key: 4, class: "text-#E21716" },
|
||||||
|
fe = { key: 5, class: "text-#E21716" },
|
||||||
|
ye = { key: 6, class: "text-#E21716" },
|
||||||
|
me = {
|
||||||
|
key: 0,
|
||||||
|
class:
|
||||||
|
"flex mt-10 items-center justify-center text-16 font-600 h-45 rounded-8 bg-#8C89F0 text-white",
|
||||||
|
},
|
||||||
|
pe = { class: "rounded-8 overflow-hidden" },
|
||||||
|
xe = { class: "bg-white mt-12 py-14 px-16" },
|
||||||
|
ke = { class: "font-600" },
|
||||||
|
$e = { class: "mt-8 text-14" },
|
||||||
|
ge = { class: "flex items-center lh-26 py-4" },
|
||||||
|
he = { key: 0, class: "ml-5 text-main font-600" },
|
||||||
|
be = { key: 1, class: "ml-5 text-main font-600" },
|
||||||
|
Ie = { key: 2, class: "ml-5 text-main font-600" },
|
||||||
|
_e = { key: 3, class: "ml-5 text-main font-600" },
|
||||||
|
we = { key: 4, class: "ml-5 text-main font-600" },
|
||||||
|
Ee = { key: 5, class: "ml-5 text-main font-600" },
|
||||||
|
je = X(() => c("img", { class: "w-20 ml-5", src: C, alt: "" }, null, -1)),
|
||||||
|
Fe = { class: "flex items-center lh-26" },
|
||||||
|
Ce = e(
|
||||||
|
{
|
||||||
|
__name: "index",
|
||||||
|
setup(e) {
|
||||||
|
const w = t(),
|
||||||
|
{ t: E } = a(),
|
||||||
|
j = l();
|
||||||
|
let F = i([
|
||||||
|
{ title: E("印度"), id: 5, errorMsg: E("请添加印度") },
|
||||||
|
{
|
||||||
|
title: E("尼日利亚") + 1,
|
||||||
|
id: 3,
|
||||||
|
errorMsg: E("请添加尼日利亚") + 1,
|
||||||
|
},
|
||||||
|
{ title: E("菲律宾"), id: 7, errorMsg: E("请添加菲律宾") },
|
||||||
|
{ title: "TRX", id: 4, errorMsg: E("请添加TRX地址") },
|
||||||
|
]);
|
||||||
|
const C = i(F.value[0]);
|
||||||
|
M().then((e) => {
|
||||||
|
let t = [];
|
||||||
|
for (let a in e.data)
|
||||||
|
1 == e.data[a].status &&
|
||||||
|
t.push({
|
||||||
|
title: E(e.data[a].name),
|
||||||
|
id: e.data[a].id,
|
||||||
|
errorMsg: E("请添加") + E(e.data[a].name),
|
||||||
|
});
|
||||||
|
(F.value = t), (C.value = F.value[0]), Ce();
|
||||||
|
});
|
||||||
|
const X = i("");
|
||||||
|
function Ce() {
|
||||||
|
(2 != C.value.id && 3 != C.value.id && 6 != C.value.id) ||
|
||||||
|
(j.userInfo.money < 300
|
||||||
|
? (Me.value = 0)
|
||||||
|
: (Me.value = j.userInfo.money - 300)),
|
||||||
|
1 == C.value.id &&
|
||||||
|
(j.userInfo.money < 500
|
||||||
|
? (Me.value = 0)
|
||||||
|
: (Me.value = j.userInfo.money - 500)),
|
||||||
|
7 == C.value.id &&
|
||||||
|
(j.userInfo.money < 500
|
||||||
|
? (Me.value = 0)
|
||||||
|
: (Me.value = j.userInfo.money - 500)),
|
||||||
|
8 == C.value.id &&
|
||||||
|
(j.userInfo.money < j.config.brl_fee
|
||||||
|
? (Me.value = 0)
|
||||||
|
: (Me.value = j.userInfo.money - j.config.brl_fee)),
|
||||||
|
4 == C.value.id &&
|
||||||
|
(j.userInfo.money < 300
|
||||||
|
? (Me.value = 0)
|
||||||
|
: (Me.value = j.userInfo.money - 300)),
|
||||||
|
5 == C.value.id &&
|
||||||
|
(j.userInfo.money < 500
|
||||||
|
? (Me.value = 0)
|
||||||
|
: (Me.value = j.userInfo.money - 500));
|
||||||
|
}
|
||||||
|
const Me = i("");
|
||||||
|
s(() => {
|
||||||
|
Ce();
|
||||||
|
});
|
||||||
|
const Re = n(() =>
|
||||||
|
"" === X.value
|
||||||
|
? 0
|
||||||
|
: 2 === C.value.id
|
||||||
|
? "".concat(
|
||||||
|
((+X.value / 100) * +j.config.vi_rate).toFixed(2),
|
||||||
|
" KES"
|
||||||
|
)
|
||||||
|
: 3 === C.value.id || 6 === C.value.id
|
||||||
|
? "".concat(
|
||||||
|
((+X.value / 100) * +j.config.nrly_rate).toFixed(2),
|
||||||
|
" NGN"
|
||||||
|
)
|
||||||
|
: 1 === C.value.id
|
||||||
|
? "".concat(
|
||||||
|
((+X.value / 100) * +j.config.trx_rate).toFixed(2),
|
||||||
|
" USDT"
|
||||||
|
)
|
||||||
|
: 4 === C.value.id
|
||||||
|
? "".concat(
|
||||||
|
((+X.value / 100) * +j.config.trx_rate1).toFixed(2),
|
||||||
|
" TRX"
|
||||||
|
)
|
||||||
|
: 5 === C.value.id
|
||||||
|
? "".concat(
|
||||||
|
((+X.value / 100) * +j.config.inr_rate).toFixed(2),
|
||||||
|
" INR"
|
||||||
|
)
|
||||||
|
: 7 === C.value.id
|
||||||
|
? "".concat(
|
||||||
|
((+X.value / 100) * +j.config.php_rate).toFixed(2),
|
||||||
|
" PHP"
|
||||||
|
)
|
||||||
|
: "".concat(
|
||||||
|
(
|
||||||
|
(+(X.value + parseInt(j.config.brl_fee)) / 100) *
|
||||||
|
+j.config.brl_rate
|
||||||
|
).toFixed(2),
|
||||||
|
" BRL"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
Te = () => {
|
||||||
|
if ("" === X.value) return b(E("请输入金额"));
|
||||||
|
if (2 == C.value.id || 3 == C.value.id || 6 == C.value.id) {
|
||||||
|
if (X.value / 1 > j.userInfo.money - 300) return b(E("余额不足"));
|
||||||
|
if (X.value / 1 < 1e3) return b(E("最低提现金额") + 1e3);
|
||||||
|
} else if (1 == C.value.id) {
|
||||||
|
if (X.value / 1 < 2e4) return b(E("最低提现金额") + 2e4);
|
||||||
|
if (X.value / 1 > j.userInfo.money - 500) return b(E("余额不足"));
|
||||||
|
} else if (4 == C.value.id) {
|
||||||
|
if (X.value / 1 < 5e3) return b(E("最低提现金额") + 5e3);
|
||||||
|
if (X.value / 1 > j.userInfo.money - 300) return b(E("余额不足"));
|
||||||
|
} else if (5 == C.value.id) {
|
||||||
|
if (X.value / 1 < 7e3) return b(E("最低提现金额") + 7e3);
|
||||||
|
if (X.value / 1 > j.userInfo.money - 500) return b(E("余额不足"));
|
||||||
|
} else if (7 == C.value.id) {
|
||||||
|
if (X.value / 1 < 5e3) return b(E("最低提现金额") + 5e3);
|
||||||
|
if (X.value / 1 > j.userInfo.money - 500) return b(E("余额不足"));
|
||||||
|
} else {
|
||||||
|
if (X.value / 1 < 5e3) return b(E("最低提现金额") + 5e3);
|
||||||
|
if (X.value / 1 > j.userInfo.money - parseInt(j.config.brl_fee))
|
||||||
|
return b(E("余额不足"));
|
||||||
|
}
|
||||||
|
if (!Xe.value[C.value.id]) return b(C.value.errorMsg);
|
||||||
|
I({ forbidClick: !0, duration: 0 }),
|
||||||
|
T({ money: X.value, bank_id: Xe.value[C.value.id].id }).then(
|
||||||
|
(e) => {
|
||||||
|
_(), b("提交成功"), (X.value = "");
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
Xe = i({});
|
||||||
|
R().then((e) => {
|
||||||
|
const t = {};
|
||||||
|
e.data.forEach((e) => {
|
||||||
|
t[e.type] = e;
|
||||||
|
}),
|
||||||
|
(Xe.value = t);
|
||||||
|
});
|
||||||
|
const Ae = () => {
|
||||||
|
w.push({ path: "/userInfo", query: { type: C.value.id } });
|
||||||
|
};
|
||||||
|
return (e, t) => {
|
||||||
|
const a = o("normal-layout");
|
||||||
|
return (
|
||||||
|
r(),
|
||||||
|
u(
|
||||||
|
a,
|
||||||
|
{
|
||||||
|
flex: "",
|
||||||
|
"bg-color": "#f6f6f6",
|
||||||
|
"nav-bg-color": "#fff",
|
||||||
|
"text-color": "#000",
|
||||||
|
title: e.$t("账号提现"),
|
||||||
|
backType: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: d(() => {
|
||||||
|
var a, l, i, s, n, o;
|
||||||
|
return [
|
||||||
|
c("div", A, [
|
||||||
|
c("div", D, [
|
||||||
|
c("div", N, v(e.$t("转出到")), 1),
|
||||||
|
(r(!0),
|
||||||
|
f(
|
||||||
|
p,
|
||||||
|
null,
|
||||||
|
y(
|
||||||
|
m(F),
|
||||||
|
(e, t) => (
|
||||||
|
r(),
|
||||||
|
f(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
key: e.id,
|
||||||
|
onClick: (t) => {
|
||||||
|
return (a = e), (C.value = a), void Ce();
|
||||||
|
var a;
|
||||||
|
},
|
||||||
|
class: "relative py-10 van-hairline--bottom",
|
||||||
|
},
|
||||||
|
[
|
||||||
|
c("div", U, [
|
||||||
|
c("div", B, v(e.title), 1),
|
||||||
|
c("div", null, [
|
||||||
|
m(C).id === e.id
|
||||||
|
? (r(), f("img", G))
|
||||||
|
: (r(), f("img", P)),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
],
|
||||||
|
8,
|
||||||
|
S
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
|
128
|
||||||
|
)),
|
||||||
|
]),
|
||||||
|
c("div", q, [
|
||||||
|
c("div", z, [
|
||||||
|
c("div", H, v(m(C).title), 1),
|
||||||
|
c("div", K, [
|
||||||
|
(null == (a = m(Xe)[m(C).id])
|
||||||
|
? void 0
|
||||||
|
: a.account.length) < 25
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
p,
|
||||||
|
{ key: 0 },
|
||||||
|
[x(v(m(Xe)[m(C).id].account), 1)],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
(null == (l = m(Xe)[m(C).id])
|
||||||
|
? void 0
|
||||||
|
: l.account.length) >= 25
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
p,
|
||||||
|
{ key: 1 },
|
||||||
|
[
|
||||||
|
x(
|
||||||
|
v(m(Xe)[m(C).id].account.slice(0, 10)),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
L,
|
||||||
|
x(
|
||||||
|
v(
|
||||||
|
m(Xe)[m(C).id].account.slice(
|
||||||
|
(null == (i = m(Xe)[m(C).id])
|
||||||
|
? void 0
|
||||||
|
: i.account.length) - 10,
|
||||||
|
null == (s = m(Xe)[m(C).id])
|
||||||
|
? void 0
|
||||||
|
: s.account.length
|
||||||
|
)
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
(null == (n = m(Xe)[m(C).id]) ? void 0 : n.account)
|
||||||
|
? k("", !0)
|
||||||
|
: (r(),
|
||||||
|
f("div", V, [
|
||||||
|
5 === m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
p,
|
||||||
|
{ key: 0 },
|
||||||
|
[x(v(e.$t("请添加印度")), 1)],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
3 === m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
p,
|
||||||
|
{ key: 1 },
|
||||||
|
[x(v(e.$t("请添加尼日利亚")) + "1", 1)],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
6 === m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
p,
|
||||||
|
{ key: 2 },
|
||||||
|
[x(v(e.$t("请添加尼日利亚")) + "2", 1)],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
7 === m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
p,
|
||||||
|
{ key: 3 },
|
||||||
|
[x(v(e.$t("请添加菲律宾")), 1)],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
8 === m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
p,
|
||||||
|
{ key: 4 },
|
||||||
|
[x(v(e.$t("请添加巴西")), 1)],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
2 === m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
p,
|
||||||
|
{ key: 5 },
|
||||||
|
[x(v(e.$t("请添加肯尼亚")), 1)],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
1 === m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
p,
|
||||||
|
{ key: 6 },
|
||||||
|
[x(v(e.$t("请添加USDT地址")), 1)],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
4 === m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
p,
|
||||||
|
{ key: 7 },
|
||||||
|
[x(v(e.$t("请添加TRX地址")), 1)],
|
||||||
|
64
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
])),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
c("div", { onClick: Ae }, [
|
||||||
|
c("div", W, [
|
||||||
|
(null == (o = m(Xe)[m(C).id]) ? void 0 : o.account)
|
||||||
|
? (r(),
|
||||||
|
f(p, { key: 0 }, [x(v(e.$t("修改")), 1)], 64))
|
||||||
|
: (r(),
|
||||||
|
f(p, { key: 1 }, [x(v(e.$t("添加")), 1)], 64)),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
c("div", J, [
|
||||||
|
c("div", O, [
|
||||||
|
x(v(e.$t("转出金额")) + " ", 1),
|
||||||
|
1 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
"span",
|
||||||
|
Q,
|
||||||
|
v(e.$t("提款手续费")) +
|
||||||
|
":500 " +
|
||||||
|
v(e.$t("积分")),
|
||||||
|
1
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
2 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
"span",
|
||||||
|
Y,
|
||||||
|
v(e.$t("提款手续费")) +
|
||||||
|
":300 " +
|
||||||
|
v(e.$t("积分")),
|
||||||
|
1
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
3 == m(C).id || 6 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
"span",
|
||||||
|
Z,
|
||||||
|
v(e.$t("提款手续费")) +
|
||||||
|
":300 " +
|
||||||
|
v(e.$t("积分")),
|
||||||
|
1
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
4 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
"span",
|
||||||
|
ee,
|
||||||
|
v(e.$t("提款手续费")) +
|
||||||
|
":300 " +
|
||||||
|
v(e.$t("积分")),
|
||||||
|
1
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
7 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
"span",
|
||||||
|
te,
|
||||||
|
v(e.$t("提款手续费")) +
|
||||||
|
":500 " +
|
||||||
|
v(e.$t("积分")),
|
||||||
|
1
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
8 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
"span",
|
||||||
|
ae,
|
||||||
|
v(e.$t("提款手续费")) +
|
||||||
|
":" +
|
||||||
|
v(m(j).config.brl_fee) +
|
||||||
|
" " +
|
||||||
|
v(e.$t("积分")),
|
||||||
|
1
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
5 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
"span",
|
||||||
|
le,
|
||||||
|
v(e.$t("提款手续费")) +
|
||||||
|
":500 " +
|
||||||
|
v(e.$t("积分")),
|
||||||
|
1
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
]),
|
||||||
|
$(
|
||||||
|
c(
|
||||||
|
"input",
|
||||||
|
{
|
||||||
|
"onUpdate:modelValue":
|
||||||
|
t[0] ||
|
||||||
|
(t[0] = (e) => (h(X) ? (X.value = e) : null)),
|
||||||
|
class: "py-15 borde text-18 w-full",
|
||||||
|
type: "number",
|
||||||
|
placeholder: e.$t("最多可转出") + m(Me),
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
ie
|
||||||
|
),
|
||||||
|
[[g, m(X)]]
|
||||||
|
),
|
||||||
|
c("div", se, [
|
||||||
|
c("div", ne, v(e.$t("您将提现")), 1),
|
||||||
|
m(X)
|
||||||
|
? (r(),
|
||||||
|
f("div", oe, [
|
||||||
|
x(v(m(X)) + v(e.$t("积分")) + " ", 1),
|
||||||
|
5 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f("span", ue, "+500 " + v(e.$t("积分")), 1))
|
||||||
|
: k("", !0),
|
||||||
|
7 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f("span", de, "+500 " + v(e.$t("积分")), 1))
|
||||||
|
: k("", !0),
|
||||||
|
8 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
"span",
|
||||||
|
re,
|
||||||
|
"+" +
|
||||||
|
v(m(j).config.brl_fee) +
|
||||||
|
v(e.$t("积分")),
|
||||||
|
1
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
4 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f("span", ce, "+300 " + v(e.$t("积分")), 1))
|
||||||
|
: k("", !0),
|
||||||
|
3 == m(C).id || 6 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f("span", ve, "+300 " + v(e.$t("积分")), 1))
|
||||||
|
: k("", !0),
|
||||||
|
2 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f("span", fe, "+300 " + v(e.$t("积分")), 1))
|
||||||
|
: k("", !0),
|
||||||
|
1 == m(C).id
|
||||||
|
? (r(),
|
||||||
|
f("span", ye, "+500 " + v(e.$t("积分")), 1))
|
||||||
|
: k("", !0),
|
||||||
|
x(" = " + v(m(Re)), 1),
|
||||||
|
]))
|
||||||
|
: k("", !0),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
m(X)
|
||||||
|
? k("", !0)
|
||||||
|
: (r(), f("div", me, v(e.$t("确定")), 1)),
|
||||||
|
m(X)
|
||||||
|
? (r(),
|
||||||
|
f(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
key: 1,
|
||||||
|
class:
|
||||||
|
"flex mt-10 items-center justify-center text-16 font-600 h-45 rounded-8 bg-#5A55E6 text-white",
|
||||||
|
onClick: Te,
|
||||||
|
},
|
||||||
|
v(e.$t("确定")),
|
||||||
|
1
|
||||||
|
))
|
||||||
|
: k("", !0),
|
||||||
|
c("div", pe, [
|
||||||
|
c("div", xe, [
|
||||||
|
c("div", ke, v(e.$t("提现说明")), 1),
|
||||||
|
c("ul", $e, [
|
||||||
|
c("li", ge, [
|
||||||
|
x(v(e.$t("最低提现金额为")) + " ", 1),
|
||||||
|
5 == m(C).id
|
||||||
|
? (r(), f("span", he, "7000"))
|
||||||
|
: k("", !0),
|
||||||
|
7 == m(C).id
|
||||||
|
? (r(), f("span", be, "5000"))
|
||||||
|
: k("", !0),
|
||||||
|
8 == m(C).id
|
||||||
|
? (r(), f("span", Ie, "5000"))
|
||||||
|
: k("", !0),
|
||||||
|
1 == m(C).id
|
||||||
|
? (r(), f("span", _e, "20000"))
|
||||||
|
: k("", !0),
|
||||||
|
2 == m(C).id || 3 == m(C).id || 6 == m(C).id
|
||||||
|
? (r(), f("span", we, "1000"))
|
||||||
|
: k("", !0),
|
||||||
|
4 == m(C).id
|
||||||
|
? (r(), f("span", Ee, "5000"))
|
||||||
|
: k("", !0),
|
||||||
|
je,
|
||||||
|
]),
|
||||||
|
c(
|
||||||
|
"li",
|
||||||
|
Fe,
|
||||||
|
v(
|
||||||
|
e.$t(
|
||||||
|
"每天只能提现3次请仔细核对信息是否输入正确,提现未到账,请联系客服"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
];
|
||||||
|
}),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["title"]
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-a74356d2"]]
|
||||||
|
);
|
||||||
|
export { Ce as default };
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,503 @@
|
||||||
|
import {
|
||||||
|
bn as e,
|
||||||
|
aj as t,
|
||||||
|
aR as a,
|
||||||
|
aO as l,
|
||||||
|
bo as r,
|
||||||
|
H as n,
|
||||||
|
J as o,
|
||||||
|
a0 as s,
|
||||||
|
a1 as i,
|
||||||
|
a5 as u,
|
||||||
|
an as c,
|
||||||
|
I as d,
|
||||||
|
a3 as g,
|
||||||
|
j as f,
|
||||||
|
ao as p,
|
||||||
|
c as m,
|
||||||
|
ag as v,
|
||||||
|
ad as h,
|
||||||
|
ar as b,
|
||||||
|
bp as y,
|
||||||
|
w as k,
|
||||||
|
a8 as x,
|
||||||
|
D as w,
|
||||||
|
a6 as S,
|
||||||
|
v as C,
|
||||||
|
bm as M,
|
||||||
|
ah as V,
|
||||||
|
aN as I,
|
||||||
|
bq as B,
|
||||||
|
aE as A,
|
||||||
|
P as E,
|
||||||
|
aw as z,
|
||||||
|
y as j,
|
||||||
|
br as P,
|
||||||
|
Q as T,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
import { c as L, C as W } from "./index-325f2a5d.js";
|
||||||
|
import { u as q } from "./use-id-50eda0ee.js";
|
||||||
|
function H(e) {
|
||||||
|
return Array.isArray(e) ? !e.length : 0 !== e && !e;
|
||||||
|
}
|
||||||
|
function R(e, t) {
|
||||||
|
const { message: a } = t;
|
||||||
|
return l(a) ? a(e, t) : a || "";
|
||||||
|
}
|
||||||
|
function D({ target: e }) {
|
||||||
|
e.composing = !0;
|
||||||
|
}
|
||||||
|
function F({ target: e }) {
|
||||||
|
e.composing && ((e.composing = !1), e.dispatchEvent(new Event("input")));
|
||||||
|
}
|
||||||
|
function O(e) {
|
||||||
|
return [...e].length;
|
||||||
|
}
|
||||||
|
function J(e, t) {
|
||||||
|
return [...e].slice(0, t).join("");
|
||||||
|
}
|
||||||
|
const [K, N] = n("field");
|
||||||
|
const Q = T(
|
||||||
|
d({
|
||||||
|
name: K,
|
||||||
|
props: u(
|
||||||
|
{},
|
||||||
|
L,
|
||||||
|
{
|
||||||
|
id: String,
|
||||||
|
name: String,
|
||||||
|
leftIcon: String,
|
||||||
|
rightIcon: String,
|
||||||
|
autofocus: Boolean,
|
||||||
|
clearable: Boolean,
|
||||||
|
maxlength: o,
|
||||||
|
formatter: Function,
|
||||||
|
clearIcon: s("clear"),
|
||||||
|
modelValue: i(""),
|
||||||
|
inputAlign: String,
|
||||||
|
placeholder: String,
|
||||||
|
autocomplete: String,
|
||||||
|
autocapitalize: String,
|
||||||
|
autocorrect: String,
|
||||||
|
errorMessage: String,
|
||||||
|
enterkeyhint: String,
|
||||||
|
spellcheck: { type: Boolean, default: null },
|
||||||
|
clearTrigger: s("focus"),
|
||||||
|
formatTrigger: s("onChange"),
|
||||||
|
error: { type: Boolean, default: null },
|
||||||
|
disabled: { type: Boolean, default: null },
|
||||||
|
readonly: { type: Boolean, default: null },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
rows: o,
|
||||||
|
type: s("text"),
|
||||||
|
rules: Array,
|
||||||
|
autosize: [Boolean, Object],
|
||||||
|
labelWidth: o,
|
||||||
|
labelClass: c,
|
||||||
|
labelAlign: String,
|
||||||
|
showWordLimit: Boolean,
|
||||||
|
errorMessageAlign: String,
|
||||||
|
colon: { type: Boolean, default: null },
|
||||||
|
}
|
||||||
|
),
|
||||||
|
emits: [
|
||||||
|
"blur",
|
||||||
|
"focus",
|
||||||
|
"clear",
|
||||||
|
"keypress",
|
||||||
|
"clickInput",
|
||||||
|
"endValidate",
|
||||||
|
"startValidate",
|
||||||
|
"clickLeftIcon",
|
||||||
|
"clickRightIcon",
|
||||||
|
"update:modelValue",
|
||||||
|
],
|
||||||
|
setup(l, { emit: n, slots: o }) {
|
||||||
|
const s = q(),
|
||||||
|
i = g({ status: "unvalidated", focused: !1, validateMessage: "" }),
|
||||||
|
u = f(),
|
||||||
|
c = f(),
|
||||||
|
d = f(),
|
||||||
|
{ parent: T } = p(M),
|
||||||
|
L = () => {
|
||||||
|
var e;
|
||||||
|
return String(null != (e = l.modelValue) ? e : "");
|
||||||
|
},
|
||||||
|
K = (e) => (V(l[e]) ? l[e] : T && V(T.props[e]) ? T.props[e] : void 0),
|
||||||
|
Q = m(() => {
|
||||||
|
const e = K("readonly");
|
||||||
|
if (l.clearable && !e) {
|
||||||
|
const e = "" !== L(),
|
||||||
|
t =
|
||||||
|
"always" === l.clearTrigger ||
|
||||||
|
("focus" === l.clearTrigger && i.focused);
|
||||||
|
return e && t;
|
||||||
|
}
|
||||||
|
return !1;
|
||||||
|
}),
|
||||||
|
X = m(() => (d.value && o.input ? d.value() : l.modelValue)),
|
||||||
|
$ = (e) =>
|
||||||
|
e.reduce(
|
||||||
|
(e, t) =>
|
||||||
|
e.then(() => {
|
||||||
|
if ("failed" === i.status) return;
|
||||||
|
let { value: e } = X;
|
||||||
|
if (
|
||||||
|
(t.formatter && (e = t.formatter(e, t)),
|
||||||
|
!(function (e, t) {
|
||||||
|
if (H(e)) {
|
||||||
|
if (t.required) return !1;
|
||||||
|
if (!1 === t.validateEmpty) return !0;
|
||||||
|
}
|
||||||
|
return !(t.pattern && !t.pattern.test(String(e)));
|
||||||
|
})(e, t))
|
||||||
|
)
|
||||||
|
return (
|
||||||
|
(i.status = "failed"), void (i.validateMessage = R(e, t))
|
||||||
|
);
|
||||||
|
if (t.validator) {
|
||||||
|
if (H(e) && !1 === t.validateEmpty) return;
|
||||||
|
return (function (e, t) {
|
||||||
|
return new Promise((l) => {
|
||||||
|
const r = t.validator(e, t);
|
||||||
|
a(r) ? r.then(l) : l(r);
|
||||||
|
});
|
||||||
|
})(e, t).then((a) => {
|
||||||
|
a && "string" == typeof a
|
||||||
|
? ((i.status = "failed"), (i.validateMessage = a))
|
||||||
|
: !1 === a &&
|
||||||
|
((i.status = "failed"), (i.validateMessage = R(e, t)));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
Promise.resolve()
|
||||||
|
),
|
||||||
|
G = () => {
|
||||||
|
(i.status = "unvalidated"), (i.validateMessage = "");
|
||||||
|
},
|
||||||
|
U = () =>
|
||||||
|
n("endValidate", { status: i.status, message: i.validateMessage }),
|
||||||
|
Y = (e = l.rules) =>
|
||||||
|
new Promise((t) => {
|
||||||
|
G(),
|
||||||
|
e
|
||||||
|
? (n("startValidate"),
|
||||||
|
$(e).then(() => {
|
||||||
|
"failed" === i.status
|
||||||
|
? (t({ name: l.name, message: i.validateMessage }), U())
|
||||||
|
: ((i.status = "passed"), t(), U());
|
||||||
|
}))
|
||||||
|
: t();
|
||||||
|
}),
|
||||||
|
Z = (e) => {
|
||||||
|
if (T && l.rules) {
|
||||||
|
const { validateTrigger: t } = T.props,
|
||||||
|
a = I(t).includes(e),
|
||||||
|
r = l.rules.filter((t) =>
|
||||||
|
t.trigger ? I(t.trigger).includes(e) : a
|
||||||
|
);
|
||||||
|
r.length && Y(r);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
_ = (e, t = "onChange") => {
|
||||||
|
const a = e;
|
||||||
|
e = ((e) => {
|
||||||
|
var t;
|
||||||
|
const { maxlength: a } = l;
|
||||||
|
if (V(a) && O(e) > +a) {
|
||||||
|
const l = L();
|
||||||
|
if (l && O(l) === +a) return l;
|
||||||
|
const r = null == (t = u.value) ? void 0 : t.selectionEnd;
|
||||||
|
if (i.focused && r) {
|
||||||
|
const t = [...e],
|
||||||
|
l = t.length - +a;
|
||||||
|
return t.splice(r - l, l), t.join("");
|
||||||
|
}
|
||||||
|
return J(e, +a);
|
||||||
|
}
|
||||||
|
return e;
|
||||||
|
})(e);
|
||||||
|
const r = O(a) - O(e);
|
||||||
|
if ("number" === l.type || "digit" === l.type) {
|
||||||
|
const t = "number" === l.type;
|
||||||
|
e = B(e, t, t);
|
||||||
|
}
|
||||||
|
let o = 0;
|
||||||
|
if (l.formatter && t === l.formatTrigger) {
|
||||||
|
const { formatter: t, maxlength: r } = l;
|
||||||
|
if (
|
||||||
|
((e = t(e)),
|
||||||
|
V(r) && O(e) > +r && (e = J(e, +r)),
|
||||||
|
u.value && i.focused)
|
||||||
|
) {
|
||||||
|
const { selectionEnd: e } = u.value,
|
||||||
|
l = J(a, e);
|
||||||
|
o = O(t(l)) - O(l);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (u.value && u.value.value !== e)
|
||||||
|
if (i.focused) {
|
||||||
|
let { selectionStart: t, selectionEnd: a } = u.value;
|
||||||
|
if (((u.value.value = e), V(t) && V(a))) {
|
||||||
|
const l = O(e);
|
||||||
|
r ? ((t -= r), (a -= r)) : o && ((t += o), (a += o)),
|
||||||
|
u.value.setSelectionRange(Math.min(t, l), Math.min(a, l));
|
||||||
|
}
|
||||||
|
} else u.value.value = e;
|
||||||
|
e !== l.modelValue && n("update:modelValue", e);
|
||||||
|
},
|
||||||
|
ee = (e) => {
|
||||||
|
e.target.composing || _(e.target.value);
|
||||||
|
},
|
||||||
|
te = () => {
|
||||||
|
var e;
|
||||||
|
return null == (e = u.value) ? void 0 : e.blur();
|
||||||
|
},
|
||||||
|
ae = () => {
|
||||||
|
var e;
|
||||||
|
return null == (e = u.value) ? void 0 : e.focus();
|
||||||
|
},
|
||||||
|
le = () => {
|
||||||
|
const a = u.value;
|
||||||
|
"textarea" === l.type &&
|
||||||
|
l.autosize &&
|
||||||
|
a &&
|
||||||
|
(function (a, l) {
|
||||||
|
const n = e();
|
||||||
|
a.style.height = "auto";
|
||||||
|
let o = a.scrollHeight;
|
||||||
|
if (r(l)) {
|
||||||
|
const { maxHeight: e, minHeight: t } = l;
|
||||||
|
void 0 !== e && (o = Math.min(o, e)),
|
||||||
|
void 0 !== t && (o = Math.max(o, t));
|
||||||
|
}
|
||||||
|
o && ((a.style.height = "".concat(o, "px")), t(n));
|
||||||
|
})(a, l.autosize);
|
||||||
|
},
|
||||||
|
re = (e) => {
|
||||||
|
(i.focused = !0), n("focus", e), x(le), K("readonly") && te();
|
||||||
|
},
|
||||||
|
ne = (e) => {
|
||||||
|
(i.focused = !1),
|
||||||
|
_(L(), "onBlur"),
|
||||||
|
n("blur", e),
|
||||||
|
K("readonly") || (Z("onBlur"), x(le), P());
|
||||||
|
},
|
||||||
|
oe = (e) => n("clickInput", e),
|
||||||
|
se = (e) => n("clickLeftIcon", e),
|
||||||
|
ie = (e) => n("clickRightIcon", e),
|
||||||
|
ue = m(() =>
|
||||||
|
"boolean" == typeof l.error
|
||||||
|
? l.error
|
||||||
|
: !(!T || !T.props.showError || "failed" !== i.status) || void 0
|
||||||
|
),
|
||||||
|
ce = m(() => {
|
||||||
|
const e = K("labelWidth"),
|
||||||
|
t = K("labelAlign");
|
||||||
|
if (e && "top" !== t) return { width: v(e) };
|
||||||
|
}),
|
||||||
|
de = (e) => {
|
||||||
|
if (13 === e.keyCode) {
|
||||||
|
(T && T.props.submitOnEnter) || "textarea" === l.type || A(e),
|
||||||
|
"search" === l.type && te();
|
||||||
|
}
|
||||||
|
n("keypress", e);
|
||||||
|
},
|
||||||
|
ge = () => l.id || "".concat(s, "-input"),
|
||||||
|
fe = () => {
|
||||||
|
const e = N("control", [
|
||||||
|
K("inputAlign"),
|
||||||
|
{
|
||||||
|
error: ue.value,
|
||||||
|
custom: !!o.input,
|
||||||
|
"min-height": "textarea" === l.type && !l.autosize,
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
if (o.input) return C("div", { class: e, onClick: oe }, [o.input()]);
|
||||||
|
const t = {
|
||||||
|
id: ge(),
|
||||||
|
ref: u,
|
||||||
|
name: l.name,
|
||||||
|
rows: void 0 !== l.rows ? +l.rows : void 0,
|
||||||
|
class: e,
|
||||||
|
disabled: K("disabled"),
|
||||||
|
readonly: K("readonly"),
|
||||||
|
autofocus: l.autofocus,
|
||||||
|
placeholder: l.placeholder,
|
||||||
|
autocomplete: l.autocomplete,
|
||||||
|
autocapitalize: l.autocapitalize,
|
||||||
|
autocorrect: l.autocorrect,
|
||||||
|
enterkeyhint: l.enterkeyhint,
|
||||||
|
spellcheck: l.spellcheck,
|
||||||
|
"aria-labelledby": l.label ? "".concat(s, "-label") : void 0,
|
||||||
|
onBlur: ne,
|
||||||
|
onFocus: re,
|
||||||
|
onInput: ee,
|
||||||
|
onClick: oe,
|
||||||
|
onChange: F,
|
||||||
|
onKeypress: de,
|
||||||
|
onCompositionend: F,
|
||||||
|
onCompositionstart: D,
|
||||||
|
};
|
||||||
|
return "textarea" === l.type
|
||||||
|
? C("textarea", t, null)
|
||||||
|
: C(
|
||||||
|
"input",
|
||||||
|
z(
|
||||||
|
"number" === (a = l.type)
|
||||||
|
? { type: "text", inputmode: "decimal" }
|
||||||
|
: "digit" === a
|
||||||
|
? { type: "tel", inputmode: "numeric" }
|
||||||
|
: { type: a },
|
||||||
|
t
|
||||||
|
),
|
||||||
|
null
|
||||||
|
);
|
||||||
|
var a;
|
||||||
|
},
|
||||||
|
pe = () => {
|
||||||
|
const e = o["right-icon"];
|
||||||
|
if (l.rightIcon || e)
|
||||||
|
return C("div", { class: N("right-icon"), onClick: ie }, [
|
||||||
|
e
|
||||||
|
? e()
|
||||||
|
: C(E, { name: l.rightIcon, classPrefix: l.iconPrefix }, null),
|
||||||
|
]);
|
||||||
|
},
|
||||||
|
me = () => {
|
||||||
|
if (l.showWordLimit && l.maxlength) {
|
||||||
|
const e = O(L());
|
||||||
|
return C("div", { class: N("word-limit") }, [
|
||||||
|
C("span", { class: N("word-num") }, [e]),
|
||||||
|
j("/"),
|
||||||
|
l.maxlength,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ve = () => {
|
||||||
|
if (T && !1 === T.props.showErrorMessage) return;
|
||||||
|
const e = l.errorMessage || i.validateMessage;
|
||||||
|
if (e) {
|
||||||
|
const t = o["error-message"],
|
||||||
|
a = K("errorMessageAlign");
|
||||||
|
return C("div", { class: N("error-message", a) }, [
|
||||||
|
t ? t({ message: e }) : e,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
he = () => [
|
||||||
|
C("div", { class: N("body") }, [
|
||||||
|
fe(),
|
||||||
|
Q.value &&
|
||||||
|
C(E, { ref: c, name: l.clearIcon, class: N("clear") }, null),
|
||||||
|
pe(),
|
||||||
|
o.button && C("div", { class: N("button") }, [o.button()]),
|
||||||
|
]),
|
||||||
|
me(),
|
||||||
|
ve(),
|
||||||
|
];
|
||||||
|
return (
|
||||||
|
h({
|
||||||
|
blur: te,
|
||||||
|
focus: ae,
|
||||||
|
validate: Y,
|
||||||
|
formValue: X,
|
||||||
|
resetValidation: G,
|
||||||
|
getValidationStatus: () => i.status,
|
||||||
|
}),
|
||||||
|
b(y, { customValue: d, resetValidation: G, validateWithTrigger: Z }),
|
||||||
|
k(
|
||||||
|
() => l.modelValue,
|
||||||
|
() => {
|
||||||
|
_(L()), G(), Z("onChange"), x(le);
|
||||||
|
}
|
||||||
|
),
|
||||||
|
w(() => {
|
||||||
|
_(L(), l.formatTrigger), x(le);
|
||||||
|
}),
|
||||||
|
S(
|
||||||
|
"touchstart",
|
||||||
|
(e) => {
|
||||||
|
A(e), n("update:modelValue", ""), n("clear", e);
|
||||||
|
},
|
||||||
|
{
|
||||||
|
target: m(() => {
|
||||||
|
var e;
|
||||||
|
return null == (e = c.value) ? void 0 : e.$el;
|
||||||
|
}),
|
||||||
|
}
|
||||||
|
),
|
||||||
|
() => {
|
||||||
|
const e = K("disabled"),
|
||||||
|
t = K("labelAlign"),
|
||||||
|
a = (() => {
|
||||||
|
const e = o["left-icon"];
|
||||||
|
if (l.leftIcon || e)
|
||||||
|
return C("div", { class: N("left-icon"), onClick: se }, [
|
||||||
|
e
|
||||||
|
? e()
|
||||||
|
: C(
|
||||||
|
E,
|
||||||
|
{ name: l.leftIcon, classPrefix: l.iconPrefix },
|
||||||
|
null
|
||||||
|
),
|
||||||
|
]);
|
||||||
|
})();
|
||||||
|
return C(
|
||||||
|
W,
|
||||||
|
{
|
||||||
|
size: l.size,
|
||||||
|
class: N({
|
||||||
|
error: ue.value,
|
||||||
|
disabled: e,
|
||||||
|
["label-".concat(t)]: t,
|
||||||
|
}),
|
||||||
|
center: l.center,
|
||||||
|
border: l.border,
|
||||||
|
isLink: l.isLink,
|
||||||
|
clickable: l.clickable,
|
||||||
|
titleStyle: ce.value,
|
||||||
|
valueClass: N("value"),
|
||||||
|
titleClass: [
|
||||||
|
N("label", [t, { required: l.required }]),
|
||||||
|
l.labelClass,
|
||||||
|
],
|
||||||
|
arrowDirection: l.arrowDirection,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: a && "top" !== t ? () => a : null,
|
||||||
|
title: () => {
|
||||||
|
const e = (() => {
|
||||||
|
const e = K("labelWidth"),
|
||||||
|
t = K("labelAlign"),
|
||||||
|
a = K("colon") ? ":" : "";
|
||||||
|
return o.label
|
||||||
|
? [o.label(), a]
|
||||||
|
: l.label
|
||||||
|
? C(
|
||||||
|
"label",
|
||||||
|
{
|
||||||
|
id: "".concat(s, "-label"),
|
||||||
|
for: o.input ? void 0 : ge(),
|
||||||
|
onClick: (e) => {
|
||||||
|
A(e), ae();
|
||||||
|
},
|
||||||
|
style: "top" === t && e ? { width: v(e) } : void 0,
|
||||||
|
},
|
||||||
|
[l.label + a]
|
||||||
|
)
|
||||||
|
: void 0;
|
||||||
|
})();
|
||||||
|
return "top" === t ? [a, e].filter(Boolean) : e || [];
|
||||||
|
},
|
||||||
|
value: he,
|
||||||
|
extra: o.extra,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
})
|
||||||
|
);
|
||||||
|
export { Q as F };
|
|
@ -0,0 +1,41 @@
|
||||||
|
import {
|
||||||
|
H as t,
|
||||||
|
I as s,
|
||||||
|
v as e,
|
||||||
|
F as i,
|
||||||
|
K as l,
|
||||||
|
aw as a,
|
||||||
|
ai as n,
|
||||||
|
Q as r,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
const [o, c] = t("cell-group");
|
||||||
|
const d = r(
|
||||||
|
s({
|
||||||
|
name: o,
|
||||||
|
inheritAttrs: !1,
|
||||||
|
props: { title: String, inset: Boolean, border: l },
|
||||||
|
setup(t, { slots: s, attrs: l }) {
|
||||||
|
const r = () => {
|
||||||
|
var i;
|
||||||
|
return e(
|
||||||
|
"div",
|
||||||
|
a(
|
||||||
|
{ class: [c({ inset: t.inset }), { [n]: t.border && !t.inset }] },
|
||||||
|
l
|
||||||
|
),
|
||||||
|
[null == (i = s.default) ? void 0 : i.call(s)]
|
||||||
|
);
|
||||||
|
};
|
||||||
|
return () =>
|
||||||
|
t.title || s.title
|
||||||
|
? e(i, null, [
|
||||||
|
e("div", { class: c("title", { inset: t.inset }) }, [
|
||||||
|
s.title ? s.title() : t.title,
|
||||||
|
]),
|
||||||
|
r(),
|
||||||
|
])
|
||||||
|
: r();
|
||||||
|
},
|
||||||
|
})
|
||||||
|
);
|
||||||
|
export { d as C };
|
|
@ -0,0 +1,135 @@
|
||||||
|
import { a as o, u as n } from "./use-route-126c4f06.js";
|
||||||
|
import {
|
||||||
|
H as i,
|
||||||
|
a5 as a,
|
||||||
|
a0 as e,
|
||||||
|
J as l,
|
||||||
|
I as t,
|
||||||
|
bu as s,
|
||||||
|
v as r,
|
||||||
|
P as d,
|
||||||
|
aE as c,
|
||||||
|
aG as g,
|
||||||
|
Q as u,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
const [p, b] = i("button");
|
||||||
|
const f = u(
|
||||||
|
t({
|
||||||
|
name: p,
|
||||||
|
props: a({}, o, {
|
||||||
|
tag: e("button"),
|
||||||
|
text: String,
|
||||||
|
icon: String,
|
||||||
|
type: e("default"),
|
||||||
|
size: e("normal"),
|
||||||
|
color: String,
|
||||||
|
block: Boolean,
|
||||||
|
plain: Boolean,
|
||||||
|
round: Boolean,
|
||||||
|
square: Boolean,
|
||||||
|
loading: Boolean,
|
||||||
|
hairline: Boolean,
|
||||||
|
disabled: Boolean,
|
||||||
|
iconPrefix: String,
|
||||||
|
nativeType: e("button"),
|
||||||
|
loadingSize: l,
|
||||||
|
loadingText: String,
|
||||||
|
loadingType: String,
|
||||||
|
iconPosition: e("left"),
|
||||||
|
}),
|
||||||
|
emits: ["click"],
|
||||||
|
setup(o, { emit: i, slots: a }) {
|
||||||
|
const e = n(),
|
||||||
|
l = () =>
|
||||||
|
o.loading
|
||||||
|
? a.loading
|
||||||
|
? a.loading()
|
||||||
|
: r(
|
||||||
|
g,
|
||||||
|
{
|
||||||
|
size: o.loadingSize,
|
||||||
|
type: o.loadingType,
|
||||||
|
class: b("loading"),
|
||||||
|
},
|
||||||
|
null
|
||||||
|
)
|
||||||
|
: a.icon
|
||||||
|
? r("div", { class: b("icon") }, [a.icon()])
|
||||||
|
: o.icon
|
||||||
|
? r(
|
||||||
|
d,
|
||||||
|
{ name: o.icon, class: b("icon"), classPrefix: o.iconPrefix },
|
||||||
|
null
|
||||||
|
)
|
||||||
|
: void 0,
|
||||||
|
t = () => {
|
||||||
|
let n;
|
||||||
|
if (
|
||||||
|
((n = o.loading ? o.loadingText : a.default ? a.default() : o.text),
|
||||||
|
n)
|
||||||
|
)
|
||||||
|
return r("span", { class: b("text") }, [n]);
|
||||||
|
},
|
||||||
|
u = () => {
|
||||||
|
const { color: n, plain: i } = o;
|
||||||
|
if (n) {
|
||||||
|
const o = { color: i ? n : "white" };
|
||||||
|
return (
|
||||||
|
i || (o.background = n),
|
||||||
|
n.includes("gradient") ? (o.border = 0) : (o.borderColor = n),
|
||||||
|
o
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
p = (n) => {
|
||||||
|
o.loading ? c(n) : o.disabled || (i("click", n), e());
|
||||||
|
};
|
||||||
|
return () => {
|
||||||
|
const {
|
||||||
|
tag: n,
|
||||||
|
type: i,
|
||||||
|
size: a,
|
||||||
|
block: e,
|
||||||
|
round: d,
|
||||||
|
plain: c,
|
||||||
|
square: g,
|
||||||
|
loading: f,
|
||||||
|
disabled: x,
|
||||||
|
hairline: m,
|
||||||
|
nativeType: y,
|
||||||
|
iconPosition: B,
|
||||||
|
} = o,
|
||||||
|
S = [
|
||||||
|
b([
|
||||||
|
i,
|
||||||
|
a,
|
||||||
|
{
|
||||||
|
plain: c,
|
||||||
|
block: e,
|
||||||
|
round: d,
|
||||||
|
square: g,
|
||||||
|
loading: f,
|
||||||
|
disabled: x,
|
||||||
|
hairline: m,
|
||||||
|
},
|
||||||
|
]),
|
||||||
|
{ [s]: m },
|
||||||
|
];
|
||||||
|
return r(
|
||||||
|
n,
|
||||||
|
{ type: y, class: S, style: u(), disabled: x, onClick: p },
|
||||||
|
{
|
||||||
|
default: () => [
|
||||||
|
r("div", { class: b("content") }, [
|
||||||
|
"left" === B && l(),
|
||||||
|
t(),
|
||||||
|
"right" === B && l(),
|
||||||
|
]),
|
||||||
|
],
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
})
|
||||||
|
);
|
||||||
|
export { f as B };
|
|
@ -0,0 +1,500 @@
|
||||||
|
import { _ as e } from "./customI18nMenu.vue_vue_type_style_index_0_scoped_65795db4_lang-9d88fb9d.js";
|
||||||
|
import { _ as t, a, b as s, c as l, d as o } from "./vip16-d05d7908.js";
|
||||||
|
import { _ as i } from "./whatsapp-411ebec7.js";
|
||||||
|
import {
|
||||||
|
_ as A,
|
||||||
|
u as n,
|
||||||
|
j as c,
|
||||||
|
k as r,
|
||||||
|
w as d,
|
||||||
|
l as u,
|
||||||
|
o as v,
|
||||||
|
m as p,
|
||||||
|
p as m,
|
||||||
|
f as x,
|
||||||
|
t as g,
|
||||||
|
q as f,
|
||||||
|
i as h,
|
||||||
|
O as w,
|
||||||
|
s as I,
|
||||||
|
e as E,
|
||||||
|
v as b,
|
||||||
|
F as C,
|
||||||
|
r as B,
|
||||||
|
h as k,
|
||||||
|
x as G,
|
||||||
|
b as P,
|
||||||
|
y as F,
|
||||||
|
z as S,
|
||||||
|
A as y,
|
||||||
|
B as R,
|
||||||
|
C as Y,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
/* empty css */ /* empty css */ /* empty css */ import "./clipboard-c314aeef.js";
|
||||||
|
/* empty css */ /* empty css */ import { I as Q } from "./index-2898de52.js";
|
||||||
|
import { S as U, a as j } from "./index-39c78e0d.js";
|
||||||
|
const J = {
|
||||||
|
class:
|
||||||
|
"flex flex-col absolute w-90vw h-66vh px-18 py-22 box-border top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 bg-white rounded-14",
|
||||||
|
},
|
||||||
|
z = { class: "flex-1 flex flex-col overflow-auto" },
|
||||||
|
V = { class: "lh-24 text-center text-18 font-600" },
|
||||||
|
X = ["innerHTML"],
|
||||||
|
N = A(
|
||||||
|
{
|
||||||
|
__name: "Notice",
|
||||||
|
setup(e) {
|
||||||
|
const t = n(),
|
||||||
|
a = c(!0),
|
||||||
|
s = c([]),
|
||||||
|
l = c([]);
|
||||||
|
return (
|
||||||
|
r({ type: 3 }).then((e) => {
|
||||||
|
(l.value = e.data.data), (s.value = e.data.data);
|
||||||
|
}),
|
||||||
|
d(
|
||||||
|
() => a.value,
|
||||||
|
(e) => {
|
||||||
|
e ||
|
||||||
|
setTimeout(() => {
|
||||||
|
(l.value = l.value.slice(1)),
|
||||||
|
l.value.length > 0 && (a.value = !0);
|
||||||
|
}, 600);
|
||||||
|
}
|
||||||
|
),
|
||||||
|
u(async () => {
|
||||||
|
if (t.isReLogin > 0) {
|
||||||
|
const e = await r({ type: 3 });
|
||||||
|
(l.value = e.data.data), (a.value = !0), t.changeIsReLogin(0);
|
||||||
|
} else {
|
||||||
|
(await r({ type: 3 })).data.data.length !== s.value.length &&
|
||||||
|
(a.value = !0);
|
||||||
|
}
|
||||||
|
}),
|
||||||
|
(e, t) => {
|
||||||
|
const s = w;
|
||||||
|
return l.value.length > 0
|
||||||
|
? (v(),
|
||||||
|
p(
|
||||||
|
s,
|
||||||
|
{
|
||||||
|
key: 0,
|
||||||
|
show: a.value,
|
||||||
|
onClick: t[1] || (t[1] = (e) => (a.value = !1)),
|
||||||
|
"lock-scroll": !1,
|
||||||
|
"z-index": "999",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: m(() => [
|
||||||
|
x("div", J, [
|
||||||
|
x("div", z, [
|
||||||
|
x("div", V, g(l.value[0].title), 1),
|
||||||
|
x(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"flex-1 overflow-auto overflow-auto mt-20 text-[#626262] text-14 lh-22",
|
||||||
|
innerHTML: l.value[0].content,
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
X
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
x("img", {
|
||||||
|
onClick:
|
||||||
|
t[0] || (t[0] = f((e) => (a.value = !1), ["stop"])),
|
||||||
|
class:
|
||||||
|
"absolute bottom-1vw left-1/2 -translate-x-1/2 w-44",
|
||||||
|
src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIEAAACBCAMAAADQfiliAAAAqFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8j1z1tAAAAN3RSTlMAOfw28vnu5gYK9iEx6OOQ3i0Upg7ZdtSYPOqtoH0pGMoktYkcznFrZkzGsZtHvULAuWCFWlZRV0eFGQAABupJREFUeNrFnGd7okAQgIci0gRURBEEeyxRE0v2//+ze9hlDYkGFoS998tdKsP02RKogKr1otN50d8fp4OO3BlMj/twcT5FPU0FDix9r/8xkNEj8uCj7/lLaBTJm7dlEf2NKLcDz4Rm0IzLELGxmiw1qJto/dF6fOOWntB61Err820GdWIG45+PtqaBvf4yDYJ5W9vB1PohiNgOu1ATqtnP/mbdGV0jeEb3+m7pWTHeI6gDP8yof7BfCz34m57g7QeZ8LBf90p3pCBK53KItWKPXR4W3zYbX1R4ia11963hGdhZD+6KG/pQnW8HaIdfJZ3n1r8rYlQ5LDxqAHERqRUc2L6b4gxViD/p8wOjahL5pJER9iqEAHXp3Raqc6VpdFo6ObxRC3g9eIV4QT3pBqWY0PiX4FUO4zSYyoigjdIfsjV4nV6ICBOVWYA9wihbqAV1I6ZZmlWEeZpKllAXZjvNDGwaSKPwowf1MVulIqgMAqQa6LtQJ71daggoJKT6qptUtR4U4N19pm5colzxALmcW9RctUMdTPFzfXZMfACaYUqy3DLHXVYkClxohnhIXvBvDQckD/SgKSKFJMf8YiAvoTlOCPMFTxFkXAu+oEm8HFdQSTWwoVFUYukLPOFG+hFomCUZeqMncaBgG8ygabYk3uAB0ha/QfOQ5mP94KQytoELzWM4yaOs2TMHEbfAA+9ZUjBxFzMHLrh4EHPcJ9lwCXz4evQ5kwYpJ464SKq/O0PLAF74+q9mxVRINuSG+0E9IVuS9BPw4y3xfPkeetoUT3bAkXiMtU49oYsSDlCI1gUWuhpjYrTcbHs8gEIERxyaUIQ0FB2hWAnZt1bHJE8XoVnJCCwUidlOXk5jG8zmmbKsF70cNZYs5WuAFN9ic53xLyMN4Ttrd+qQgVrKE6BFWk0oZIY1f8aNgYPdknH+zDeEkH4Hg8dqx/tcICjJizFVRUEnhhAgr9NEugAMLHA0JGbYJIpTDCghgi4UfJWFg5481wRQiRsAGxI1RI4JJGDCkBPdX6k9FsAGVbRsPnqJTE3EyDT1v9ghIwQrElG1KP3+vEhMIAEreMEz0KArJj+3BGaEDjXEExN0BGBmg6uRS5pnByjshlCkrAYUagJ2BPwiBqyTfz+hDKZIDfHLBKIJJXBxTjLBrtCcSFTlvwwjQSnwuvEJ5lUGFUEhhhB+flSlWzwDXrTYQkkEkdaIey0QBShJSMaGNrFfWaQONYSQ/k+CsiyIA8h0Xq1mCGtjURNUm536WALZgPIILfRNS4DynHEYVpcAhMyOmgAVOOAd4hckAGGACINKApB07BA/MCp2/Qi9supgJHaUYYwl4K8DKsEY2pUlIGFIg7ICs0QCC7efYvRfYiEifjBMJPD/Sz7wSSx80gaFf0684aGFrKFt+NcFGkohqc4L/rWRtmkXIkjwX/qDOanOW+wOXHskypB0KBJ+G/U/9ImuQoRe4miSePfKNBidGNwdsQb/eWGNhzUNVByOI/4zE8kDoZoupA1V7nOji+uBBwAH3CFEjCbIqwJCi9kQVGfyiS5mtK5lTCAUfp0BfCSgYwCAusP24L2GQvzvCAkXPEH2uK4j0d1P7zsuRYHzWtoJJUSZ+W3CuJ7oQz4+43qijTWfXdi22NZUpZrWVEHOdgVLHGNXfuvKNCEqvR8HP4bAEdWhm/CZ0GwdgB9X8ecZqVmH1AZuaAF2vRjuhJz3mboP20oGIt0iL/q4friPe8G8lCA82XSdyWSW58MKF48YsqjYE8Qv4MHmqc19hdveezx8Xj9H3M4fXIgXPK87SJ9B0wjor93NA59zKK71d/nuIx67z2HOU0wFkR2n5qBLT84yp2IiJYbm6CLMLTdZolUPmsIgTnApOsr56UIj0LN/gZqjpA49TNoIH9QJcrjqjVVJegxa8Yt8lUZLQwK0TlDAO8rRAo+zulRUNNLqdcIjPa/MfmR67kIGfme26RoXGSXrwrRSAUqe3W8f4Aeczu5n7y/oLJeR2O8veFXucKwiwNRwh0Mv2QKu6d2PjVvPPRZnW9p5dohwPNVxlyeYQWncd0RovcdVa/FRpC5QzaHWCiIoEwNKo5kjlGJtoSJSgFIcu2RkqtdAQSm2AdW5dVCKPi3jy9733b6pBC/hviuI4nh+T2W437i1M3ciJ/Ayfl9EFHHV35haXvbxJ3MH3VEWXagBFbsDpSUP7K+noaV2z+HPe672DOpC2o9RFt3Z9Rdv28ggSDfP3q/aKIvYHs2gTrreTkS/EfW/7jvr+40BdaNF9gAxIU7XsQbN4E+OHTn34YrVX0fQKMZpEuycFnpEGRzDNykGDqhu3D1t7P7+YzXoyO3B7hiEl6tf8e8f/ANHoPQA1GoxawAAAABJRU5ErkJggg==",
|
||||||
|
alt: "",
|
||||||
|
}),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["show"]
|
||||||
|
))
|
||||||
|
: h("", !0);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-86571ae9"]]
|
||||||
|
),
|
||||||
|
q = { class: "mt-10 overflow-hidden rounded-8 shadow-sm" },
|
||||||
|
K = ["onClick"],
|
||||||
|
W = {
|
||||||
|
__name: "Banner",
|
||||||
|
setup(e) {
|
||||||
|
const t = I("wz-banner", []);
|
||||||
|
(async () => {
|
||||||
|
const { data: e } = await r({ type: 5 });
|
||||||
|
t.value = e.data.map((e) => ({ ...e, image: G + e.image }));
|
||||||
|
})();
|
||||||
|
const a = c(0),
|
||||||
|
s = (e) => {
|
||||||
|
a.value = e;
|
||||||
|
};
|
||||||
|
return (e, a) => {
|
||||||
|
const l = Q,
|
||||||
|
o = U,
|
||||||
|
i = j;
|
||||||
|
return (
|
||||||
|
v(),
|
||||||
|
E("div", q, [
|
||||||
|
b(
|
||||||
|
i,
|
||||||
|
{ class: "relative z-10", autoplay: 3e3, onChange: s },
|
||||||
|
{
|
||||||
|
default: m(() => [
|
||||||
|
(v(!0),
|
||||||
|
E(
|
||||||
|
C,
|
||||||
|
null,
|
||||||
|
B(
|
||||||
|
k(t),
|
||||||
|
(e, t) => (
|
||||||
|
v(),
|
||||||
|
p(
|
||||||
|
o,
|
||||||
|
{ key: e.image },
|
||||||
|
{
|
||||||
|
default: m(() => [
|
||||||
|
x(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "w-full swipe_item",
|
||||||
|
onClick: (t) =>
|
||||||
|
((e) => {
|
||||||
|
var t =
|
||||||
|
navigator.userAgent ||
|
||||||
|
navigator.vendor ||
|
||||||
|
window.opera;
|
||||||
|
t.match(/iPad/i) ||
|
||||||
|
t.match(/iPhone/i) ||
|
||||||
|
t.match(/iPod/i)
|
||||||
|
? e.apple && window.open(e.apple)
|
||||||
|
: (t.match(/Android/i),
|
||||||
|
e.url && window.open(e.url));
|
||||||
|
})(e),
|
||||||
|
},
|
||||||
|
[
|
||||||
|
b(
|
||||||
|
l,
|
||||||
|
{
|
||||||
|
class: "w-full",
|
||||||
|
width: "100%",
|
||||||
|
fit: "cover",
|
||||||
|
src: e.image,
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["src"]
|
||||||
|
),
|
||||||
|
],
|
||||||
|
8,
|
||||||
|
K
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
_: 2,
|
||||||
|
},
|
||||||
|
1024
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
|
128
|
||||||
|
)),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
}
|
||||||
|
),
|
||||||
|
])
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
O = (e) => (y("data-v-49647315"), (e = e()), R(), e),
|
||||||
|
T = { class: "bg-#F2F2F2 h-100%" },
|
||||||
|
D = { class: "overflow-hidden h-120 topr py-4 bg-#5B56E8" },
|
||||||
|
H = { class: "flex" },
|
||||||
|
L = { class: "pr-5 mt-14 ml-13 w-70% flex" },
|
||||||
|
M = O(() => x("img", { class: "h-38", src: e }, null, -1)),
|
||||||
|
Z = { class: "lh-38 text-#fff text-20 pl-10" },
|
||||||
|
_ = { class: "flex" },
|
||||||
|
$ = { class: "flex pt-4 relative right-5" },
|
||||||
|
ee = { key: 0, class: "h-30 relative bottom-5 z-10", src: t },
|
||||||
|
te = { key: 1, class: "h-30 relative bottom-5 z-10", src: a },
|
||||||
|
ae = { key: 2, class: "h-30 relative bottom-5 z-10", src: s },
|
||||||
|
se = { key: 3, class: "h-30 relative bottom-5 z-10", src: l },
|
||||||
|
le = { key: 4, class: "h-30 relative bottom-5 z-10", src: o },
|
||||||
|
oe = {
|
||||||
|
class:
|
||||||
|
"bg-#767c83 lh-20 h-20 text-center w-50 text-13 rounded-5 relative right-12 z-0",
|
||||||
|
},
|
||||||
|
ie = { key: 0, class: "w-30% textrights" },
|
||||||
|
Ae = { class: "text-#fff textrights pr-18 pt-18" },
|
||||||
|
ne = O(() =>
|
||||||
|
x(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
class: "h-13 disblocks",
|
||||||
|
src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADGSURBVHgBrY5BDsFQEIb/eW1dATsnkG7sHaFRrVY1cYNasHcAEe6gErXgAu5gYy9B2h7ATvuohTQ0rYhv815mvn9mgAwMxa9p2lnO6rHMYgl9CZLzdSCP3wOG4ddM9aK8C1bLb5jqqf4RoJjJTBA2thZ00zJE2pHAmi8vPc3UQ4UR9xDjAKIrwOvEabxYl6eZgQS77WuxQC44JA4+WnrVCYpINvX0cIh/8DzJ6gSDxwlOgTl3V5WZmPwj4lsxwj7Pv4k4Ju8dR3o2gKjP2V0AAAAASUVORK5CYII=",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
ce = { class: "text-12" },
|
||||||
|
re = { class: "px-12 mainpos" },
|
||||||
|
de = { class: "bg-#fff py-15 borderrdu" },
|
||||||
|
ue = { class: "flex" },
|
||||||
|
ve = { class: "w-34% text-center" },
|
||||||
|
pe = { class: "text-#aaa text-14" },
|
||||||
|
me = { class: "text-#5B56E8 text-16 font-bold block pt-10" },
|
||||||
|
xe = { class: "w-33% text-center" },
|
||||||
|
ge = { class: "text-#aaa text-14" },
|
||||||
|
fe = { key: 0, class: "text-#5B56E8 text-16 font-bold block pt-10" },
|
||||||
|
he = { key: 1, class: "text-#5B56E8 text-16 font-bold block pt-10" },
|
||||||
|
we = { class: "w-33% text-center" },
|
||||||
|
Ie = { class: "text-#aaa text-14" },
|
||||||
|
Ee = { key: 0, class: "text-#5B56E8 text-16 font-bold block pt-10" },
|
||||||
|
be = { key: 1, class: "text-#5B56E8 text-16 font-bold block pt-10" },
|
||||||
|
Ce = { class: "mt-10 flex items-center" },
|
||||||
|
Be = O(() =>
|
||||||
|
x(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
class: "w-30 pr-10",
|
||||||
|
src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAamSURBVHgB7ZZ5cFVXHce/59xz37tvIxtpCg+yQFJIIMXAxHTaikkUbIu4tFKhrlX/cWwdO2iHkU4bHccuduo46jjjMkKrFacOVcZSxCnQioSGoQRawpYdsr3k7e/d+97djr+X/oMBAsQ/7W/mzty555zv557fdg7w/2YMczSZ2LYkF0lt4ZPxIe9df/oDbtLmBNbPbQoLj/+wstutdpM60GxsVTfufeFmNG4YLAc+U5wtbWrRkvGNrh1bqRj6R81tDGxchdiauKSUa3ezj+0eulG964KllAyRrz9m6/geErlbuW4glspjXmUAYshCrs+EqAGEppKavYObzg/YvfsG/yewYXRUi6mh3yGWabeyDHx+EyLuanzpt148d+8hNAe6wfIMB/pXoqIyjDrZCcFSky7Pv6C27X1mNm1+rQFpbK9SJkf3uxOxdtMpA6//LozSryLH67FwwVLsPBqGFEFACeAf6Xbo4U1ga55ALthYzhB6Wh783FOYC9iJJp6RE6N1tkp+rHkcU+kKGHkbwYCCD1cJnIqtxIFzS/DOVB2GreWoLKGkk6UQt2+FXLAOrhLscA4+dE34VV1tjj38FRZN7xgYLcIB+3F8fHkIHsWCxyOgKhwDYxJP7qGlxjj8WhArlhbj0XUSHpXGVRUqzdN7dsCfPg7LzrT52nYdmskQVwPzXOpJxzDx67P3YV8kjDd6XXyn1UBNqUkuslCqTGBT7RBK+SXKJ475C5ZAuI00VgRXCrx3ScHO9x7Cl+dNorF08Dl5sPVO1nbIvpyhzITmRjatExnr28NT8/Hsu1+EywOI5zzoGvHCDxNhtQfl+BtW9Z9C7bEUai8kER47By5Owy2vx/6zPrzYJZDMa5g0yrC2uCtsOb5jP3rx3fP/tbmZYMX1tLumhSOReuRZiILBpgMSTTP8olNgbPwQPP+MQ9lJ5XNaQkQE+IUg1FcsWP9+CftO089bKiQt6nUbcCZZBYUpj17h1ZkfmG3fYTsuzmfqiKnQBE4SkgYcLCsZQpN6Ac4eF2bbGiQ/fReyzcvJvS6kqUJ7M461RUfACtPl+/Ins/VQhNoc/31r8axgqfCgdDliuQAB3x+WBRESrw6OA+Mm1KSCXOV8YG8nbPqeaW1C9hMtlDELscw4CxcOCv9KLxjOVdF6p0QN+Ksv51yRXJyJsoJ7H1vPcfdQlHZj0zeaKC3cVhIBG+EwfdQqB8bgWd8Cu6IYSjoN5tpQiudhqW8UDy+9CE7Z7fVpqAxKyGFAdd06ku++JtiFmGIcNZUlWTCPA9uyoBQ27lgISA2SCShlWfj2dsGsrYBXOuB5mhMug5uKQmuvxOo6Pykr8Pl88Jm0eJDiLrl2HVeLXiEoqkYfSopC8GkaPSTgDyIvq5BTF8PekAVf5IcWScBPp5NGHpIXJyAbskgFl0+rcs6JTS82bYBiZXE2NivYdbJHmUcFS52kP5bgtJgplKWKF52DpfjGa5vRV7Ma5oNR5OqTMEsMZEIR2GtTeP3WNXj67TtwKaWRjpwuCCfTD9t0EJ+IRS/nXNG50r2fvcUnlT5k8kEsfgQJuQZpXWJPt4Jdp1RYVGo+ZwT3LejEF2pPIMQsqvNivNzfjON6O+CdR22VY8MKAw/c6QE7sR36xYG+eQ/srsVsyRWqfTViX7j/NSb45+3xv0KEb8cvD3rw5nCoEAjavUL1vQj/St6De4qXIad5kDT9eKfnFuS5j1zGkM8wvNTlh53pxmYxjngyfngm56qHhJ0ztlPVJ7g1hp5jL+NwH5t2G6e6VjjVtvBhcRk1Dm8IrieAQMiDFYtU5KkMDctB1rSRM3WscvYjGY9JPW903BBYa3y9L+/YHQo1+5byt/GthlfgdVNQCzlfSBqCr1woqFx8EKoXXq8XTYt05KnxGLYD087ha4tfRZXbRR0v/uP6bx4dvCFwwfyNf/+Zw+UP4dGwpeEInm/5DSr9F6HSCsElbqug04qAXsp4jTJ/Va0P1XQSBzxpbF+xC58s+guGR8ePd/dGfnI1/eteffInNz/FtLIOIb3QszbeGl2No5EGbNuyhKJB/ZpiTlEFt0Yx3HsG/mgnvIkejERSnUNTiS0bnjgzNCdwwcbe+tSGgDfwU18oXMeoYTA9BldQmQlKOIqrk0/B0bPTTyqVTU4mMj8/PxB9/sFn+5PX0ryp623sjfUbFW/J/QzeVoWJajpQYOV06EbGzulGn6mbf45E9D9+5Psnz19Pa84X+hO/+lC1InlZ2rLzQtHGWh7piuIDm8X+A6DKxrsTrtA2AAAAAElFTkSuQmCC",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
ke = { class: "text-16" },
|
||||||
|
Ge = O(() =>
|
||||||
|
x(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
class: "w-30 pr-10",
|
||||||
|
src: "data:image/png;base64,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",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
Pe = { class: "text-16" },
|
||||||
|
Fe = { class: "mt-12 px-14 py-16 bg-white rounded-8" },
|
||||||
|
Se = { class: "items-center rounded-8 text-14" },
|
||||||
|
ye = { class: "mb-10" },
|
||||||
|
Re = { class: "text-18 font-500" },
|
||||||
|
Ye = { class: "text-13 text-#bbb pl-10" },
|
||||||
|
Qe = { class: "mb-10 text-14 text-#5B56E8" },
|
||||||
|
Ue = { class: "flex items-center bowhat" },
|
||||||
|
je = O(() => x("img", { class: "w-32", src: i, alt: "" }, null, -1)),
|
||||||
|
Je = { class: "ml-10" },
|
||||||
|
ze = { class: "flex mt-8" },
|
||||||
|
Ve = [
|
||||||
|
O(() =>
|
||||||
|
x(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"rightwhat right-0 px-15 py-8 borders ml-13 bg-#0EBF3B text-white rounded-full text-center",
|
||||||
|
},
|
||||||
|
"Daily wages",
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
],
|
||||||
|
Xe = { class: "flex-1" },
|
||||||
|
Ne = { class: "h-25 lh-40 text-center text-12 text-#aaa" },
|
||||||
|
qe = A(
|
||||||
|
{
|
||||||
|
__name: "index",
|
||||||
|
setup(e) {
|
||||||
|
const t = n(),
|
||||||
|
a = P(),
|
||||||
|
s = c(""),
|
||||||
|
l = c(!0);
|
||||||
|
(async () => {
|
||||||
|
const { data: e } = await r({ type: 5 });
|
||||||
|
(s.value = e.data[0]),
|
||||||
|
(e.data[0].apple || e.data[0].url) && (l.value = !0);
|
||||||
|
})();
|
||||||
|
let o = c("VIP0");
|
||||||
|
t.vip.vipname && (o = t.vip.vipname);
|
||||||
|
let i = c([]);
|
||||||
|
(async () => {
|
||||||
|
let { data: e } = await S();
|
||||||
|
(i.value = e), (t.vip.vipindex = e);
|
||||||
|
let a = c(0);
|
||||||
|
(async () => {
|
||||||
|
let { data: e } = await Y();
|
||||||
|
(a.value = e.user_count),
|
||||||
|
(t.vip.vipcount = e.user_count),
|
||||||
|
a.value < i.value[0].user_count &&
|
||||||
|
((o = "VIP0"), (t.vip.vipname = "VIP0")),
|
||||||
|
a.value >= i.value[0].user_count &&
|
||||||
|
a.value < i.value[1].user_count &&
|
||||||
|
((o = i.value[0].name), (t.vip.vipname = i.value[0].name)),
|
||||||
|
a.value >= i.value[1].user_count &&
|
||||||
|
a.value < i.value[2].user_count &&
|
||||||
|
((o = i.value[1].name), (t.vip.vipname = i.value[1].name)),
|
||||||
|
a.value >= i.value[2].user_count &&
|
||||||
|
a.value < i.value[3].user_count &&
|
||||||
|
((o = i.value[2].name), (t.vip.vipname = i.value[2].name)),
|
||||||
|
a.value >= i.value[3].user_count &&
|
||||||
|
((o = i.value[3].name), (t.vip.vipname = i.value[3].name));
|
||||||
|
})();
|
||||||
|
})();
|
||||||
|
var A = navigator.userAgent || navigator.vendor || window.opera;
|
||||||
|
(A.match(/iPad/i) || A.match(/iPhone/i) || A.match(/iPod/i)) &&
|
||||||
|
(l.value = !1);
|
||||||
|
const d = () => {
|
||||||
|
A.match(/iPad/i) ||
|
||||||
|
A.match(/iPhone/i) ||
|
||||||
|
A.match(/iPod/i) ||
|
||||||
|
(A.match(/Android/i),
|
||||||
|
window.open(
|
||||||
|
"https://play.google.com/store/apps/details?id=com.devmahyou.ideasforhaircolors"
|
||||||
|
));
|
||||||
|
};
|
||||||
|
return (e, s) => (
|
||||||
|
v(),
|
||||||
|
E("div", T, [
|
||||||
|
x("div", D, [
|
||||||
|
x("div", H, [
|
||||||
|
x("div", L, [
|
||||||
|
M,
|
||||||
|
x("div", Z, [
|
||||||
|
F(" 22 JOB "),
|
||||||
|
x("div", _, [
|
||||||
|
x("div", $, [
|
||||||
|
"VIP0" == k(o) ? (v(), E("img", ee)) : h("", !0),
|
||||||
|
"VIP1" == k(o) ? (v(), E("img", te)) : h("", !0),
|
||||||
|
"VIP2" == k(o) ? (v(), E("img", ae)) : h("", !0),
|
||||||
|
"VIP3" == k(o) ? (v(), E("img", se)) : h("", !0),
|
||||||
|
"SVIP" == k(o) ? (v(), E("img", le)) : h("", !0),
|
||||||
|
x("span", oe, g(k(o)), 1),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
1 == k(l)
|
||||||
|
? (v(),
|
||||||
|
E("div", ie, [
|
||||||
|
x("div", Ae, [
|
||||||
|
x(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"px-8 rounded-15 disblock h-32 lh-32 text-12 text-#5B56E8 bg-white",
|
||||||
|
onClick: d,
|
||||||
|
},
|
||||||
|
[ne, x("span", ce, g(e.$t("下载APP")), 1)]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]))
|
||||||
|
: h("", !0),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
x("div", re, [
|
||||||
|
x("div", de, [
|
||||||
|
x("div", ue, [
|
||||||
|
x("div", ve, [
|
||||||
|
x("span", pe, g(e.$t("账户余额")), 1),
|
||||||
|
x("span", me, g(k(t).userInfo.money), 1),
|
||||||
|
]),
|
||||||
|
x("div", xe, [
|
||||||
|
x("span", ge, g(e.$t("今日任务收益")), 1),
|
||||||
|
k(t).userInfo.today_task_income > 0
|
||||||
|
? (v(),
|
||||||
|
E("span", fe, g(k(t).userInfo.today_task_income), 1))
|
||||||
|
: h("", !0),
|
||||||
|
0 == k(t).userInfo.today_task_income
|
||||||
|
? (v(), E("span", he, g(e.$t("暂无收益")), 1))
|
||||||
|
: h("", !0),
|
||||||
|
]),
|
||||||
|
x("div", we, [
|
||||||
|
x("span", Ie, g(e.$t("今日推广收益")), 1),
|
||||||
|
k(t).userInfo.today_team_income > 0
|
||||||
|
? (v(),
|
||||||
|
E("span", Ee, g(k(t).userInfo.today_team_income), 1))
|
||||||
|
: h("", !0),
|
||||||
|
0 == k(t).userInfo.today_team_income
|
||||||
|
? (v(), E("span", be, g(e.$t("暂无收益")), 1))
|
||||||
|
: h("", !0),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
x("div", Ce, [
|
||||||
|
x(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"h-50 bg-#fff w-full text-center flex justify-center items-center pl-10 rounded-10 box-border",
|
||||||
|
onClick: s[0] || (s[0] = (e) => k(a).push("/turntable")),
|
||||||
|
},
|
||||||
|
[Be, x("span", ke, g(e.$t("幸运转盘")), 1)]
|
||||||
|
),
|
||||||
|
x(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"h-50 bg-#fff w-full text-center flex justify-center ml-12 flex items-center rounded-10 box-border",
|
||||||
|
onClick: s[1] || (s[1] = (e) => k(a).push("/sign-in")),
|
||||||
|
},
|
||||||
|
[Ge, x("span", Pe, g(e.$t("签到日历")), 1)]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
b(W),
|
||||||
|
x("div", Fe, [
|
||||||
|
x("div", Se, [
|
||||||
|
x("div", ye, [
|
||||||
|
x("span", Re, g(e.$t("任务中心")), 1),
|
||||||
|
x("span", Ye, g(e.$t("做任务赚收益")), 1),
|
||||||
|
]),
|
||||||
|
x("div", Qe, g(e.$t("首次成功关联")), 1),
|
||||||
|
x("div", Ue, [
|
||||||
|
je,
|
||||||
|
x("div", Je, g(e.$t("WhatsApp关联任务")), 1),
|
||||||
|
]),
|
||||||
|
x("div", ze, [
|
||||||
|
x(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
onClick:
|
||||||
|
s[2] || (s[2] = (e) => k(a).push("/vipDetails")),
|
||||||
|
class: "flex-1",
|
||||||
|
},
|
||||||
|
Ve
|
||||||
|
),
|
||||||
|
x("div", Xe, [
|
||||||
|
x(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"rightwhat right-0 px-15 py-8 borders ml-13 bg-#5B56E8 text-white rounded-full text-center",
|
||||||
|
onClick:
|
||||||
|
s[3] || (s[3] = (e) => k(a).push("/autoTask")),
|
||||||
|
},
|
||||||
|
g(e.$t("开始任务")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
x("div", Ne, g(e.$t("更多任务开发中")), 1),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
b(N),
|
||||||
|
])
|
||||||
|
);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-49647315"]]
|
||||||
|
);
|
||||||
|
export { qe as default };
|
|
@ -0,0 +1,141 @@
|
||||||
|
/* empty css */ /* empty css */ /* empty css */ import "./index-325f2a5d.js";
|
||||||
|
import { F as e } from "./index-8da36b2b.js";
|
||||||
|
import {
|
||||||
|
a as s,
|
||||||
|
b as a,
|
||||||
|
j as o,
|
||||||
|
u as l,
|
||||||
|
aC as r,
|
||||||
|
m as t,
|
||||||
|
p as d,
|
||||||
|
o as p,
|
||||||
|
f as i,
|
||||||
|
v as m,
|
||||||
|
h as n,
|
||||||
|
t as u,
|
||||||
|
az as c,
|
||||||
|
aW as f,
|
||||||
|
G as b,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
import { b as x } from "./api.mine-40f950d7.js";
|
||||||
|
import { B as w } from "./index-97676c1f.js";
|
||||||
|
import { F as j } from "./index-34aa487b.js";
|
||||||
|
import "./use-route-126c4f06.js";
|
||||||
|
import "./use-id-50eda0ee.js";
|
||||||
|
const _ = { class: "pt-14 px-14 pb-20" },
|
||||||
|
y = { class: "text-16" },
|
||||||
|
g = {
|
||||||
|
__name: "index",
|
||||||
|
setup(g) {
|
||||||
|
const { t: $ } = s(),
|
||||||
|
h = a(),
|
||||||
|
v = o({ old_password: "", new_password: "" }),
|
||||||
|
V = l(),
|
||||||
|
C = () => {
|
||||||
|
c({ forbidClick: !0, duration: 0 }),
|
||||||
|
x(v.value).then((e) => {
|
||||||
|
f(),
|
||||||
|
b({
|
||||||
|
message: $("修改成功"),
|
||||||
|
onClose() {
|
||||||
|
localStorage.setItem("password", ""),
|
||||||
|
V.clearUserInfo(),
|
||||||
|
h.replace("/login");
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
return (s, a) => {
|
||||||
|
const o = e,
|
||||||
|
l = w,
|
||||||
|
c = j,
|
||||||
|
f = r("normal-layout");
|
||||||
|
return (
|
||||||
|
p(),
|
||||||
|
t(
|
||||||
|
f,
|
||||||
|
{
|
||||||
|
flex: "",
|
||||||
|
title: s.$t("修改密码"),
|
||||||
|
"bg-color": "#f2f2f2",
|
||||||
|
"nav-bg-color": "#fff",
|
||||||
|
"text-color": "#000",
|
||||||
|
backType: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: d(() => [
|
||||||
|
i("div", _, [
|
||||||
|
m(
|
||||||
|
c,
|
||||||
|
{ onSubmit: C, class: "mb-20 rounded-8 overflow-hidden" },
|
||||||
|
{
|
||||||
|
default: d(() => [
|
||||||
|
m(
|
||||||
|
o,
|
||||||
|
{
|
||||||
|
class: "!py-14",
|
||||||
|
modelValue: n(v).old_password,
|
||||||
|
"onUpdate:modelValue":
|
||||||
|
a[0] || (a[0] = (e) => (n(v).old_password = e)),
|
||||||
|
type: "password",
|
||||||
|
label: s.$t("原密码"),
|
||||||
|
placeholder: s.$t("请输入原密码"),
|
||||||
|
rules: [
|
||||||
|
{ required: !0, message: s.$t("请输入原密码") },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["modelValue", "label", "placeholder", "rules"]
|
||||||
|
),
|
||||||
|
m(
|
||||||
|
o,
|
||||||
|
{
|
||||||
|
class: "!py-14",
|
||||||
|
modelValue: n(v).new_password,
|
||||||
|
"onUpdate:modelValue":
|
||||||
|
a[1] || (a[1] = (e) => (n(v).new_password = e)),
|
||||||
|
type: "password",
|
||||||
|
label: s.$t("新密码"),
|
||||||
|
placeholder: s.$t("请输入新密码"),
|
||||||
|
rules: [
|
||||||
|
{ required: !0, message: s.$t("请输入新密码") },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["modelValue", "label", "placeholder", "rules"]
|
||||||
|
),
|
||||||
|
m(
|
||||||
|
l,
|
||||||
|
{
|
||||||
|
color: "#5A55E6",
|
||||||
|
block: "",
|
||||||
|
type: "primary",
|
||||||
|
"native-type": "submit",
|
||||||
|
style: {
|
||||||
|
"margin-top": "8rem",
|
||||||
|
"border-radius": "2rem",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: d(() => [i("div", y, u(s.$t("确定")), 1)]),
|
||||||
|
_: 1,
|
||||||
|
}
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
}
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["title"]
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
};
|
||||||
|
export { g as default };
|
|
@ -0,0 +1,753 @@
|
||||||
|
/* empty css */ /* empty css */ import { C as e } from "./index-325f2a5d.js";
|
||||||
|
/* empty css */ /* empty css */ import {
|
||||||
|
H as t,
|
||||||
|
K as a,
|
||||||
|
J as l,
|
||||||
|
a1 as o,
|
||||||
|
a0 as s,
|
||||||
|
I as i,
|
||||||
|
j as n,
|
||||||
|
ae as r,
|
||||||
|
a2 as d,
|
||||||
|
c as u,
|
||||||
|
ah as c,
|
||||||
|
ad as p,
|
||||||
|
aY as v,
|
||||||
|
a6 as f,
|
||||||
|
v as h,
|
||||||
|
a9 as g,
|
||||||
|
ab as m,
|
||||||
|
M as x,
|
||||||
|
a3 as y,
|
||||||
|
ao as w,
|
||||||
|
aZ as b,
|
||||||
|
aJ as k,
|
||||||
|
an as C,
|
||||||
|
L as O,
|
||||||
|
as as j,
|
||||||
|
at as _,
|
||||||
|
aK as T,
|
||||||
|
aw as $,
|
||||||
|
P as z,
|
||||||
|
Q as V,
|
||||||
|
w as P,
|
||||||
|
a_ as S,
|
||||||
|
D as I,
|
||||||
|
a8 as R,
|
||||||
|
a7 as A,
|
||||||
|
aG as q,
|
||||||
|
_ as B,
|
||||||
|
a$ as K,
|
||||||
|
aC as F,
|
||||||
|
o as L,
|
||||||
|
m as W,
|
||||||
|
p as D,
|
||||||
|
h as E,
|
||||||
|
f as J,
|
||||||
|
e as U,
|
||||||
|
r as Y,
|
||||||
|
n as Z,
|
||||||
|
t as G,
|
||||||
|
F as H,
|
||||||
|
i as M,
|
||||||
|
R as Q,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
import { u as X } from "./use-id-50eda0ee.js";
|
||||||
|
import { u as N } from "./use-tab-status-b7c46689.js";
|
||||||
|
const [ee, te] = t("dropdown-menu"),
|
||||||
|
ae = {
|
||||||
|
overlay: a,
|
||||||
|
zIndex: l,
|
||||||
|
duration: o(0.2),
|
||||||
|
direction: s("down"),
|
||||||
|
activeColor: String,
|
||||||
|
closeOnClickOutside: a,
|
||||||
|
closeOnClickOverlay: a,
|
||||||
|
swipeThreshold: l,
|
||||||
|
},
|
||||||
|
le = Symbol(ee);
|
||||||
|
var oe = i({
|
||||||
|
name: ee,
|
||||||
|
props: ae,
|
||||||
|
setup(e, { slots: t }) {
|
||||||
|
const a = X(),
|
||||||
|
l = n(),
|
||||||
|
o = n(),
|
||||||
|
s = n(0),
|
||||||
|
{ children: i, linkChildren: y } = r(le),
|
||||||
|
w = d(l),
|
||||||
|
b = u(() => i.some((e) => e.state.showWrapper)),
|
||||||
|
k = u(() => e.swipeThreshold && i.length > +e.swipeThreshold),
|
||||||
|
C = u(() => {
|
||||||
|
if (b.value && c(e.zIndex)) return { zIndex: +e.zIndex + 1 };
|
||||||
|
}),
|
||||||
|
O = () => {
|
||||||
|
i.forEach((e) => {
|
||||||
|
e.toggle(!1);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
j = () => {
|
||||||
|
if (o.value) {
|
||||||
|
const t = g(o);
|
||||||
|
"down" === e.direction
|
||||||
|
? (s.value = t.bottom)
|
||||||
|
: (s.value = m.value - t.top);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
_ = (t, l) => {
|
||||||
|
const { showPopup: o } = t.state,
|
||||||
|
{ disabled: s, titleClass: n } = t;
|
||||||
|
return h(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
id: "".concat(a, "-").concat(l),
|
||||||
|
role: "button",
|
||||||
|
tabindex: s ? void 0 : 0,
|
||||||
|
class: [te("item", { disabled: s, grow: k.value }), { [x]: !s }],
|
||||||
|
onClick: () => {
|
||||||
|
var e;
|
||||||
|
s ||
|
||||||
|
((e = l),
|
||||||
|
i.forEach((t, a) => {
|
||||||
|
a === e
|
||||||
|
? t.toggle()
|
||||||
|
: t.state.showPopup && t.toggle(!1, { immediate: !0 });
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[
|
||||||
|
h(
|
||||||
|
"span",
|
||||||
|
{
|
||||||
|
class: [
|
||||||
|
te("title", {
|
||||||
|
down: o === ("down" === e.direction),
|
||||||
|
active: o,
|
||||||
|
}),
|
||||||
|
n,
|
||||||
|
],
|
||||||
|
style: { color: o ? e.activeColor : "" },
|
||||||
|
},
|
||||||
|
[h("div", { class: "van-ellipsis" }, [t.renderTitle()])]
|
||||||
|
),
|
||||||
|
]
|
||||||
|
);
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
p({ close: O }),
|
||||||
|
y({ id: a, props: e, offset: s, updateOffset: j }),
|
||||||
|
v(l, () => {
|
||||||
|
e.closeOnClickOutside && O();
|
||||||
|
}),
|
||||||
|
f(
|
||||||
|
"scroll",
|
||||||
|
() => {
|
||||||
|
b.value && j();
|
||||||
|
},
|
||||||
|
{ target: w, passive: !0 }
|
||||||
|
),
|
||||||
|
() => {
|
||||||
|
var e;
|
||||||
|
return h("div", { ref: l, class: te() }, [
|
||||||
|
h(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
ref: o,
|
||||||
|
style: C.value,
|
||||||
|
class: te("bar", { opened: b.value, scrollable: k.value }),
|
||||||
|
},
|
||||||
|
[i.map(_)]
|
||||||
|
),
|
||||||
|
null == (e = t.default) ? void 0 : e.call(t),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const [se, ie] = t("dropdown-item");
|
||||||
|
const ne = V(
|
||||||
|
i({
|
||||||
|
name: se,
|
||||||
|
inheritAttrs: !1,
|
||||||
|
props: {
|
||||||
|
title: String,
|
||||||
|
options: k(),
|
||||||
|
disabled: Boolean,
|
||||||
|
teleport: [String, Object],
|
||||||
|
lazyRender: a,
|
||||||
|
modelValue: C,
|
||||||
|
titleClass: C,
|
||||||
|
},
|
||||||
|
emits: [
|
||||||
|
"open",
|
||||||
|
"opened",
|
||||||
|
"close",
|
||||||
|
"closed",
|
||||||
|
"change",
|
||||||
|
"update:modelValue",
|
||||||
|
],
|
||||||
|
setup(t, { emit: a, slots: l, attrs: o }) {
|
||||||
|
const s = y({ showPopup: !1, transition: !0, showWrapper: !1 }),
|
||||||
|
{ parent: i, index: n } = w(le);
|
||||||
|
if (!i) return;
|
||||||
|
const r = (e) => () => a(e),
|
||||||
|
d = r("open"),
|
||||||
|
u = r("close"),
|
||||||
|
c = r("opened"),
|
||||||
|
v = () => {
|
||||||
|
(s.showWrapper = !1), a("closed");
|
||||||
|
},
|
||||||
|
f = (e) => {
|
||||||
|
t.teleport && e.stopPropagation();
|
||||||
|
},
|
||||||
|
g = (l) => {
|
||||||
|
const { activeColor: o } = i.props,
|
||||||
|
n = l.value === t.modelValue;
|
||||||
|
return h(
|
||||||
|
e,
|
||||||
|
{
|
||||||
|
role: "menuitem",
|
||||||
|
key: String(l.value),
|
||||||
|
icon: l.icon,
|
||||||
|
title: l.text,
|
||||||
|
class: ie("option", { active: n }),
|
||||||
|
style: { color: n ? o : "" },
|
||||||
|
tabindex: n ? 0 : -1,
|
||||||
|
clickable: !0,
|
||||||
|
onClick: () => {
|
||||||
|
(s.showPopup = !1),
|
||||||
|
l.value !== t.modelValue &&
|
||||||
|
(a("update:modelValue", l.value), a("change", l.value));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: () => {
|
||||||
|
if (n)
|
||||||
|
return h(
|
||||||
|
z,
|
||||||
|
{ class: ie("icon"), color: o, name: "success" },
|
||||||
|
null
|
||||||
|
);
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
m = () => {
|
||||||
|
const { offset: e } = i,
|
||||||
|
{
|
||||||
|
zIndex: a,
|
||||||
|
overlay: r,
|
||||||
|
duration: p,
|
||||||
|
direction: m,
|
||||||
|
closeOnClickOverlay: x,
|
||||||
|
} = i.props,
|
||||||
|
y = O(a);
|
||||||
|
return (
|
||||||
|
"down" === m
|
||||||
|
? (y.top = "".concat(e.value, "px"))
|
||||||
|
: (y.bottom = "".concat(e.value, "px")),
|
||||||
|
j(
|
||||||
|
h("div", $({ style: y, class: ie([m]), onClick: f }, o), [
|
||||||
|
h(
|
||||||
|
T,
|
||||||
|
{
|
||||||
|
show: s.showPopup,
|
||||||
|
"onUpdate:show": (e) => (s.showPopup = e),
|
||||||
|
role: "menu",
|
||||||
|
class: ie("content"),
|
||||||
|
overlay: r,
|
||||||
|
position: "down" === m ? "top" : "bottom",
|
||||||
|
duration: s.transition ? p : 0,
|
||||||
|
lazyRender: t.lazyRender,
|
||||||
|
overlayStyle: { position: "absolute" },
|
||||||
|
"aria-labelledby": "".concat(i.id, "-").concat(n.value),
|
||||||
|
closeOnClickOverlay: x,
|
||||||
|
onOpen: d,
|
||||||
|
onClose: u,
|
||||||
|
onOpened: c,
|
||||||
|
onClosed: v,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: () => {
|
||||||
|
var e;
|
||||||
|
return [
|
||||||
|
t.options.map(g),
|
||||||
|
null == (e = l.default) ? void 0 : e.call(l),
|
||||||
|
];
|
||||||
|
},
|
||||||
|
}
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
[[_, s.showWrapper]]
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
p({
|
||||||
|
state: s,
|
||||||
|
toggle: (e = !s.showPopup, t = {}) => {
|
||||||
|
e !== s.showPopup &&
|
||||||
|
((s.showPopup = e),
|
||||||
|
(s.transition = !t.immediate),
|
||||||
|
e && (i.updateOffset(), (s.showWrapper = !0)));
|
||||||
|
},
|
||||||
|
renderTitle: () => {
|
||||||
|
if (l.title) return l.title();
|
||||||
|
if (t.title) return t.title;
|
||||||
|
const e = t.options.find((e) => e.value === t.modelValue);
|
||||||
|
return e ? e.text : "";
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
() =>
|
||||||
|
t.teleport
|
||||||
|
? h(b, { to: t.teleport }, { default: () => [m()] })
|
||||||
|
: m()
|
||||||
|
);
|
||||||
|
},
|
||||||
|
})
|
||||||
|
),
|
||||||
|
re = V(oe),
|
||||||
|
[de, ue, ce] = t("list");
|
||||||
|
const pe = V(
|
||||||
|
i({
|
||||||
|
name: de,
|
||||||
|
props: {
|
||||||
|
error: Boolean,
|
||||||
|
offset: o(300),
|
||||||
|
loading: Boolean,
|
||||||
|
disabled: Boolean,
|
||||||
|
finished: Boolean,
|
||||||
|
scroller: Object,
|
||||||
|
errorText: String,
|
||||||
|
direction: s("down"),
|
||||||
|
loadingText: String,
|
||||||
|
finishedText: String,
|
||||||
|
immediateCheck: a,
|
||||||
|
},
|
||||||
|
emits: ["load", "update:error", "update:loading"],
|
||||||
|
setup(e, { emit: t, slots: a }) {
|
||||||
|
const l = n(e.loading),
|
||||||
|
o = n(),
|
||||||
|
s = n(),
|
||||||
|
i = N(),
|
||||||
|
r = d(o),
|
||||||
|
c = u(() => e.scroller || r.value),
|
||||||
|
v = () => {
|
||||||
|
R(() => {
|
||||||
|
if (
|
||||||
|
l.value ||
|
||||||
|
e.finished ||
|
||||||
|
e.disabled ||
|
||||||
|
e.error ||
|
||||||
|
!1 === (null == i ? void 0 : i.value)
|
||||||
|
)
|
||||||
|
return;
|
||||||
|
const { direction: a } = e,
|
||||||
|
n = +e.offset,
|
||||||
|
r = g(c);
|
||||||
|
if (!r.height || A(o)) return;
|
||||||
|
let d = !1;
|
||||||
|
const u = g(s);
|
||||||
|
(d = "up" === a ? r.top - u.top <= n : u.bottom - r.bottom <= n),
|
||||||
|
d && ((l.value = !0), t("update:loading", !0), t("load"));
|
||||||
|
});
|
||||||
|
},
|
||||||
|
m = () => {
|
||||||
|
if (e.finished) {
|
||||||
|
const t = a.finished ? a.finished() : e.finishedText;
|
||||||
|
if (t) return h("div", { class: ue("finished-text") }, [t]);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
x = () => {
|
||||||
|
t("update:error", !1), v();
|
||||||
|
},
|
||||||
|
y = () => {
|
||||||
|
if (e.error) {
|
||||||
|
const t = a.error ? a.error() : e.errorText;
|
||||||
|
if (t)
|
||||||
|
return h(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
role: "button",
|
||||||
|
class: ue("error-text"),
|
||||||
|
tabindex: 0,
|
||||||
|
onClick: x,
|
||||||
|
},
|
||||||
|
[t]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
w = () => {
|
||||||
|
if (l.value && !e.finished && !e.disabled)
|
||||||
|
return h("div", { class: ue("loading") }, [
|
||||||
|
a.loading
|
||||||
|
? a.loading()
|
||||||
|
: h(
|
||||||
|
q,
|
||||||
|
{ class: ue("loading-icon") },
|
||||||
|
{ default: () => [e.loadingText || ce("loading")] }
|
||||||
|
),
|
||||||
|
]);
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
P(() => [e.loading, e.finished, e.error], v),
|
||||||
|
i &&
|
||||||
|
P(i, (e) => {
|
||||||
|
e && v();
|
||||||
|
}),
|
||||||
|
S(() => {
|
||||||
|
l.value = e.loading;
|
||||||
|
}),
|
||||||
|
I(() => {
|
||||||
|
e.immediateCheck && v();
|
||||||
|
}),
|
||||||
|
p({ check: v }),
|
||||||
|
f("scroll", v, { target: c, passive: !0 }),
|
||||||
|
() => {
|
||||||
|
var t;
|
||||||
|
const i = null == (t = a.default) ? void 0 : t.call(a),
|
||||||
|
n = h("div", { ref: s, class: ue("placeholder") }, null);
|
||||||
|
return h(
|
||||||
|
"div",
|
||||||
|
{ ref: o, role: "feed", class: ue(), "aria-busy": l.value },
|
||||||
|
[
|
||||||
|
"down" === e.direction ? i : n,
|
||||||
|
w(),
|
||||||
|
m(),
|
||||||
|
y(),
|
||||||
|
"up" === e.direction ? i : n,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
})
|
||||||
|
);
|
||||||
|
const ve = { class: "px-12 py-7" },
|
||||||
|
fe = { class: "flex items-center flex-wrap justify-between" },
|
||||||
|
he = ["onClick"],
|
||||||
|
ge = { class: "px-12 py-7" },
|
||||||
|
me = { class: "flex items-center flex-wrap justify-between" },
|
||||||
|
xe = ["onClick"],
|
||||||
|
ye = { class: "mt-12 px-12 text-center" },
|
||||||
|
we = { class: "flex py-12 rounded-4 bg-#e9e9e9 text-12" },
|
||||||
|
be = { class: "w-30%" },
|
||||||
|
ke = { class: "w-27%" },
|
||||||
|
Ce = { class: "flex-1" },
|
||||||
|
Oe = { class: "w-30%" },
|
||||||
|
je = { key: 0, class: "w-27% text-main" },
|
||||||
|
_e = { key: 1, class: "w-27%" },
|
||||||
|
Te = { key: 2, class: "w-27% text-#199D2A" },
|
||||||
|
$e = { key: 3, class: "w-27% text-#CD2727" },
|
||||||
|
ze = { class: "flex-1" },
|
||||||
|
Ve = B(
|
||||||
|
{
|
||||||
|
__name: "index",
|
||||||
|
props: {
|
||||||
|
title: { type: String, required: !0 },
|
||||||
|
leftOption: { type: Array, required: !0 },
|
||||||
|
rightOption: { type: Array, required: !0 },
|
||||||
|
leftValue: { required: !0 },
|
||||||
|
rightValue: { required: !0 },
|
||||||
|
valueKey: { type: Array, required: !0 },
|
||||||
|
listTitle: { type: Array, required: !0 },
|
||||||
|
ajaxFun: Function,
|
||||||
|
},
|
||||||
|
emits: ["update:leftValue", "update:rightValue"],
|
||||||
|
setup(e, { emit: t }) {
|
||||||
|
const a = e,
|
||||||
|
{ leftValue: l, rightValue: o } = K(a, t),
|
||||||
|
s = n(a.leftOption[0].text),
|
||||||
|
i = n(null),
|
||||||
|
r = n(a.rightOption[0].text),
|
||||||
|
d = n(null),
|
||||||
|
{
|
||||||
|
list: u,
|
||||||
|
loading: c,
|
||||||
|
finished: p,
|
||||||
|
onLoad: v,
|
||||||
|
form: f,
|
||||||
|
refreshing: g,
|
||||||
|
onRefresh: m,
|
||||||
|
} = (function (e, t) {
|
||||||
|
const a = n(!1),
|
||||||
|
l = n(!1),
|
||||||
|
o = n(!1),
|
||||||
|
s = y({ page: 1, size: 10, ...e });
|
||||||
|
P(
|
||||||
|
() => s.time,
|
||||||
|
(e) => {
|
||||||
|
d();
|
||||||
|
}
|
||||||
|
),
|
||||||
|
P(
|
||||||
|
() => s.status,
|
||||||
|
(e) => {
|
||||||
|
d();
|
||||||
|
}
|
||||||
|
),
|
||||||
|
P(
|
||||||
|
() => s.date,
|
||||||
|
(e) => {
|
||||||
|
d();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
const i = n([]),
|
||||||
|
r = n(),
|
||||||
|
d = () => {
|
||||||
|
(s.page = 1),
|
||||||
|
(i.value = []),
|
||||||
|
(l.value = !1),
|
||||||
|
(o.value = !1),
|
||||||
|
(a.value = !0),
|
||||||
|
u();
|
||||||
|
},
|
||||||
|
u = () => {
|
||||||
|
t &&
|
||||||
|
t(s).then((e) => {
|
||||||
|
var t, o;
|
||||||
|
const n =
|
||||||
|
(null == (t = e.data) ? void 0 : t.list) ||
|
||||||
|
(null == (o = e.data) ? void 0 : o.ranking) ||
|
||||||
|
e.data;
|
||||||
|
(r.value = e.data),
|
||||||
|
1 === e.code &&
|
||||||
|
((i.value =
|
||||||
|
n instanceof Array
|
||||||
|
? i.value.concat(n)
|
||||||
|
: i.value.concat(n.data)),
|
||||||
|
(a.value = !1),
|
||||||
|
n instanceof Array
|
||||||
|
? n.length < s.size
|
||||||
|
? (l.value = !0)
|
||||||
|
: s.page++
|
||||||
|
: "data" in n &&
|
||||||
|
(n.data.length < s.size
|
||||||
|
? (l.value = !0)
|
||||||
|
: s.page++));
|
||||||
|
});
|
||||||
|
};
|
||||||
|
return {
|
||||||
|
refreshing: o,
|
||||||
|
list: i,
|
||||||
|
data: r,
|
||||||
|
loading: a,
|
||||||
|
finished: l,
|
||||||
|
onLoad: u,
|
||||||
|
form: s,
|
||||||
|
Func: t,
|
||||||
|
onRefresh: d,
|
||||||
|
};
|
||||||
|
})({ page: 1, size: 20, status: l, time: o }, a.ajaxFun);
|
||||||
|
return (t, a) => {
|
||||||
|
const n = ne,
|
||||||
|
f = re,
|
||||||
|
g = pe,
|
||||||
|
m = F("normal-layout");
|
||||||
|
return (
|
||||||
|
L(),
|
||||||
|
W(
|
||||||
|
m,
|
||||||
|
{
|
||||||
|
flex: "",
|
||||||
|
title: t.$t(e.title),
|
||||||
|
"bg-color": "#fff",
|
||||||
|
"nav-bg-color": "#fff",
|
||||||
|
"text-color": "#000",
|
||||||
|
backType: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: D(() => [
|
||||||
|
h(
|
||||||
|
f,
|
||||||
|
{ "active-color": "#5B56E8" },
|
||||||
|
{
|
||||||
|
default: D(() => [
|
||||||
|
h(
|
||||||
|
n,
|
||||||
|
{ title: t.$t(E(s)), ref_key: "leftItemRef", ref: i },
|
||||||
|
{
|
||||||
|
default: D(() => [
|
||||||
|
J("div", ve, [
|
||||||
|
J("div", fe, [
|
||||||
|
(L(!0),
|
||||||
|
U(
|
||||||
|
H,
|
||||||
|
null,
|
||||||
|
Y(
|
||||||
|
e.leftOption,
|
||||||
|
(e) => (
|
||||||
|
L(),
|
||||||
|
U(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: Z([
|
||||||
|
"flex items-center justify-center w-46% h-36 bg-#f2f2f2 text-12 rounded-4 my-8",
|
||||||
|
{
|
||||||
|
"left-active": E(l) === e.value,
|
||||||
|
},
|
||||||
|
]),
|
||||||
|
key: e.value,
|
||||||
|
onClick: (t) =>
|
||||||
|
(({ text: e, value: t }) => {
|
||||||
|
(s.value = e),
|
||||||
|
(l.value = t),
|
||||||
|
i.value.toggle();
|
||||||
|
})(e),
|
||||||
|
},
|
||||||
|
G(t.$t(e.text)),
|
||||||
|
11,
|
||||||
|
he
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
|
128
|
||||||
|
)),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["title"]
|
||||||
|
),
|
||||||
|
h(
|
||||||
|
n,
|
||||||
|
{
|
||||||
|
title: t.$t(E(r)),
|
||||||
|
ref_key: "rightItemRef",
|
||||||
|
ref: d,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: D(() => [
|
||||||
|
J("div", ge, [
|
||||||
|
J("div", me, [
|
||||||
|
(L(!0),
|
||||||
|
U(
|
||||||
|
H,
|
||||||
|
null,
|
||||||
|
Y(
|
||||||
|
e.rightOption,
|
||||||
|
(e) => (
|
||||||
|
L(),
|
||||||
|
U(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: Z([
|
||||||
|
"flex items-center justify-center w-46% h-36 bg-#f2f2f2 text-12 rounded-4 my-8",
|
||||||
|
{
|
||||||
|
"left-active": E(o) === e.value,
|
||||||
|
},
|
||||||
|
]),
|
||||||
|
key: e.value,
|
||||||
|
onClick: (t) =>
|
||||||
|
(({ text: e, value: t }) => {
|
||||||
|
(r.value = e),
|
||||||
|
(o.value = t),
|
||||||
|
d.value.toggle();
|
||||||
|
})(e),
|
||||||
|
},
|
||||||
|
G(t.$t(e.text)),
|
||||||
|
11,
|
||||||
|
xe
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
|
128
|
||||||
|
)),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["title"]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
}
|
||||||
|
),
|
||||||
|
J("div", ye, [
|
||||||
|
J("div", we, [
|
||||||
|
J("div", be, G(t.$t(e.listTitle[0])), 1),
|
||||||
|
J("div", ke, G(t.$t(e.listTitle[1])), 1),
|
||||||
|
J("div", Ce, G(t.$t(e.listTitle[2])), 1),
|
||||||
|
]),
|
||||||
|
h(
|
||||||
|
g,
|
||||||
|
{
|
||||||
|
loading: E(c),
|
||||||
|
"onUpdate:loading":
|
||||||
|
a[0] || (a[0] = (e) => (Q(c) ? (c.value = e) : null)),
|
||||||
|
finished: E(p),
|
||||||
|
"finished-text": t.$t("没有更多了"),
|
||||||
|
"loading-text": t.$t("加载中..."),
|
||||||
|
onLoad: E(v),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: D(() => [
|
||||||
|
(L(!0),
|
||||||
|
U(
|
||||||
|
H,
|
||||||
|
null,
|
||||||
|
Y(
|
||||||
|
E(u),
|
||||||
|
(a, l) => (
|
||||||
|
L(),
|
||||||
|
U(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"flex py-12 text-12 van-hairline--bottom",
|
||||||
|
key: a.id,
|
||||||
|
},
|
||||||
|
[
|
||||||
|
J("div", Oe, G(a[e.valueKey[0]]), 1),
|
||||||
|
a.order_no
|
||||||
|
? M("", !0)
|
||||||
|
: (L(),
|
||||||
|
U("div", je, G(a[e.valueKey[1]]), 1)),
|
||||||
|
(1 != a.status && 0 != a.status) ||
|
||||||
|
!a.order_no
|
||||||
|
? M("", !0)
|
||||||
|
: (L(),
|
||||||
|
U("div", _e, G(t.$t("出款中")), 1)),
|
||||||
|
2 == a.status && a.order_no
|
||||||
|
? (L(), U("div", Te, G(t.$t("成功")), 1))
|
||||||
|
: M("", !0),
|
||||||
|
3 == a.status && a.order_no
|
||||||
|
? (L(), U("div", $e, G(t.$t("失败")), 1))
|
||||||
|
: M("", !0),
|
||||||
|
J("div", ze, G(a[e.valueKey[2]]), 1),
|
||||||
|
]
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
|
128
|
||||||
|
)),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
[
|
||||||
|
"loading",
|
||||||
|
"finished",
|
||||||
|
"finished-text",
|
||||||
|
"loading-text",
|
||||||
|
"onLoad",
|
||||||
|
]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["title"]
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-303919d0"]]
|
||||||
|
);
|
||||||
|
export { Ve as R };
|
|
@ -0,0 +1,204 @@
|
||||||
|
import {
|
||||||
|
an as e,
|
||||||
|
J as a,
|
||||||
|
I as l,
|
||||||
|
a5 as o,
|
||||||
|
ac as n,
|
||||||
|
K as i,
|
||||||
|
j as t,
|
||||||
|
c as d,
|
||||||
|
v as s,
|
||||||
|
P as r,
|
||||||
|
ag as c,
|
||||||
|
H as u,
|
||||||
|
ao as b,
|
||||||
|
w as p,
|
||||||
|
ad as m,
|
||||||
|
aQ as h,
|
||||||
|
ax as v,
|
||||||
|
aw as g,
|
||||||
|
Q as k,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
const f = {
|
||||||
|
name: e,
|
||||||
|
disabled: Boolean,
|
||||||
|
iconSize: a,
|
||||||
|
modelValue: e,
|
||||||
|
checkedColor: String,
|
||||||
|
labelPosition: String,
|
||||||
|
labelDisabled: Boolean,
|
||||||
|
};
|
||||||
|
var x = l({
|
||||||
|
props: o({}, f, {
|
||||||
|
bem: n(Function),
|
||||||
|
role: String,
|
||||||
|
shape: String,
|
||||||
|
parent: Object,
|
||||||
|
checked: Boolean,
|
||||||
|
bindGroup: i,
|
||||||
|
indeterminate: { type: Boolean, default: null },
|
||||||
|
}),
|
||||||
|
emits: ["click", "toggle"],
|
||||||
|
setup(e, { emit: a, slots: l }) {
|
||||||
|
const o = t(),
|
||||||
|
n = (a) => {
|
||||||
|
if (e.parent && e.bindGroup) return e.parent.props[a];
|
||||||
|
},
|
||||||
|
i = d(() => {
|
||||||
|
if (e.parent && e.bindGroup) {
|
||||||
|
const a = n("disabled") || e.disabled;
|
||||||
|
if ("checkbox" === e.role) {
|
||||||
|
const l = n("modelValue").length,
|
||||||
|
o = n("max");
|
||||||
|
return a || (o && l >= +o && !e.checked);
|
||||||
|
}
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
return e.disabled;
|
||||||
|
}),
|
||||||
|
u = d(() => n("direction")),
|
||||||
|
b = d(() => {
|
||||||
|
const a = e.checkedColor || n("checkedColor");
|
||||||
|
if (a && e.checked && !i.value)
|
||||||
|
return { borderColor: a, backgroundColor: a };
|
||||||
|
}),
|
||||||
|
p = d(() => e.shape || n("shape") || "round"),
|
||||||
|
m = (l) => {
|
||||||
|
const { target: n } = l,
|
||||||
|
t = o.value,
|
||||||
|
d = t === n || (null == t ? void 0 : t.contains(n));
|
||||||
|
i.value || (!d && e.labelDisabled) || a("toggle"), a("click", l);
|
||||||
|
},
|
||||||
|
h = () => {
|
||||||
|
var a, t;
|
||||||
|
const { bem: d, checked: u, indeterminate: m } = e,
|
||||||
|
h = e.iconSize || n("iconSize");
|
||||||
|
return s(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
ref: o,
|
||||||
|
class: d("icon", [
|
||||||
|
p.value,
|
||||||
|
{ disabled: i.value, checked: u, indeterminate: m },
|
||||||
|
]),
|
||||||
|
style:
|
||||||
|
"dot" !== p.value
|
||||||
|
? { fontSize: c(h) }
|
||||||
|
: {
|
||||||
|
width: c(h),
|
||||||
|
height: c(h),
|
||||||
|
borderColor: null == (a = b.value) ? void 0 : a.borderColor,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[
|
||||||
|
l.icon
|
||||||
|
? l.icon({ checked: u, disabled: i.value })
|
||||||
|
: "dot" !== p.value
|
||||||
|
? s(r, { name: m ? "minus" : "success", style: b.value }, null)
|
||||||
|
: s(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: d("icon--dot__icon"),
|
||||||
|
style: {
|
||||||
|
backgroundColor:
|
||||||
|
null == (t = b.value) ? void 0 : t.backgroundColor,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
null
|
||||||
|
),
|
||||||
|
]
|
||||||
|
);
|
||||||
|
},
|
||||||
|
v = () => {
|
||||||
|
if (l.default)
|
||||||
|
return s(
|
||||||
|
"span",
|
||||||
|
{ class: e.bem("label", [e.labelPosition, { disabled: i.value }]) },
|
||||||
|
[l.default()]
|
||||||
|
);
|
||||||
|
};
|
||||||
|
return () => {
|
||||||
|
const a = "left" === e.labelPosition ? [v(), h()] : [h(), v()];
|
||||||
|
return s(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
role: e.role,
|
||||||
|
class: e.bem([
|
||||||
|
{ disabled: i.value, "label-disabled": e.labelDisabled },
|
||||||
|
u.value,
|
||||||
|
]),
|
||||||
|
tabindex: i.value ? void 0 : 0,
|
||||||
|
"aria-checked": e.checked,
|
||||||
|
onClick: m,
|
||||||
|
},
|
||||||
|
[a]
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const [C, V] = u("checkbox-group"),
|
||||||
|
S = Symbol(C),
|
||||||
|
[G, y] = u("checkbox");
|
||||||
|
const B = k(
|
||||||
|
l({
|
||||||
|
name: G,
|
||||||
|
props: o({}, f, {
|
||||||
|
shape: String,
|
||||||
|
bindGroup: i,
|
||||||
|
indeterminate: { type: Boolean, default: null },
|
||||||
|
}),
|
||||||
|
emits: ["change", "update:modelValue"],
|
||||||
|
setup(e, { emit: a, slots: l }) {
|
||||||
|
const { parent: o } = b(S),
|
||||||
|
n = d(() =>
|
||||||
|
o && e.bindGroup
|
||||||
|
? -1 !== o.props.modelValue.indexOf(e.name)
|
||||||
|
: !!e.modelValue
|
||||||
|
),
|
||||||
|
i = (l = !n.value) => {
|
||||||
|
o && e.bindGroup
|
||||||
|
? ((a) => {
|
||||||
|
const { name: l } = e,
|
||||||
|
{ max: n, modelValue: i } = o.props,
|
||||||
|
t = i.slice();
|
||||||
|
if (a)
|
||||||
|
(n && t.length >= +n) ||
|
||||||
|
t.includes(l) ||
|
||||||
|
(t.push(l), e.bindGroup && o.updateValue(t));
|
||||||
|
else {
|
||||||
|
const a = t.indexOf(l);
|
||||||
|
-1 !== a && (t.splice(a, 1), e.bindGroup && o.updateValue(t));
|
||||||
|
}
|
||||||
|
})(l)
|
||||||
|
: a("update:modelValue", l),
|
||||||
|
null !== e.indeterminate && a("change", l);
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
p(
|
||||||
|
() => e.modelValue,
|
||||||
|
(l) => {
|
||||||
|
null === e.indeterminate && a("change", l);
|
||||||
|
}
|
||||||
|
),
|
||||||
|
m({ toggle: i, props: e, checked: n }),
|
||||||
|
h(() => e.modelValue),
|
||||||
|
() =>
|
||||||
|
s(
|
||||||
|
x,
|
||||||
|
g(
|
||||||
|
{
|
||||||
|
bem: y,
|
||||||
|
role: "checkbox",
|
||||||
|
parent: o,
|
||||||
|
checked: n.value,
|
||||||
|
onToggle: i,
|
||||||
|
},
|
||||||
|
e
|
||||||
|
),
|
||||||
|
v(l, ["default", "icon"])
|
||||||
|
)
|
||||||
|
);
|
||||||
|
},
|
||||||
|
})
|
||||||
|
);
|
||||||
|
export { B as C };
|
|
@ -0,0 +1,25 @@
|
||||||
|
import { C as o } from "./clipboard-c314aeef.js";
|
||||||
|
const e = (e) => {
|
||||||
|
const d = void 0 === (null == e ? void 0 : e.appendToBody) || e.appendToBody;
|
||||||
|
return {
|
||||||
|
toClipboard: (e, n) =>
|
||||||
|
new Promise((t, c) => {
|
||||||
|
const r = document.createElement("button"),
|
||||||
|
i = new o(r, {
|
||||||
|
text: () => e,
|
||||||
|
action: () => "copy",
|
||||||
|
container: void 0 !== n ? n : document.body,
|
||||||
|
});
|
||||||
|
i.on("success", (o) => {
|
||||||
|
i.destroy(), t(o);
|
||||||
|
}),
|
||||||
|
i.on("error", (o) => {
|
||||||
|
i.destroy(), c(o);
|
||||||
|
}),
|
||||||
|
d && document.body.appendChild(r),
|
||||||
|
r.click(),
|
||||||
|
d && document.body.removeChild(r);
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
};
|
||||||
|
export { e as u };
|
|
@ -0,0 +1,409 @@
|
||||||
|
/* empty css */ import { C as A } from "./index-965d54ae.js";
|
||||||
|
import { C as t } from "./index-325f2a5d.js";
|
||||||
|
import {
|
||||||
|
_ as s,
|
||||||
|
j as e,
|
||||||
|
k as a,
|
||||||
|
a as i,
|
||||||
|
u as l,
|
||||||
|
o as n,
|
||||||
|
e as c,
|
||||||
|
f as d,
|
||||||
|
h as r,
|
||||||
|
t as o,
|
||||||
|
i as m,
|
||||||
|
G as g,
|
||||||
|
A as v,
|
||||||
|
B as p,
|
||||||
|
b as u,
|
||||||
|
c as f,
|
||||||
|
g as w,
|
||||||
|
v as x,
|
||||||
|
y as B,
|
||||||
|
p as C,
|
||||||
|
F as E,
|
||||||
|
r as h,
|
||||||
|
m as I,
|
||||||
|
kk as J,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
import { u as R } from "./index-dec55e5c.js";
|
||||||
|
/* empty css */ import { u as U } from "./useCustomerService-a54309ad.js";
|
||||||
|
import { s as b } from "./index-0a638fc2.js";
|
||||||
|
import "./use-route-126c4f06.js";
|
||||||
|
import "./clipboard-c314aeef.js";
|
||||||
|
import "./index-97676c1f.js";
|
||||||
|
import "./use-placeholder-8391a3e3.js";
|
||||||
|
const Y = (A) => (v("data-v-c7c47025"), (A = A()), p(), A),
|
||||||
|
y = { class: "bg-#5B56E8 items-center justify-between px-15 py-20" },
|
||||||
|
S = { class: "textright" },
|
||||||
|
D = [
|
||||||
|
Y(() =>
|
||||||
|
d(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
class: "w-25",
|
||||||
|
src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAE/SURBVHgBtVULkcIwFHy9OQF1QCTUwdXBHQ7OATgAFAAKGBSAg4KC4gBQACgo+2AD4TNpQmFndh5pX3aSzYaKfAiJ72VVVSlKBv6CKR/vwWWSJHPf3C+PaAdlDfbArYqRB7CD92vwX2KACROwBHNPj6H4UAJFh+BMAqG9teLOKoyEC6fgzrc7a0FXIoE5fXDkPrs/PAOuJB6akJ864VasFSi5XOP42ECvCtZaS9DTY++MNX3WNLE+oWZ6iAHCetAZf48e0qRBd4VsOgKFW864tJfGepyDA2mOsfAQrbDefyPNoR4fLiMNN803HEdbcX+5TivGP9VCzlYUfPHHXYSgzTQU4BRam2cr0BtUMXJZnSJXWXBOKe8GUzWXd8Lx9maH3zECco6lhY41Wio4gLerl4QdIQv9qkzBNkRDD7o5jkDUKeYfihrkAAAAAElFTkSuQmCC",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
],
|
||||||
|
V = { key: 0, class: "py-3 px-5 rounded-5 text-13" },
|
||||||
|
Q = Y(() =>
|
||||||
|
d(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
class: "w-25",
|
||||||
|
src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAD8SURBVHgB1ZThDYIwEIWvxv8yQjfQDXQE3YARHAEnUCfQDdAJiBMIE+gG4AT1XXKSBoNFTn/wki/Awb1er7REQ5PxH5xzES5LMAV8bwP5FbiDApyMMdWbMUxnuGQgB2cv6ZNeg88B569gnvuVWnADC+opLgyUMus6GIMDKQWPlL34fiQxnkZBel3Eqzbm8ivSiz0mvvHPFTRGz7aysD7B9RhTWBuwb8SCbQsay0//df//3mOuKCK9LHjUT7zjZFEs9VTr7kUgkRdx160tZryV15KbtH3IHx2B82I8UCbnQFNsdgW7TsVIkhXDTFqlXwMxLlunpjBOneIIHaaegk3iuffH6oAAAAAASUVORK5CYII=",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
K = { class: "flex items-center" },
|
||||||
|
X = Y(() =>
|
||||||
|
d(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
class: "w-70 rounded-full object-cover",
|
||||||
|
src: "/png/name-6917774b.png",
|
||||||
|
alt: "",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
T = { class: "flex flex-col text-white ml-20" },
|
||||||
|
j = { class: "text-20 font-600" },
|
||||||
|
k = { class: "flex items-center text-14 mt-8 text-#f3f3f3" },
|
||||||
|
F = [
|
||||||
|
Y(() =>
|
||||||
|
d(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
class: "w-16",
|
||||||
|
src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADDSURBVHgBlVLREYIwFCvl/Rc2cAQdgQ3YQEZhBN3AEdyAEXQEN6AdoK15d+Bp+w5L7uBxDSlJaKUEzPN81Fr3EhdCuLVt+9KC6ADRhMdGEtZ1/eCNq5Rwzo08jTGjJAR/wbAkWLmrbVi+0WIvy4Sde/WVKVXr0kzpOkE0YF43MjWLm+fPF9V/WGmRVCHYLhGdY4yD9/5ULGSgKIer47KKhXiZM35yrhkbtRPEPxyVT2gvKwFtmjVTxrEFiWBwJnCddADeOctlPakJJaAAAAAASUVORK5CYII=",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
],
|
||||||
|
L = s(
|
||||||
|
{
|
||||||
|
__name: "index",
|
||||||
|
setup(A) {
|
||||||
|
const t = e("");
|
||||||
|
a({ type: 1 }).then((A) => {
|
||||||
|
for (let s in A.data.data) t.value = parseInt(s) + 1;
|
||||||
|
});
|
||||||
|
const { toClipboard: s } = R(),
|
||||||
|
{ t: v } = i(),
|
||||||
|
p = l();
|
||||||
|
return (A, e) => (
|
||||||
|
n(),
|
||||||
|
c("div", y, [
|
||||||
|
d("div", S, [
|
||||||
|
d(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "disblocks",
|
||||||
|
onClick: e[0] || (e[0] = (t) => A.$router.push("/service")),
|
||||||
|
},
|
||||||
|
D
|
||||||
|
),
|
||||||
|
d(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "disblocks",
|
||||||
|
onClick: e[1] || (e[1] = (t) => A.$router.push("/message")),
|
||||||
|
},
|
||||||
|
[
|
||||||
|
A.$t(r(t)) > 0
|
||||||
|
? (n(), c("span", V, o(A.$t(r(t))), 1))
|
||||||
|
: m("", !0),
|
||||||
|
Q,
|
||||||
|
]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
d("div", K, [
|
||||||
|
X,
|
||||||
|
d("div", T, [
|
||||||
|
d("span", j, o(r(p).userInfo.username), 1),
|
||||||
|
d("div", k, [
|
||||||
|
d(
|
||||||
|
"div",
|
||||||
|
null,
|
||||||
|
o(A.$t("推荐码")) + ": " + o(r(p).userInfo.invite_code),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
d(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "rounded-10 py-4 px-10 text-center w-auto",
|
||||||
|
onClick:
|
||||||
|
e[2] ||
|
||||||
|
(e[2] = (A) =>
|
||||||
|
(async (A) => {
|
||||||
|
try {
|
||||||
|
await s(A), g(v("链接复制成功"));
|
||||||
|
} catch (t) {}
|
||||||
|
})(r(p).userInfo.invite_code)),
|
||||||
|
},
|
||||||
|
F
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
])
|
||||||
|
);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-c7c47025"]]
|
||||||
|
),
|
||||||
|
N = { class: "relative min-h-full bg-#f2f2f2 pb-20" },
|
||||||
|
O = { class: "mt-12" },
|
||||||
|
H = { class: "px-14" },
|
||||||
|
G = { class: "bg-white rounded-8 p-20 mb-10" },
|
||||||
|
W = { class: "text-14" },
|
||||||
|
_ = ((A) => (v("data-v-4fca9848"), (A = A()), p(), A))(() =>
|
||||||
|
d(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
class: "w-15",
|
||||||
|
src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAANCAYAAAB2HjRBAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFlSURBVHgBdVLLbcJAEGVNBJwIJUAFoYOQDhJxASwLXIFDBcYVABUYH2wf4w6ggzgdmA58tvzJe9IuWjnOSqvdnZn3ZubNil7H8n1/OhgMFrhOm6bJsVPLsm7tOKE/wjCcCyGOCJ7jmWDf8Z7gfJFEnmmalz/gKIq2OA7Y581mc2pnieOY4KthGMlqtdo/wAC+4zgiy9t6vc708nHktm3n8j0ZDoc+CDISCAbAcAXrB0pKFYg2yUGCHaoJNIJvtmBQGGS8KSDXaDRy4QwAmME3YzsE0ccqqqqyYd8aZK7r+q73B+BCCtZTbYzH42flL8uSbUyeAEz7/b7TAgdgdqG+xwy0LZfLRwJU+wp7amB+iVTTVU60cADBDwJ8VkYhdRHx/sTVE/oYYLygTK/3z5L/4EvNW7TnSPHQU6D/KIoFER20yIx79VFEB/sOBA6IWF4uNaDS56IoTmrmnWA9GxXlHYCsK+YXnOa63gAFuDMAAAAASUVORK5CYII=",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
J = { class: "mb-12 mt-12" },
|
||||||
|
z = { class: "text-36 font-600" },
|
||||||
|
M = { class: "text-14" },
|
||||||
|
P = { class: "pt-5 text-#666" },
|
||||||
|
Z = { class: "text-#666 text-13 flex" },
|
||||||
|
q = { class: "w-35% text-center" },
|
||||||
|
$ = { class: "w-65%" },
|
||||||
|
AA = { class: "mt-5" },
|
||||||
|
tA = { class: "mt-5" },
|
||||||
|
sA = { class: "mt-5" },
|
||||||
|
eA = { class: "mt-5" },
|
||||||
|
aA = { class: "mt-5" },
|
||||||
|
iA = { class: "bg-white rounded-8 p-20 mb-10" },
|
||||||
|
lA = { class: "flex text-center" },
|
||||||
|
nA = { class: "flex-1" },
|
||||||
|
cA = { class: "mb-12 text-22 font-600 text-main" },
|
||||||
|
dA = { class: "flex-1" },
|
||||||
|
rA = { class: "mb-12 text-22 font-600 text-main" },
|
||||||
|
oA = { class: "bg-white rounded-8 overflow-hidden" },
|
||||||
|
mA = { class: "my_coin" },
|
||||||
|
gA = { class: "flex items-center py-5" },
|
||||||
|
vA = ["src"],
|
||||||
|
pA = { class: "ml-10" },
|
||||||
|
uA = s(
|
||||||
|
{
|
||||||
|
__name: "index",
|
||||||
|
setup(s) {
|
||||||
|
U();
|
||||||
|
const e = u(),
|
||||||
|
a = l(),
|
||||||
|
{ t: m } = i(),
|
||||||
|
g = f(() => [
|
||||||
|
{
|
||||||
|
title: m("账号提现"),
|
||||||
|
image: w("withdraw.png"),
|
||||||
|
path: "/withdraw",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: m("收益明细"),
|
||||||
|
image: w("revenueDetail.png"),
|
||||||
|
path: "/revenueDetail",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: m("提现订单"),
|
||||||
|
image: w("withdrawOrder.png"),
|
||||||
|
path: "/withdrawOrder",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: m("修改密码"),
|
||||||
|
image: w("setpassword.png"),
|
||||||
|
path: "/change/password",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: m("语言设置"),
|
||||||
|
image: w("setlang.png"),
|
||||||
|
path: "/setlanguage",
|
||||||
|
},
|
||||||
|
]),
|
||||||
|
v = () => {
|
||||||
|
b({
|
||||||
|
title: m("提示"),
|
||||||
|
message: m("确定要退出登录吗?"),
|
||||||
|
confirmButtonText: m("确认"),
|
||||||
|
cancelButtonText: m("取消"),
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
a.clearUserInfo(), e.replace("/login"), a.changeIsReLogin(1);
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
};
|
||||||
|
return (s, i) => {
|
||||||
|
const l = t,
|
||||||
|
m = A;
|
||||||
|
return (
|
||||||
|
n(),
|
||||||
|
c("div", N, [
|
||||||
|
x(r(L), { class: "relative z-2" }),
|
||||||
|
d("div", O, [
|
||||||
|
d("div", H, [
|
||||||
|
d("div", G, [
|
||||||
|
d("div", null, [
|
||||||
|
d("div", W, [B(o(s.$t("账户余额")) + " ", 1), _]),
|
||||||
|
d("div", J, [
|
||||||
|
d("div", z, [
|
||||||
|
B(o(r(a).userInfo.money) + " ", 1),
|
||||||
|
d("span", M, o(s.$t("积分")), 1),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
d("div", P, [
|
||||||
|
d("div", Z, [
|
||||||
|
d("div", q, o(s.$t("今日汇率")), 1),
|
||||||
|
d("div", $, [
|
||||||
|
d(
|
||||||
|
"div",
|
||||||
|
AA,
|
||||||
|
"100 " +
|
||||||
|
o(s.$t("积分")) +
|
||||||
|
" = " +
|
||||||
|
o(r(a).config.trx_rate) +
|
||||||
|
" USDT",
|
||||||
|
1
|
||||||
|
),
|
||||||
|
d(
|
||||||
|
"div",
|
||||||
|
tA,
|
||||||
|
"100 " +
|
||||||
|
o(s.$t("积分")) +
|
||||||
|
" = " +
|
||||||
|
o(r(a).config.nrly_rate) +
|
||||||
|
" NGN",
|
||||||
|
1
|
||||||
|
),
|
||||||
|
d(
|
||||||
|
"div",
|
||||||
|
sA,
|
||||||
|
"100 " +
|
||||||
|
o(s.$t("积分")) +
|
||||||
|
" = " +
|
||||||
|
o(r(a).config.trx_rate1) +
|
||||||
|
" TRX",
|
||||||
|
1
|
||||||
|
),
|
||||||
|
d(
|
||||||
|
"div",
|
||||||
|
eA,
|
||||||
|
"100 " +
|
||||||
|
o(s.$t("积分")) +
|
||||||
|
" = " +
|
||||||
|
o(r(a).config.inr_rate) +
|
||||||
|
" INR",
|
||||||
|
1
|
||||||
|
),
|
||||||
|
d(
|
||||||
|
"div",
|
||||||
|
aA,
|
||||||
|
"100 " +
|
||||||
|
o(s.$t("积分")) +
|
||||||
|
" = " +
|
||||||
|
o(r(a).config.brl_rate) +
|
||||||
|
" BRL",
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
d("div", iA, [
|
||||||
|
d("div", lA, [
|
||||||
|
d("div", nA, [
|
||||||
|
d("div", cA, o(r(a).userInfo.today_task_income), 1),
|
||||||
|
d("div", null, o(s.$t("今日任务")), 1),
|
||||||
|
]),
|
||||||
|
d("div", dA, [
|
||||||
|
d("div", rA, o(r(a).userInfo.today_team_income), 1),
|
||||||
|
d("div", null, o(s.$t("今日推广")), 1),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
d("div", oA, [
|
||||||
|
d("div", mA, [
|
||||||
|
x(m, null, {
|
||||||
|
default: C(() => [
|
||||||
|
(n(!0),
|
||||||
|
c(
|
||||||
|
E,
|
||||||
|
null,
|
||||||
|
h(
|
||||||
|
r(g),
|
||||||
|
(A, t) => (
|
||||||
|
n(),
|
||||||
|
I(
|
||||||
|
l,
|
||||||
|
{
|
||||||
|
key: t,
|
||||||
|
"is-link": "",
|
||||||
|
onClick: (t) => r(e).push(A.path),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: C(() => [
|
||||||
|
d("div", gA, [
|
||||||
|
d(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
class: "w-24",
|
||||||
|
src: A.image,
|
||||||
|
alt: "",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
vA
|
||||||
|
),
|
||||||
|
d("div", pA, o(A.title), 1),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
_: 2,
|
||||||
|
},
|
||||||
|
1032,
|
||||||
|
["onClick"]
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
|
128
|
||||||
|
)),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
}),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
d(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"mb-70 w-84% h-40 rounded-full text-16 flex justify-center items-center mt-20 mx-auto text-#666",
|
||||||
|
onClick: v,
|
||||||
|
},
|
||||||
|
o(s.$t("退出登录")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
])
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-4fca9848"]]
|
||||||
|
);
|
||||||
|
export { uA as default };
|
|
@ -0,0 +1,53 @@
|
||||||
|
import { R as e } from "./index-cab50064.js";
|
||||||
|
import { j as t, m as a, h as l, R as u, o as i } from "./index-476be0bb.js";
|
||||||
|
import { e as s } from "./api.mine-40f950d7.js";
|
||||||
|
/* empty css */ /* empty css */ import "./index-325f2a5d.js";
|
||||||
|
import "./use-route-126c4f06.js";
|
||||||
|
/* empty css */ /* empty css */ import "./use-id-50eda0ee.js";
|
||||||
|
import "./use-tab-status-b7c46689.js";
|
||||||
|
const o = {
|
||||||
|
__name: "index",
|
||||||
|
setup(o) {
|
||||||
|
const n = t(0),
|
||||||
|
r = t(0),
|
||||||
|
x = [
|
||||||
|
{ text: "全部类型", value: 0 },
|
||||||
|
{ text: "提现扣款", value: 1 },
|
||||||
|
{ text: "人工调整", value: 2 },
|
||||||
|
{ text: "提现返还", value: 3 },
|
||||||
|
{ text: "注册赠送", value: 4 },
|
||||||
|
{ text: "加粉赏金", value: 5 },
|
||||||
|
{ text: "任务佣金", value: 6 },
|
||||||
|
],
|
||||||
|
m = [
|
||||||
|
{ text: "全部时间", value: 0 },
|
||||||
|
{ text: "今天", value: 1 },
|
||||||
|
{ text: "昨天", value: 2 },
|
||||||
|
{ text: "近七天", value: 3 },
|
||||||
|
];
|
||||||
|
return (t, o) => (
|
||||||
|
i(),
|
||||||
|
a(
|
||||||
|
e,
|
||||||
|
{
|
||||||
|
title: "收益明细",
|
||||||
|
"left-option": x,
|
||||||
|
"right-option": m,
|
||||||
|
"list-title": ["收益类型", "收益金额", "时间"],
|
||||||
|
"value-key": ["memo", "money", "createtime2"],
|
||||||
|
"left-value": l(n),
|
||||||
|
"onUpdate:leftValue":
|
||||||
|
o[0] || (o[0] = (e) => (u(n) ? (n.value = e) : null)),
|
||||||
|
"right-value": l(r),
|
||||||
|
"onUpdate:rightValue":
|
||||||
|
o[1] || (o[1] = (e) => (u(r) ? (r.value = e) : null)),
|
||||||
|
ajaxFun: l(s),
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["left-value", "right-value", "ajaxFun"]
|
||||||
|
)
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
export { o as default };
|
|
@ -0,0 +1,50 @@
|
||||||
|
import { R as t } from "./index-cab50064.js";
|
||||||
|
import { j as e, m as a, h as i, R as u, o as l } from "./index-476be0bb.js";
|
||||||
|
import { f as s } from "./api.mine-40f950d7.js";
|
||||||
|
/* empty css */ /* empty css */ import "./index-325f2a5d.js";
|
||||||
|
import "./use-route-126c4f06.js";
|
||||||
|
/* empty css */ /* empty css */ import "./use-id-50eda0ee.js";
|
||||||
|
import "./use-tab-status-b7c46689.js";
|
||||||
|
const o = {
|
||||||
|
__name: "index",
|
||||||
|
setup(o) {
|
||||||
|
const n = e(0),
|
||||||
|
r = e(0),
|
||||||
|
x = [
|
||||||
|
{ text: "全部类型", value: 0 },
|
||||||
|
{ text: "申请中", value: 1 },
|
||||||
|
{ text: "已到账", value: 2 },
|
||||||
|
{ text: "已驳回", value: 3 },
|
||||||
|
],
|
||||||
|
m = [
|
||||||
|
{ text: "全部时间", value: 0 },
|
||||||
|
{ text: "今天", value: 1 },
|
||||||
|
{ text: "昨天", value: 2 },
|
||||||
|
{ text: "近七天", value: 3 },
|
||||||
|
];
|
||||||
|
return (e, o) => (
|
||||||
|
l(),
|
||||||
|
a(
|
||||||
|
t,
|
||||||
|
{
|
||||||
|
title: "提现订单",
|
||||||
|
"left-option": x,
|
||||||
|
"right-option": m,
|
||||||
|
"list-title": ["提现金额", "状态", "时间"],
|
||||||
|
"value-key": ["amount", "status_text", "createtime2"],
|
||||||
|
"left-value": i(n),
|
||||||
|
"onUpdate:leftValue":
|
||||||
|
o[0] || (o[0] = (t) => (u(n) ? (n.value = t) : null)),
|
||||||
|
"right-value": i(r),
|
||||||
|
"onUpdate:rightValue":
|
||||||
|
o[1] || (o[1] = (t) => (u(r) ? (r.value = t) : null)),
|
||||||
|
ajaxFun: i(s),
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["left-value", "right-value", "ajaxFun"]
|
||||||
|
)
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
export { o as default };
|
|
@ -0,0 +1,842 @@
|
||||||
|
/* empty css */ /* empty css */ /* empty css */ /* empty css */ /* empty css */ import { C as e } from "./index-d1f6d69a.js";
|
||||||
|
import "./index-325f2a5d.js";
|
||||||
|
import { F as t } from "./index-8da36b2b.js";
|
||||||
|
import {
|
||||||
|
_ as a,
|
||||||
|
a as s,
|
||||||
|
j as l,
|
||||||
|
o,
|
||||||
|
e as n,
|
||||||
|
f as i,
|
||||||
|
t as r,
|
||||||
|
v as d,
|
||||||
|
p as c,
|
||||||
|
y as u,
|
||||||
|
F as m,
|
||||||
|
r as p,
|
||||||
|
i as v,
|
||||||
|
q as A,
|
||||||
|
h as x,
|
||||||
|
G as f,
|
||||||
|
az as h,
|
||||||
|
b3 as g,
|
||||||
|
aW as b,
|
||||||
|
A as y,
|
||||||
|
B as w,
|
||||||
|
u as k,
|
||||||
|
b as j,
|
||||||
|
d as B,
|
||||||
|
b4 as C,
|
||||||
|
w as $,
|
||||||
|
b5 as E,
|
||||||
|
c as S,
|
||||||
|
aC as I,
|
||||||
|
m as T,
|
||||||
|
n as U,
|
||||||
|
as as V,
|
||||||
|
at as Q,
|
||||||
|
R as Y,
|
||||||
|
b6 as N,
|
||||||
|
P as L,
|
||||||
|
b7 as W,
|
||||||
|
b8 as _,
|
||||||
|
b9 as R,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
import { _ as z } from "./IMG_7054-e9087211.js";
|
||||||
|
import { _ as G } from "./wash-7c0edfd9.js";
|
||||||
|
import { C as J } from "./index-965d54ae.js";
|
||||||
|
import { a as F, D as M } from "./index-0a638fc2.js";
|
||||||
|
import { B as D } from "./index-97676c1f.js";
|
||||||
|
import { u as O } from "./index-dec55e5c.js";
|
||||||
|
import { c as X } from "./countryCode-16bf7887.js";
|
||||||
|
import "./use-route-126c4f06.js";
|
||||||
|
import "./use-id-50eda0ee.js";
|
||||||
|
import "./use-placeholder-8391a3e3.js";
|
||||||
|
import "./clipboard-c314aeef.js";
|
||||||
|
const q = {
|
||||||
|
class: "table-container rounded-8 bg-white overflow-hidden min-h-130",
|
||||||
|
},
|
||||||
|
H = { class: "text-12" },
|
||||||
|
Z = { class: "frozen" },
|
||||||
|
K = { class: "pl-3" },
|
||||||
|
P = { class: "frozen" },
|
||||||
|
ee = { class: "frozen" },
|
||||||
|
te = ((e) => (y("data-v-df311e97"), (e = e()), w(), e))(() =>
|
||||||
|
i("td", null, "ongoing", -1)
|
||||||
|
),
|
||||||
|
ae = { key: 0, class: "text-#199D2A" },
|
||||||
|
se = { key: 1, class: "text-#E23A30" },
|
||||||
|
le = { class: "frozen flex items-center text-white" },
|
||||||
|
oe = ["onClick"],
|
||||||
|
ne = { key: 0, class: "text-center pt-20 text-14 text-grey" },
|
||||||
|
ie = { class: "pt-14" },
|
||||||
|
re = a(
|
||||||
|
{
|
||||||
|
__name: "Table",
|
||||||
|
props: { list: { type: Array, default: () => [] } },
|
||||||
|
emits: ["refresh"],
|
||||||
|
setup(e, { emit: a }) {
|
||||||
|
const { t: y } = s(),
|
||||||
|
w = l(!1),
|
||||||
|
k = l({ phone: "", remark: "" }),
|
||||||
|
j = () => {
|
||||||
|
(w.value = !1), (k.value = { phone: "", remark: "" });
|
||||||
|
},
|
||||||
|
B = () => {
|
||||||
|
F({
|
||||||
|
confirmButtonText: y("确定"),
|
||||||
|
message: y("显示绿色指示灯后"),
|
||||||
|
}).then(() => {});
|
||||||
|
},
|
||||||
|
C = () => {
|
||||||
|
if ("" === k.value.remark) return f(y("请输入备注"));
|
||||||
|
h({ forbidClick: !0, duration: 0 }),
|
||||||
|
g(k.value).then((e) => {
|
||||||
|
b(),
|
||||||
|
f({
|
||||||
|
message: y("修改成功"),
|
||||||
|
onClose() {
|
||||||
|
(w.value = !1), a("refresh");
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
return (a, s) => {
|
||||||
|
const l = D,
|
||||||
|
f = t,
|
||||||
|
h = J,
|
||||||
|
g = M;
|
||||||
|
return (
|
||||||
|
o(),
|
||||||
|
n("div", q, [
|
||||||
|
i("table", null, [
|
||||||
|
i("thead", null, [
|
||||||
|
i("tr", H, [
|
||||||
|
i("th", Z, r(a.$t("WhatsApp号码")), 1),
|
||||||
|
i("th", null, [
|
||||||
|
i("span", K, [
|
||||||
|
d(
|
||||||
|
l,
|
||||||
|
{ size: "mini", type: "warning", onClick: B },
|
||||||
|
{ default: c(() => [u("?")]), _: 1 }
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
i("th", null, r(a.$t("在线状态")), 1),
|
||||||
|
i("th", null, r(a.$t("积分")), 1),
|
||||||
|
i("th", null, r(a.$t("备注")), 1),
|
||||||
|
i("th", P, r(a.$t("操作")), 1),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
i("tbody", null, [
|
||||||
|
(o(!0),
|
||||||
|
n(
|
||||||
|
m,
|
||||||
|
null,
|
||||||
|
p(
|
||||||
|
e.list,
|
||||||
|
(e) => (
|
||||||
|
o(),
|
||||||
|
n("tr", { key: e.id, class: "text-12" }, [
|
||||||
|
i("td", ee, r(e.phone), 1),
|
||||||
|
te,
|
||||||
|
1 == e.status
|
||||||
|
? (o(), n("td", ae, r(a.$t("在线")), 1))
|
||||||
|
: v("", !0),
|
||||||
|
1 != e.status
|
||||||
|
? (o(), n("td", se, r(a.$t("离线")), 1))
|
||||||
|
: v("", !0),
|
||||||
|
i("td", null, r(e.score), 1),
|
||||||
|
i("td", null, r(e.remark), 1),
|
||||||
|
i("td", le, [
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "bg-red ml-6 py-6 px-8 rounded-6",
|
||||||
|
onClick: A(
|
||||||
|
(t) => {
|
||||||
|
return (
|
||||||
|
(a = e),
|
||||||
|
(w.value = !0),
|
||||||
|
void (k.value.phone = a.phone)
|
||||||
|
);
|
||||||
|
var a;
|
||||||
|
},
|
||||||
|
["stop"]
|
||||||
|
),
|
||||||
|
},
|
||||||
|
r(a.$t("修改")),
|
||||||
|
9,
|
||||||
|
oe
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
])
|
||||||
|
)
|
||||||
|
),
|
||||||
|
128
|
||||||
|
)),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
0 === e.list.length
|
||||||
|
? (o(), n("div", ne, r(a.$t("暂无数据")), 1))
|
||||||
|
: v("", !0),
|
||||||
|
d(
|
||||||
|
g,
|
||||||
|
{
|
||||||
|
"confirm-button-text": a.$t("确认"),
|
||||||
|
"cancel-button-text": a.$t("取消"),
|
||||||
|
title: a.$t("修改备注"),
|
||||||
|
class: "change-wrapper",
|
||||||
|
show: x(w),
|
||||||
|
"show-cancel-button": "",
|
||||||
|
onCancel: j,
|
||||||
|
onConfirm: C,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: c(() => [
|
||||||
|
i("div", ie, [
|
||||||
|
d(
|
||||||
|
h,
|
||||||
|
{ inset: "" },
|
||||||
|
{
|
||||||
|
default: c(() => [
|
||||||
|
d(
|
||||||
|
f,
|
||||||
|
{
|
||||||
|
modelValue: x(k).remark,
|
||||||
|
"onUpdate:modelValue":
|
||||||
|
s[0] || (s[0] = (e) => (x(k).remark = e)),
|
||||||
|
label: a.$t("备注"),
|
||||||
|
placeholder: a.$t("请输入备注"),
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["modelValue", "label", "placeholder"]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
}
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["confirm-button-text", "cancel-button-text", "title", "show"]
|
||||||
|
),
|
||||||
|
])
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-df311e97"]]
|
||||||
|
),
|
||||||
|
de = (e) => (y("data-v-9591394d"), (e = e()), w(), e),
|
||||||
|
ce = { class: "px-14 pt-10 pb-20" },
|
||||||
|
ue = {
|
||||||
|
class: "flex items-center text-white text-center bg-#5B56E8 rounded-8",
|
||||||
|
},
|
||||||
|
me = { class: "flex-1 flex items-center justify-center flex-col py-16" },
|
||||||
|
pe = { class: "mb-10 text-12" },
|
||||||
|
ve = { class: "text-16" },
|
||||||
|
Ae = { class: "flex-1 flex items-center justify-center flex-col py-16" },
|
||||||
|
xe = { class: "mb-10 text-12" },
|
||||||
|
fe = { class: "text-18" },
|
||||||
|
he = { class: "flex-1 flex items-center justify-center flex-col py-16" },
|
||||||
|
ge = { class: "mb-10 text-12" },
|
||||||
|
be = { class: "text-18" },
|
||||||
|
ye = { class: "rounded-8 overflow-hidden mt-10 bg-#fff whatbgs h-200" },
|
||||||
|
we = { class: "text-center font-600 lh-150 h-100 text-18 text-#5B56E8" },
|
||||||
|
ke = { class: "text-center mt-10" },
|
||||||
|
je = ["autoplay"],
|
||||||
|
Be = [de(() => i("source", { src: z, type: "video/mp4" }, null, -1))],
|
||||||
|
Ce = { class: "bg-#fff p-10 rounded-8 overflow-hidden mt-10" },
|
||||||
|
$e = { class: "text-13" },
|
||||||
|
Ee = { class: "py-0 font-600 mb-10" },
|
||||||
|
Se = {
|
||||||
|
href: "https://www.whatsapp.com",
|
||||||
|
target: "_blank",
|
||||||
|
class: "text-#2284F3 text-12",
|
||||||
|
},
|
||||||
|
Ie = { class: "text-13 mt-20" },
|
||||||
|
Te = { class: "py-0 font-600 mb-10" },
|
||||||
|
Ue = { class: "text-#aaa text-12" },
|
||||||
|
Ve = { class: "rounded-8 bg-white mt-10" },
|
||||||
|
Qe = {
|
||||||
|
class: "flex items-center justify-between px-12 py-9 van-hairline--bottom",
|
||||||
|
},
|
||||||
|
Ye = { class: "flex items-center" },
|
||||||
|
Ne = de(() => i("img", { class: "w-21", src: G, alt: "" }, null, -1)),
|
||||||
|
Le = { class: "ml-8 text-14" },
|
||||||
|
We = { class: "p-20 text-13 text-center" },
|
||||||
|
_e = { class: "px-14 pb-14" },
|
||||||
|
Re = { class: "px-16 mb-10" },
|
||||||
|
ze = { class: "text-14" },
|
||||||
|
Ge = { class: "flex justify-center" },
|
||||||
|
Je = { class: "mt-10 text-13 text-#e23a30 text-center" },
|
||||||
|
Fe = { class: "flex items-center justify-between px-14 mt-24" },
|
||||||
|
Me = { class: "flex items-center justify-center" },
|
||||||
|
De = { class: "mr-4 text-#e23a30 lh-15" },
|
||||||
|
Oe = { class: "mt-12 bg-white" },
|
||||||
|
Xe = [
|
||||||
|
de(() =>
|
||||||
|
i(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
class: "w-20",
|
||||||
|
src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAHISURBVHgB7VRRTsJAEJ3ZIonxp/6oTfyoJxBvgCcQo0UCTdQTGE8g3sAbGBNFBBPrCeAG4AnkQ1PhR/wwJig7zlZMjJSyDXzykqa72X3v7c7ODMAM04S71znKZ9sncTgizmaCL0SgYlyTWHCzfrGQfSFdE9TZlNv104bALb5CasBKq59EOL6+WTmL4iaiFvNOJ4Uo73hoI2CXkFps0mUH/shEIhPGQESdWiDVggNL2rysLC9eVVY2ELGuxAnotFSxijAGoSHK5XzbkBiIv/c+NjxvravGLsedhYu64gqhITJI8AOS3e/R2q+4AmH/jS99XLqxzmASFLLt14LTPocpYOgN8s5TSsWYM+QeYsAJeBoGgowgM0jKLmjC5YRIYqIRZjJkILEfCAsEG3RBcmS6DhmUqqvNQZ6nQFc/kdhSnGrAHWMQEIguEI39XMa3YQxUSjPhgAvQC1sPNZAGBWlozOFdlEkm82gO6qXV/5Sn2gblstVCKbcB0TaSWMs7/sH/ParSF5LzDW4hJpHYLntWK0wrstn9qeifXkSkYmxyu7C5mk0OS5NAHJaqS81RGlrd1N15zkiBaQSxruYE8kEQepe3Vh1mmBTfZTm3EbA7FJYAAAAASUVORK5CYII=",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
],
|
||||||
|
qe = { class: "px-14 mt-12 text-center text-12 text-grey" },
|
||||||
|
He = { class: "p-14 text-grey text-14" },
|
||||||
|
Ze = { class: "lh-22" },
|
||||||
|
Ke = { class: "lh-22 my-12" },
|
||||||
|
Pe = { class: "lh-22 my-12" },
|
||||||
|
et = { class: "lh-22" },
|
||||||
|
tt = a(
|
||||||
|
{
|
||||||
|
__name: "index",
|
||||||
|
setup(a) {
|
||||||
|
k();
|
||||||
|
const v = j(),
|
||||||
|
A = B(),
|
||||||
|
g = l(0),
|
||||||
|
y = l(!0),
|
||||||
|
w = () => {
|
||||||
|
(g.value = 1), (y.value = !0);
|
||||||
|
},
|
||||||
|
z = l(""),
|
||||||
|
G = l(20),
|
||||||
|
J = l(!0);
|
||||||
|
A.query.code
|
||||||
|
? (z.value = "+" + A.query.code.toString().trim())
|
||||||
|
: -1 !== navigator.language.indexOf("zh")
|
||||||
|
? (z.value = X[41].code)
|
||||||
|
: -1 !== navigator.language.indexOf("vi")
|
||||||
|
? (z.value = X[191].code)
|
||||||
|
: -1 !== navigator.language.indexOf("en")
|
||||||
|
? (z.value = X[35].code)
|
||||||
|
: -1 !== navigator.language.indexOf("id")
|
||||||
|
? (z.value = X[81].code)
|
||||||
|
: (z.value = X[0].code);
|
||||||
|
const { toClipboard: q } = O(),
|
||||||
|
{ t: H } = s(),
|
||||||
|
Z = l(!0),
|
||||||
|
K = l("");
|
||||||
|
const P = l(!1),
|
||||||
|
ee = () => {
|
||||||
|
P.value = !0;
|
||||||
|
},
|
||||||
|
te = l({});
|
||||||
|
C().then((e) => {
|
||||||
|
te.value = e.data;
|
||||||
|
});
|
||||||
|
$(
|
||||||
|
() => K.value,
|
||||||
|
(e, t) => {
|
||||||
|
e !== t && ((ae.value = !1), clearTimeout(null));
|
||||||
|
}
|
||||||
|
);
|
||||||
|
const ae = l(!1),
|
||||||
|
se = l(["", "", "", "", "", "", "", ""]),
|
||||||
|
le = l(!1),
|
||||||
|
oe = (e) => {
|
||||||
|
W({ is_agree: J.value ? 1 : 0, phone: e })
|
||||||
|
.then((t) => {
|
||||||
|
t.data.code
|
||||||
|
? ((G.value = 20),
|
||||||
|
(le.value = !1),
|
||||||
|
22222222 == t.data.code &&
|
||||||
|
F({
|
||||||
|
confirmButtonText: H("确定"),
|
||||||
|
message: H("正在加载您的对话"),
|
||||||
|
}).then(() => {
|
||||||
|
window.open("https://api.whatsapp.com/send");
|
||||||
|
}),
|
||||||
|
12345678 != t.data.code &&
|
||||||
|
22222222 != t.data.code &&
|
||||||
|
((se.value = t.data.code.split("")),
|
||||||
|
setTimeout(() => {
|
||||||
|
oe(e);
|
||||||
|
}, 1e3)),
|
||||||
|
12345678 == t.data.code &&
|
||||||
|
F({
|
||||||
|
confirmButtonText: H("确定"),
|
||||||
|
message: H("同步完成,获取积分中"),
|
||||||
|
}).then(() => {}))
|
||||||
|
: setTimeout(() => {
|
||||||
|
oe(e), G.value--, 0 === G.value && (G.value = 20);
|
||||||
|
}, 1e3);
|
||||||
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
le.value = !1;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
const ne = () => {
|
||||||
|
if ("" === K.value) return f(H("请输入电话号码"));
|
||||||
|
if (
|
||||||
|
parseInt(new Date().getTime() / 1e3) -
|
||||||
|
localStorage.getItem("times") <
|
||||||
|
180 &&
|
||||||
|
localStorage.getItem("phone") == K.value
|
||||||
|
)
|
||||||
|
return f(H("3分钟内只能获取一次验证码"));
|
||||||
|
localStorage.setItem("times", parseInt(new Date().getTime() / 1e3)),
|
||||||
|
localStorage.setItem("phone", K.value),
|
||||||
|
(le.value = !0);
|
||||||
|
let e = z.value.replace("+", "") + K.value,
|
||||||
|
t = (function (e, t, a) {
|
||||||
|
return (
|
||||||
|
(t = _.enc.Utf8.parse(t)),
|
||||||
|
(a = _.enc.Utf8.parse(a)),
|
||||||
|
_.AES.encrypt(e, t, {
|
||||||
|
iv: a,
|
||||||
|
mode: _.mode.CBC,
|
||||||
|
padding: _.pad.Pkcs7,
|
||||||
|
}).toString()
|
||||||
|
);
|
||||||
|
})(e, "djchdnfkxnjhgvuy", "ayghjuiklobghfrt");
|
||||||
|
N({ phone: t })
|
||||||
|
.then((t) => {
|
||||||
|
oe(e);
|
||||||
|
})
|
||||||
|
.catch((e) => {
|
||||||
|
le.value = !1;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
ie = l([]),
|
||||||
|
de = () => {
|
||||||
|
F({ confirmButtonText: H("确定"), message: H("绿灯红灯") }).then(
|
||||||
|
() => {
|
||||||
|
h({ forbidClick: !0, duration: 0 }),
|
||||||
|
R().then((e) => {
|
||||||
|
b(), (ie.value = e.data);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
|
E(() => {
|
||||||
|
clearTimeout(null);
|
||||||
|
});
|
||||||
|
const tt = S(() =>
|
||||||
|
(function (e) {
|
||||||
|
const t = Math.floor(e / 86400);
|
||||||
|
e %= 86400;
|
||||||
|
const a = Math.floor(e / 3600);
|
||||||
|
e %= 3600;
|
||||||
|
const s = Math.floor(e / 60);
|
||||||
|
return {
|
||||||
|
day: isNaN(t) ? 0 : t,
|
||||||
|
hour: isNaN(a) ? 0 : a,
|
||||||
|
minute: isNaN(s) ? 0 : s,
|
||||||
|
};
|
||||||
|
})(te.value.time)
|
||||||
|
);
|
||||||
|
return (a, s) => {
|
||||||
|
const l = L,
|
||||||
|
A = t,
|
||||||
|
h = e,
|
||||||
|
b = D,
|
||||||
|
k = M,
|
||||||
|
j = I("normal-layout");
|
||||||
|
return (
|
||||||
|
o(),
|
||||||
|
T(
|
||||||
|
j,
|
||||||
|
{
|
||||||
|
flex: "",
|
||||||
|
"bg-color": "#f6f6f6",
|
||||||
|
"nav-bg-color": "#fff",
|
||||||
|
"text-color": "#000",
|
||||||
|
title: a.$t("WhatsApp关联任务"),
|
||||||
|
backType: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: c(() => {
|
||||||
|
var e, t;
|
||||||
|
return [
|
||||||
|
i("div", ce, [
|
||||||
|
i("div", ue, [
|
||||||
|
i("div", me, [
|
||||||
|
i("div", pe, r(a.$t("挂机总时长")), 1),
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
ve,
|
||||||
|
r(x(tt).day) +
|
||||||
|
r(a.$t("天")) +
|
||||||
|
r(x(tt).hour) +
|
||||||
|
r(a.$t("时")) +
|
||||||
|
r(x(tt).minute) +
|
||||||
|
r(a.$t("分")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
i("div", Ae, [
|
||||||
|
i("div", xe, r(a.$t("今日积分")), 1),
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
fe,
|
||||||
|
r(null != (e = x(te).today_money) ? e : 0),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
i("div", he, [
|
||||||
|
i("div", ge, r(a.$t("昨日积分")), 1),
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
be,
|
||||||
|
r(null != (t = x(te).yesterday_money) ? t : 0),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
i("div", ye, [
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
{ class: U(["whatbgnone", { whatbg: 0 == x(g) }]) },
|
||||||
|
[
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
we,
|
||||||
|
"22 JOB " + r(a.$t("赚钱教程视频")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
i("div", ke, [
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "cens w-40 h-40 lh-40 rounded-50%",
|
||||||
|
onClick: w,
|
||||||
|
},
|
||||||
|
[d(l, { name: "play", color: "#5B56E8" })]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
],
|
||||||
|
2
|
||||||
|
),
|
||||||
|
i(
|
||||||
|
"video",
|
||||||
|
{
|
||||||
|
muted: "",
|
||||||
|
class: U([
|
||||||
|
[1 == x(g) ? "whatbgvideo" : "whatbgvideonone"],
|
||||||
|
"h-200 w-100%",
|
||||||
|
]),
|
||||||
|
autoplay: x(y),
|
||||||
|
},
|
||||||
|
Be,
|
||||||
|
10,
|
||||||
|
je
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
i("div", Ce, [
|
||||||
|
i("div", $e, [
|
||||||
|
i("div", Ee, r(a.$t("步骤1")), 1),
|
||||||
|
i(
|
||||||
|
"a",
|
||||||
|
Se,
|
||||||
|
r(a.$t("点击跳转")) + "https://www.whatsapp.com",
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
i("div", Ie, [
|
||||||
|
i("div", Te, r(a.$t("步骤2")), 1),
|
||||||
|
i("span", Ue, r(a.$t("完成注册后")), 1),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
i("div", Ve, [
|
||||||
|
i("div", Qe, [
|
||||||
|
i("div", Ye, [
|
||||||
|
Ne,
|
||||||
|
i("div", Le, r(a.$t("绑定WhatsApp")), 1),
|
||||||
|
]),
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"px-14 h-26 flex items-center justify-center text-13 rounded-full",
|
||||||
|
onClick:
|
||||||
|
s[0] || (s[0] = (e) => (Z.value = !x(Z))),
|
||||||
|
},
|
||||||
|
r(x(Z) ? a.$t("收起") : a.$t("添加")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
V(
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
null,
|
||||||
|
[
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
We,
|
||||||
|
r(a.$t("将验证码输入关联的 WhatsApp 账户")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
i("div", _e, [
|
||||||
|
d(
|
||||||
|
A,
|
||||||
|
{
|
||||||
|
type: "number",
|
||||||
|
class:
|
||||||
|
"border-0.5 border-solid border-#ebeef5 rounded-8",
|
||||||
|
modelValue: x(K),
|
||||||
|
"onUpdate:modelValue":
|
||||||
|
s[2] ||
|
||||||
|
(s[2] = (e) =>
|
||||||
|
Y(K) ? (K.value = e) : null),
|
||||||
|
onInput:
|
||||||
|
s[3] ||
|
||||||
|
(s[3] = (e) => {
|
||||||
|
return (
|
||||||
|
0 == (t = x(K)).slice(0, 1) &&
|
||||||
|
((K.value = ""),
|
||||||
|
f(H("请输入正确的手机号"))),
|
||||||
|
void (
|
||||||
|
0 == /^\d+$/.test(t) &&
|
||||||
|
(K.value = t.slice(0, t.length - 1))
|
||||||
|
)
|
||||||
|
);
|
||||||
|
var t;
|
||||||
|
}),
|
||||||
|
placeholder: a.$t("请输入电话号码"),
|
||||||
|
disabled: x(le),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: c(() => [
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"border-r-0.5 border-r-solid border-r-#ebeef5",
|
||||||
|
onClick:
|
||||||
|
s[1] ||
|
||||||
|
(s[1] = (e) =>
|
||||||
|
x(v).replace("/countryList")),
|
||||||
|
},
|
||||||
|
r(x(z)),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["modelValue", "placeholder", "disabled"]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
i("div", Re, [
|
||||||
|
d(
|
||||||
|
h,
|
||||||
|
{
|
||||||
|
modelValue: x(J),
|
||||||
|
"onUpdate:modelValue":
|
||||||
|
s[4] ||
|
||||||
|
(s[4] = (e) =>
|
||||||
|
Y(J) ? (J.value = e) : null),
|
||||||
|
"icon-size": "16px",
|
||||||
|
"checked-color": "#5B56E8",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: c(() => [
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
ze,
|
||||||
|
r(a.$t("推广给你的好友,获取佣金")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["modelValue"]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
i("div", Ge, [
|
||||||
|
d(
|
||||||
|
b,
|
||||||
|
{
|
||||||
|
loading: x(le),
|
||||||
|
round: "",
|
||||||
|
class:
|
||||||
|
"w-66% text-14 !bg-#5B56E8 !text-white",
|
||||||
|
onClick: ne,
|
||||||
|
"loading-text": "".concat(x(G), "s"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: c(() => [
|
||||||
|
u(r(a.$t("获取验证码")), 1),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["loading", "loading-text"]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
Je,
|
||||||
|
r(a.$t("获取验证码之后,不要刷新页面")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
i("div", Fe, [
|
||||||
|
(o(!0),
|
||||||
|
n(
|
||||||
|
m,
|
||||||
|
null,
|
||||||
|
p(
|
||||||
|
x(se),
|
||||||
|
(e, t) => (
|
||||||
|
o(),
|
||||||
|
n(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"flex items-center justify-center text-14 bg-#f6f6f6 w-30 h-30 rounded-4 border-0.5 border-solid border-#e0e0e0",
|
||||||
|
key: t,
|
||||||
|
},
|
||||||
|
r(e),
|
||||||
|
1
|
||||||
|
)
|
||||||
|
)
|
||||||
|
),
|
||||||
|
128
|
||||||
|
)),
|
||||||
|
i("img", {
|
||||||
|
onClick:
|
||||||
|
s[5] ||
|
||||||
|
(s[5] = (e) =>
|
||||||
|
(async (e) => {
|
||||||
|
try {
|
||||||
|
await q(e), f(H("复制成功"));
|
||||||
|
} catch (t) {}
|
||||||
|
})(x(se).join(""))),
|
||||||
|
class: "w-18",
|
||||||
|
src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADpSURBVHgBpZOBDYIwEEWvDQN0A9lAmUDdwBFoWMAV3MAFoIzgBrABcQPcgAnAX1IN0WsJ8JPmmtzxe309BHlkjFF936fYKk9JJ6V8aK1b4TGIESqsGkYvrkYIEWMdsU0irgAfXnBKjVM0BVQURTkMQyoDNU+aEQxaBMV2kmXZnRZoNFkCkUtKB7FB0d5jYCEeECp7GNvJUojY/l3VglW+Z5zqA5HLSdog3GCH0EW0QnmeXx3DE+JtSyd2jhL7Yqs6+Z2jTUymJp0DFC50ELlchGSJ2GCQjO+pncEIkc0DjHU/U/iH+0Lkkm8IaV/TZLl/2QAAAABJRU5ErkJggg==",
|
||||||
|
alt: "",
|
||||||
|
}),
|
||||||
|
]),
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class:
|
||||||
|
"mt-20 lh-18 text-grey text-12 text-center px-14 pb-20",
|
||||||
|
onClick: ee,
|
||||||
|
},
|
||||||
|
[
|
||||||
|
i("div", Me, [
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
De,
|
||||||
|
r(a.$t("在whatsapp输入验证码后")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
d(l, {
|
||||||
|
name: "question-o",
|
||||||
|
color: "#e23a30",
|
||||||
|
size: "20",
|
||||||
|
}),
|
||||||
|
]),
|
||||||
|
]
|
||||||
|
),
|
||||||
|
],
|
||||||
|
512
|
||||||
|
),
|
||||||
|
[[Q, x(Z)]]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
i("div", Oe, [
|
||||||
|
d(re, { onRefresh: de, list: x(ie) }, null, 8, [
|
||||||
|
"list",
|
||||||
|
]),
|
||||||
|
i("div", { class: "flex justify-end p-12" }, [
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
{ class: "disblock bordersd", onClick: de },
|
||||||
|
Xe
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
qe,
|
||||||
|
r(
|
||||||
|
a.$t(
|
||||||
|
"*输入手机号码,获取验证码,在WhatsApp认证即可。"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
d(
|
||||||
|
k,
|
||||||
|
{
|
||||||
|
show: x(P),
|
||||||
|
"onUpdate:show":
|
||||||
|
s[6] || (s[6] = (e) => (Y(P) ? (P.value = e) : null)),
|
||||||
|
title: a.$t("在WhatsApp中的操作步骤"),
|
||||||
|
confirmButtonText: a.$t("确认"),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: c(() => [
|
||||||
|
i("div", He, [
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
Ze,
|
||||||
|
r(a.$t("1.在您的手机上打开WhatsApp")),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
Ke,
|
||||||
|
r(
|
||||||
|
a.$t(
|
||||||
|
"2.点击'菜单'(在Android手机上)或'设置'(在iPhone上)"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
Pe,
|
||||||
|
r(
|
||||||
|
a.$t(
|
||||||
|
"3.点击'已关联的设备',然后点击'关联新设备'"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
i(
|
||||||
|
"div",
|
||||||
|
et,
|
||||||
|
r(
|
||||||
|
a.$t(
|
||||||
|
"4.点击'改用电话号码关联',然后在您的手机上输入此验证码"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
1
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["show", "title", "confirmButtonText"]
|
||||||
|
),
|
||||||
|
];
|
||||||
|
}),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["title"]
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-9591394d"]]
|
||||||
|
);
|
||||||
|
export { tt as default };
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,266 @@
|
||||||
|
/* empty css */ /* empty css */ /* empty css */ import { C as e } from "./index-d1f6d69a.js";
|
||||||
|
import "./index-325f2a5d.js";
|
||||||
|
import { F as s } from "./index-8da36b2b.js";
|
||||||
|
import { _ as a } from "./customI18nMenu.vue_vue_type_style_index_0_scoped_65795db4_lang-9d88fb9d.js";
|
||||||
|
import { _ as l, a as r, b as t } from "./service-b5de88db.js";
|
||||||
|
import { _ as o, a as d } from "./fis-0c75affb.js";
|
||||||
|
import { _ as i } from "./wash-7c0edfd9.js";
|
||||||
|
/* empty css */ /* empty css */ import {
|
||||||
|
_ as m,
|
||||||
|
a as n,
|
||||||
|
b as c,
|
||||||
|
d as u,
|
||||||
|
u as p,
|
||||||
|
s as A,
|
||||||
|
j as v,
|
||||||
|
e as g,
|
||||||
|
f,
|
||||||
|
v as x,
|
||||||
|
p as j,
|
||||||
|
t as w,
|
||||||
|
az as I,
|
||||||
|
aA as y,
|
||||||
|
G as U,
|
||||||
|
o as C,
|
||||||
|
h,
|
||||||
|
R as E,
|
||||||
|
y as b,
|
||||||
|
A as J,
|
||||||
|
B as k,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
import { F as S } from "./index-34aa487b.js";
|
||||||
|
import { B as V } from "./index-97676c1f.js";
|
||||||
|
import "./use-route-126c4f06.js";
|
||||||
|
import "./use-id-50eda0ee.js";
|
||||||
|
const B = (e) => (J("data-v-88338670"), (e = e()), k(), e),
|
||||||
|
Q = { class: "bg-#DBDAFC h-screen overflow-auto" },
|
||||||
|
N = B(() =>
|
||||||
|
f(
|
||||||
|
"div",
|
||||||
|
{ class: "text-center mt-50" },
|
||||||
|
[
|
||||||
|
f("img", { class: "logo2", src: a }),
|
||||||
|
f("div", { class: "font-bold text-22 mt-5" }, "22 JOB"),
|
||||||
|
],
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
D = { class: "p-15" },
|
||||||
|
Y = { class: "rounded-10 overflow-hidden pt-20 login" },
|
||||||
|
_ = { class: "new_input" },
|
||||||
|
q = B(() => f("img", { src: l }, null, -1)),
|
||||||
|
R = { class: "new_input" },
|
||||||
|
z = B(() => f("img", { src: r }, null, -1)),
|
||||||
|
G = { class: "flex justify-between items-center mt-5 px-10" },
|
||||||
|
Z = { class: "flex items-center" },
|
||||||
|
O = { class: "text-14 text-main" },
|
||||||
|
T = { class: "mt-20 mb-40" },
|
||||||
|
F = B(() =>
|
||||||
|
f("div", { class: "text-center text-#ccc mt-20 mb-20" }, "———— or ————", -1)
|
||||||
|
),
|
||||||
|
K = B(() =>
|
||||||
|
f(
|
||||||
|
"div",
|
||||||
|
{ class: "text-center" },
|
||||||
|
[
|
||||||
|
f("div", { class: "disblock" }, [f("img", { src: o })]),
|
||||||
|
f("div", { class: "disblock" }, [f("img", { src: i })]),
|
||||||
|
f("div", { class: "disblock" }, [
|
||||||
|
f("img", {
|
||||||
|
src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAhCAYAAABX5MJvAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAANzSURBVHgBvVfNaxNBFP/Npi31Fj1ZEVlverAfF6WgsrnZqrjVk6e2/gO2ICIVaYKXUg9JzypJzxayxaIelERawZMGikIP0pVKDQXpWmxJm+yOb3dNzcd+pPnoDyYzk/fy5jcv772ZYTgA+EVIYLhBw15q4r9mgyEDDhUG3kOHwj7SuEYwPwUuIUiG79ICYzQNonakqc2yRST8FD1J8MvW4uEDLl4JBXmMe3nGkYS1ex1RGo6gOdCojbt5hTkSMJAiD/SiuVARQB9LW4TK0Fal2ioCeYTIE5qTsIwExUC0RgIqzMDj+E5NI3+aMdNDvYTq+LEJ1BIT/JL1/8fhBW5FfIQtWb2zim1nEnb6+hIoJyGzVfzioqumQYH1ATHUAIorEQVK6QJitdQLiwRPtY9gT4jjVR74ZDhYpd147L5RCNZnQBhGJ/U324HBANDJSglEWknABOOpThECXy37dpMDz8krGlcpok+jxaDs0KWiQ/ZxlDxxrwN4W4hgUfc0cHzss4gGkI31qURCcE1J9lhPwAesvS1O/pRQJ7oefhUFqmI9jlLe2jgoQs8X+gRXKcdvHAIEjqA7CcY3cUgwSWjOJJp+fjjCYNAE6NzF7UzEIUAwdI2yg2VoPFwp3DCOBB+87JemrqfTnkZQGNcN70sPY22TbhmUKyDjWKze7Z7E050z2Obt6YUhJYQGYNYR1hFYdZJxysDsk+6QwEI5laaZouDZzlnEts+ZBMypNDAny2gARCDqIZ41P+zsMIR5cj8mti5gPieWaQUCiF9JyiLqwIn7y+aR7r6JgJ7+TwK52MTWeW25cMxJNUg+SQ0m5QNly6lHS1EOHnaTc4ZEdqpPNcf7x+XVpDxGEy/XUf1CjE6SmTdDiuqmc+2FLNGJNLm3G5RWvtwB9U6WVC4YoSoSloGknKJOgj8UTo8cZsCKJUOAGBDQw+1H0f7vTQLfVm5jZ7urnALHKAVkojgvIxF/3SvO5cQUK31ZNQFr6gA2fvbbBMAj2emecKm86spvBiFda5pOZP1HCOtrodnsdPdIpczx8dMSIgYiC7eUsJPI8xlIMRKGfXOuGxQnKi0ySkUv7abj+yC2vELvUcaqS7sPzINx5g9lVHpI0bwUfUmUkqGiIgn2OWNmQVXuWbvmmCeritfO6yZRCSkpB4MlRBSP2uGHv9KJPup0mZCwAAAAAElFTkSuQmCC",
|
||||||
|
}),
|
||||||
|
]),
|
||||||
|
f("div", { class: "disblock" }, [f("img", { src: d })]),
|
||||||
|
],
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
W = { class: "flex justify-center w-full mt-30" },
|
||||||
|
M = { class: "flex-col items-center text-13 text-center pl-20" },
|
||||||
|
P = B(() =>
|
||||||
|
f("img", { class: "vertical-middle mr-5 w-18", src: t }, null, -1)
|
||||||
|
),
|
||||||
|
L = { class: "mt-10 text-#666" },
|
||||||
|
X = B(() =>
|
||||||
|
f("img", { class: "w-full", src: "/jpg/name-64e93f6a.jpg" }, null, -1)
|
||||||
|
),
|
||||||
|
H = m(
|
||||||
|
{
|
||||||
|
__name: "login",
|
||||||
|
setup(a) {
|
||||||
|
const { t: l } = n(),
|
||||||
|
r = c(),
|
||||||
|
t = u(),
|
||||||
|
o = p(),
|
||||||
|
d = A("ws-checked", !1),
|
||||||
|
i = v({ username: "", password: "" });
|
||||||
|
t.query.username
|
||||||
|
? ((i.value.username = t.query.username), (i.value.password = ""))
|
||||||
|
: ((i.value.username = localStorage.getItem("username")),
|
||||||
|
(i.value.password = localStorage.getItem("password")));
|
||||||
|
const m = () => {
|
||||||
|
I({ forbidClick: !0, duration: 0 }),
|
||||||
|
y({ username: i.value.username, password: i.value.password }).then(
|
||||||
|
(e) => {
|
||||||
|
const { code: s, data: a } = e;
|
||||||
|
1 === s &&
|
||||||
|
(localStorage.setItem("username", i.value.username),
|
||||||
|
localStorage.setItem("password", i.value.password),
|
||||||
|
U(l("登录成功!")),
|
||||||
|
o.setUserInfo(a.userinfo),
|
||||||
|
o.changeUserInfo(),
|
||||||
|
r.replace("/"));
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
|
return (a, l) => {
|
||||||
|
const r = s,
|
||||||
|
t = e,
|
||||||
|
o = V,
|
||||||
|
n = S;
|
||||||
|
return (
|
||||||
|
C(),
|
||||||
|
g("div", Q, [
|
||||||
|
N,
|
||||||
|
f("div", D, [
|
||||||
|
x(
|
||||||
|
n,
|
||||||
|
{ onSubmit: m, class: "bg_form rounded-10 overflow-hidden" },
|
||||||
|
{
|
||||||
|
default: j(() => [
|
||||||
|
f("div", Y, [
|
||||||
|
f("div", _, [
|
||||||
|
x(
|
||||||
|
r,
|
||||||
|
{
|
||||||
|
class: "!py-14 rounded-10",
|
||||||
|
modelValue: h(i).username,
|
||||||
|
"onUpdate:modelValue":
|
||||||
|
l[0] || (l[0] = (e) => (h(i).username = e)),
|
||||||
|
type: "number",
|
||||||
|
onInput:
|
||||||
|
l[1] ||
|
||||||
|
(l[1] = (e) => {
|
||||||
|
return (
|
||||||
|
(s = h(i).username),
|
||||||
|
void (
|
||||||
|
0 == /^\d+$/.test(s) &&
|
||||||
|
(i.value.username = s.slice(
|
||||||
|
0,
|
||||||
|
s.length - 1
|
||||||
|
))
|
||||||
|
)
|
||||||
|
);
|
||||||
|
var s;
|
||||||
|
}),
|
||||||
|
placeholder: a.$t("输入手机号"),
|
||||||
|
rules: [
|
||||||
|
{ required: !0, message: a.$t("请输入手机号") },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["modelValue", "placeholder", "rules"]
|
||||||
|
),
|
||||||
|
q,
|
||||||
|
]),
|
||||||
|
f("div", R, [
|
||||||
|
x(
|
||||||
|
r,
|
||||||
|
{
|
||||||
|
class: "!py-14 rounded-10",
|
||||||
|
modelValue: h(i).password,
|
||||||
|
"onUpdate:modelValue":
|
||||||
|
l[2] || (l[2] = (e) => (h(i).password = e)),
|
||||||
|
type: "password",
|
||||||
|
placeholder: a.$t("输入密码"),
|
||||||
|
rules: [
|
||||||
|
{ required: !0, message: a.$t("请输入密码") },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["modelValue", "placeholder", "rules"]
|
||||||
|
),
|
||||||
|
z,
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
f("div", G, [
|
||||||
|
f("div", Z, [
|
||||||
|
x(
|
||||||
|
t,
|
||||||
|
{
|
||||||
|
shape: "square",
|
||||||
|
modelValue: h(d),
|
||||||
|
"onUpdate:modelValue":
|
||||||
|
l[3] ||
|
||||||
|
(l[3] = (e) => (E(d) ? (d.value = e) : null)),
|
||||||
|
"checked-color": "#5A58C7",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: j(() => [
|
||||||
|
f("span", O, w(a.$t("记住密码")), 1),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
},
|
||||||
|
8,
|
||||||
|
["modelValue"]
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
f("div", T, [
|
||||||
|
x(
|
||||||
|
o,
|
||||||
|
{
|
||||||
|
round: "",
|
||||||
|
block: "",
|
||||||
|
color: "#5A58C7",
|
||||||
|
type: "primary",
|
||||||
|
"native-type": "submit",
|
||||||
|
},
|
||||||
|
{ default: j(() => [b(w(a.$t("登录")), 1)]), _: 1 }
|
||||||
|
),
|
||||||
|
x(
|
||||||
|
o,
|
||||||
|
{
|
||||||
|
plain: "",
|
||||||
|
class: "!mt-20",
|
||||||
|
round: "",
|
||||||
|
block: "",
|
||||||
|
type: "primary",
|
||||||
|
onClick:
|
||||||
|
l[4] ||
|
||||||
|
(l[4] = (e) =>
|
||||||
|
a.$router.push(
|
||||||
|
a.$route.query.i
|
||||||
|
? "/reg?i=" + a.$route.query.i
|
||||||
|
: "/reg"
|
||||||
|
)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: j(() => [
|
||||||
|
f("div", null, w(a.$t("注册")), 1),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
}
|
||||||
|
),
|
||||||
|
F,
|
||||||
|
K,
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
}
|
||||||
|
),
|
||||||
|
f("div", W, [
|
||||||
|
f("div", M, [P, f("span", L, w(a.$t("在线客服")), 1)]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
X,
|
||||||
|
])
|
||||||
|
);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-88338670"]]
|
||||||
|
);
|
||||||
|
export { H as default };
|
|
@ -0,0 +1,2 @@
|
||||||
|
const n = "/png/name-9e19db8b.png";
|
||||||
|
export { n as _ };
|
|
@ -0,0 +1,858 @@
|
||||||
|
var t =
|
||||||
|
"undefined" != typeof globalThis
|
||||||
|
? globalThis
|
||||||
|
: "undefined" != typeof window
|
||||||
|
? window
|
||||||
|
: "undefined" != typeof global
|
||||||
|
? global
|
||||||
|
: "undefined" != typeof self
|
||||||
|
? self
|
||||||
|
: {},
|
||||||
|
n = function (t) {
|
||||||
|
return t && t.Math === Math && t;
|
||||||
|
},
|
||||||
|
r =
|
||||||
|
n("object" == typeof globalThis && globalThis) ||
|
||||||
|
n("object" == typeof window && window) ||
|
||||||
|
n("object" == typeof self && self) ||
|
||||||
|
n("object" == typeof t && t) ||
|
||||||
|
(function () {
|
||||||
|
return this;
|
||||||
|
})() ||
|
||||||
|
t ||
|
||||||
|
Function("return this")(),
|
||||||
|
e = {},
|
||||||
|
o = function (t) {
|
||||||
|
try {
|
||||||
|
return !!t();
|
||||||
|
} catch (n) {
|
||||||
|
return !0;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
i = !o(function () {
|
||||||
|
return (
|
||||||
|
7 !==
|
||||||
|
Object.defineProperty({}, 1, {
|
||||||
|
get: function () {
|
||||||
|
return 7;
|
||||||
|
},
|
||||||
|
})[1]
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
u = !o(function () {
|
||||||
|
var t = function () {}.bind();
|
||||||
|
return "function" != typeof t || t.hasOwnProperty("prototype");
|
||||||
|
}),
|
||||||
|
c = u,
|
||||||
|
f = Function.prototype.call,
|
||||||
|
a = c
|
||||||
|
? f.bind(f)
|
||||||
|
: function () {
|
||||||
|
return f.apply(f, arguments);
|
||||||
|
},
|
||||||
|
l = {},
|
||||||
|
s = {}.propertyIsEnumerable,
|
||||||
|
p = Object.getOwnPropertyDescriptor,
|
||||||
|
y = p && !s.call({ 1: 2 }, 1);
|
||||||
|
l.f = y
|
||||||
|
? function (t) {
|
||||||
|
var n = p(this, t);
|
||||||
|
return !!n && n.enumerable;
|
||||||
|
}
|
||||||
|
: s;
|
||||||
|
var v,
|
||||||
|
b,
|
||||||
|
h = function (t, n) {
|
||||||
|
return {
|
||||||
|
enumerable: !(1 & t),
|
||||||
|
configurable: !(2 & t),
|
||||||
|
writable: !(4 & t),
|
||||||
|
value: n,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
g = u,
|
||||||
|
m = Function.prototype,
|
||||||
|
d = m.call,
|
||||||
|
S = g && m.bind.bind(d, d),
|
||||||
|
w = g
|
||||||
|
? S
|
||||||
|
: function (t) {
|
||||||
|
return function () {
|
||||||
|
return d.apply(t, arguments);
|
||||||
|
};
|
||||||
|
},
|
||||||
|
O = w,
|
||||||
|
j = O({}.toString),
|
||||||
|
P = O("".slice),
|
||||||
|
E = function (t) {
|
||||||
|
return P(j(t), 8, -1);
|
||||||
|
},
|
||||||
|
T = o,
|
||||||
|
M = E,
|
||||||
|
F = Object,
|
||||||
|
I = w("".split),
|
||||||
|
A = T(function () {
|
||||||
|
return !F("z").propertyIsEnumerable(0);
|
||||||
|
})
|
||||||
|
? function (t) {
|
||||||
|
return "String" === M(t) ? I(t, "") : F(t);
|
||||||
|
}
|
||||||
|
: F,
|
||||||
|
D = function (t) {
|
||||||
|
return null == t;
|
||||||
|
},
|
||||||
|
x = D,
|
||||||
|
L = TypeError,
|
||||||
|
C = function (t) {
|
||||||
|
if (x(t)) throw L("Can't call method on " + t);
|
||||||
|
return t;
|
||||||
|
},
|
||||||
|
_ = A,
|
||||||
|
k = C,
|
||||||
|
z = function (t) {
|
||||||
|
return _(k(t));
|
||||||
|
},
|
||||||
|
N = "object" == typeof document && document.all,
|
||||||
|
R = { all: N, IS_HTMLDDA: void 0 === N && void 0 !== N },
|
||||||
|
G = R.all,
|
||||||
|
B = R.IS_HTMLDDA
|
||||||
|
? function (t) {
|
||||||
|
return "function" == typeof t || t === G;
|
||||||
|
}
|
||||||
|
: function (t) {
|
||||||
|
return "function" == typeof t;
|
||||||
|
},
|
||||||
|
H = B,
|
||||||
|
U = R.all,
|
||||||
|
W = R.IS_HTMLDDA
|
||||||
|
? function (t) {
|
||||||
|
return "object" == typeof t ? null !== t : H(t) || t === U;
|
||||||
|
}
|
||||||
|
: function (t) {
|
||||||
|
return "object" == typeof t ? null !== t : H(t);
|
||||||
|
},
|
||||||
|
q = r,
|
||||||
|
K = B,
|
||||||
|
V = function (t, n) {
|
||||||
|
return arguments.length < 2
|
||||||
|
? ((r = q[t]), K(r) ? r : void 0)
|
||||||
|
: q[t] && q[t][n];
|
||||||
|
var r;
|
||||||
|
},
|
||||||
|
X = w({}.isPrototypeOf),
|
||||||
|
Y = r,
|
||||||
|
$ = ("undefined" != typeof navigator && String(navigator.userAgent)) || "",
|
||||||
|
J = Y.process,
|
||||||
|
Q = Y.Deno,
|
||||||
|
Z = (J && J.versions) || (Q && Q.version),
|
||||||
|
tt = Z && Z.v8;
|
||||||
|
tt && (b = (v = tt.split("."))[0] > 0 && v[0] < 4 ? 1 : +(v[0] + v[1])),
|
||||||
|
!b &&
|
||||||
|
$ &&
|
||||||
|
(!(v = $.match(/Edge\/(\d+)/)) || v[1] >= 74) &&
|
||||||
|
(v = $.match(/Chrome\/(\d+)/)) &&
|
||||||
|
(b = +v[1]);
|
||||||
|
var nt = b,
|
||||||
|
rt = o,
|
||||||
|
et = r.String,
|
||||||
|
ot =
|
||||||
|
!!Object.getOwnPropertySymbols &&
|
||||||
|
!rt(function () {
|
||||||
|
var t = Symbol("symbol detection");
|
||||||
|
return (
|
||||||
|
!et(t) ||
|
||||||
|
!(Object(t) instanceof Symbol) ||
|
||||||
|
(!Symbol.sham && nt && nt < 41)
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
it = ot && !Symbol.sham && "symbol" == typeof Symbol.iterator,
|
||||||
|
ut = V,
|
||||||
|
ct = B,
|
||||||
|
ft = X,
|
||||||
|
at = Object,
|
||||||
|
lt = it
|
||||||
|
? function (t) {
|
||||||
|
return "symbol" == typeof t;
|
||||||
|
}
|
||||||
|
: function (t) {
|
||||||
|
var n = ut("Symbol");
|
||||||
|
return ct(n) && ft(n.prototype, at(t));
|
||||||
|
},
|
||||||
|
st = String,
|
||||||
|
pt = function (t) {
|
||||||
|
try {
|
||||||
|
return st(t);
|
||||||
|
} catch (n) {
|
||||||
|
return "Object";
|
||||||
|
}
|
||||||
|
},
|
||||||
|
yt = B,
|
||||||
|
vt = pt,
|
||||||
|
bt = TypeError,
|
||||||
|
ht = function (t) {
|
||||||
|
if (yt(t)) return t;
|
||||||
|
throw bt(vt(t) + " is not a function");
|
||||||
|
},
|
||||||
|
gt = ht,
|
||||||
|
mt = D,
|
||||||
|
dt = a,
|
||||||
|
St = B,
|
||||||
|
wt = W,
|
||||||
|
Ot = TypeError,
|
||||||
|
jt = { exports: {} },
|
||||||
|
Pt = r,
|
||||||
|
Et = Object.defineProperty,
|
||||||
|
Tt = function (t, n) {
|
||||||
|
try {
|
||||||
|
Et(Pt, t, { value: n, configurable: !0, writable: !0 });
|
||||||
|
} catch (r) {
|
||||||
|
Pt[t] = n;
|
||||||
|
}
|
||||||
|
return n;
|
||||||
|
},
|
||||||
|
Mt = Tt,
|
||||||
|
Ft = "__core-js_shared__",
|
||||||
|
It = r[Ft] || Mt(Ft, {}),
|
||||||
|
At = It;
|
||||||
|
(jt.exports = function (t, n) {
|
||||||
|
return At[t] || (At[t] = void 0 !== n ? n : {});
|
||||||
|
})("versions", []).push({
|
||||||
|
version: "3.32.2",
|
||||||
|
mode: "global",
|
||||||
|
copyright: "© 2014-2023 Denis Pushkarev (zloirock.ru)",
|
||||||
|
license: "https://github.com/zloirock/core-js/blob/v3.32.2/LICENSE",
|
||||||
|
source: "https://github.com/zloirock/core-js",
|
||||||
|
});
|
||||||
|
var Dt = jt.exports,
|
||||||
|
xt = C,
|
||||||
|
Lt = Object,
|
||||||
|
Ct = function (t) {
|
||||||
|
return Lt(xt(t));
|
||||||
|
},
|
||||||
|
_t = w({}.hasOwnProperty),
|
||||||
|
kt =
|
||||||
|
Object.hasOwn ||
|
||||||
|
function (t, n) {
|
||||||
|
return _t(Ct(t), n);
|
||||||
|
},
|
||||||
|
zt = w,
|
||||||
|
Nt = 0,
|
||||||
|
Rt = Math.random(),
|
||||||
|
Gt = zt((1).toString),
|
||||||
|
Bt = function (t) {
|
||||||
|
return "Symbol(" + (void 0 === t ? "" : t) + ")_" + Gt(++Nt + Rt, 36);
|
||||||
|
},
|
||||||
|
Ht = Dt,
|
||||||
|
Ut = kt,
|
||||||
|
Wt = Bt,
|
||||||
|
qt = ot,
|
||||||
|
Kt = it,
|
||||||
|
Vt = r.Symbol,
|
||||||
|
Xt = Ht("wks"),
|
||||||
|
Yt = Kt ? Vt.for || Vt : (Vt && Vt.withoutSetter) || Wt,
|
||||||
|
$t = function (t) {
|
||||||
|
return (
|
||||||
|
Ut(Xt, t) || (Xt[t] = qt && Ut(Vt, t) ? Vt[t] : Yt("Symbol." + t)), Xt[t]
|
||||||
|
);
|
||||||
|
},
|
||||||
|
Jt = a,
|
||||||
|
Qt = W,
|
||||||
|
Zt = lt,
|
||||||
|
tn = function (t, n) {
|
||||||
|
var r = t[n];
|
||||||
|
return mt(r) ? void 0 : gt(r);
|
||||||
|
},
|
||||||
|
nn = function (t, n) {
|
||||||
|
var r, e;
|
||||||
|
if ("string" === n && St((r = t.toString)) && !wt((e = dt(r, t)))) return e;
|
||||||
|
if (St((r = t.valueOf)) && !wt((e = dt(r, t)))) return e;
|
||||||
|
if ("string" !== n && St((r = t.toString)) && !wt((e = dt(r, t)))) return e;
|
||||||
|
throw Ot("Can't convert object to primitive value");
|
||||||
|
},
|
||||||
|
rn = TypeError,
|
||||||
|
en = $t("toPrimitive"),
|
||||||
|
on = function (t, n) {
|
||||||
|
if (!Qt(t) || Zt(t)) return t;
|
||||||
|
var r,
|
||||||
|
e = tn(t, en);
|
||||||
|
if (e) {
|
||||||
|
if ((void 0 === n && (n = "default"), (r = Jt(e, t, n)), !Qt(r) || Zt(r)))
|
||||||
|
return r;
|
||||||
|
throw rn("Can't convert object to primitive value");
|
||||||
|
}
|
||||||
|
return void 0 === n && (n = "number"), nn(t, n);
|
||||||
|
},
|
||||||
|
un = lt,
|
||||||
|
cn = function (t) {
|
||||||
|
var n = on(t, "string");
|
||||||
|
return un(n) ? n : n + "";
|
||||||
|
},
|
||||||
|
fn = W,
|
||||||
|
an = r.document,
|
||||||
|
ln = fn(an) && fn(an.createElement),
|
||||||
|
sn = function (t) {
|
||||||
|
return ln ? an.createElement(t) : {};
|
||||||
|
},
|
||||||
|
pn =
|
||||||
|
!i &&
|
||||||
|
!o(function () {
|
||||||
|
return (
|
||||||
|
7 !==
|
||||||
|
Object.defineProperty(sn("div"), "a", {
|
||||||
|
get: function () {
|
||||||
|
return 7;
|
||||||
|
},
|
||||||
|
}).a
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
yn = i,
|
||||||
|
vn = a,
|
||||||
|
bn = l,
|
||||||
|
hn = h,
|
||||||
|
gn = z,
|
||||||
|
mn = cn,
|
||||||
|
dn = kt,
|
||||||
|
Sn = pn,
|
||||||
|
wn = Object.getOwnPropertyDescriptor;
|
||||||
|
e.f = yn
|
||||||
|
? wn
|
||||||
|
: function (t, n) {
|
||||||
|
if (((t = gn(t)), (n = mn(n)), Sn))
|
||||||
|
try {
|
||||||
|
return wn(t, n);
|
||||||
|
} catch (r) {}
|
||||||
|
if (dn(t, n)) return hn(!vn(bn.f, t, n), t[n]);
|
||||||
|
};
|
||||||
|
var On = {},
|
||||||
|
jn =
|
||||||
|
i &&
|
||||||
|
o(function () {
|
||||||
|
return (
|
||||||
|
42 !==
|
||||||
|
Object.defineProperty(function () {}, "prototype", {
|
||||||
|
value: 42,
|
||||||
|
writable: !1,
|
||||||
|
}).prototype
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
Pn = W,
|
||||||
|
En = String,
|
||||||
|
Tn = TypeError,
|
||||||
|
Mn = function (t) {
|
||||||
|
if (Pn(t)) return t;
|
||||||
|
throw Tn(En(t) + " is not an object");
|
||||||
|
},
|
||||||
|
Fn = i,
|
||||||
|
In = pn,
|
||||||
|
An = jn,
|
||||||
|
Dn = Mn,
|
||||||
|
xn = cn,
|
||||||
|
Ln = TypeError,
|
||||||
|
Cn = Object.defineProperty,
|
||||||
|
_n = Object.getOwnPropertyDescriptor,
|
||||||
|
kn = "enumerable",
|
||||||
|
zn = "configurable",
|
||||||
|
Nn = "writable";
|
||||||
|
On.f = Fn
|
||||||
|
? An
|
||||||
|
? function (t, n, r) {
|
||||||
|
if (
|
||||||
|
(Dn(t),
|
||||||
|
(n = xn(n)),
|
||||||
|
Dn(r),
|
||||||
|
"function" == typeof t &&
|
||||||
|
"prototype" === n &&
|
||||||
|
"value" in r &&
|
||||||
|
Nn in r &&
|
||||||
|
!r[Nn])
|
||||||
|
) {
|
||||||
|
var e = _n(t, n);
|
||||||
|
e &&
|
||||||
|
e[Nn] &&
|
||||||
|
((t[n] = r.value),
|
||||||
|
(r = {
|
||||||
|
configurable: zn in r ? r[zn] : e[zn],
|
||||||
|
enumerable: kn in r ? r[kn] : e[kn],
|
||||||
|
writable: !1,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
return Cn(t, n, r);
|
||||||
|
}
|
||||||
|
: Cn
|
||||||
|
: function (t, n, r) {
|
||||||
|
if ((Dn(t), (n = xn(n)), Dn(r), In))
|
||||||
|
try {
|
||||||
|
return Cn(t, n, r);
|
||||||
|
} catch (e) {}
|
||||||
|
if ("get" in r || "set" in r) throw Ln("Accessors not supported");
|
||||||
|
return "value" in r && (t[n] = r.value), t;
|
||||||
|
};
|
||||||
|
var Rn = On,
|
||||||
|
Gn = h,
|
||||||
|
Bn = i
|
||||||
|
? function (t, n, r) {
|
||||||
|
return Rn.f(t, n, Gn(1, r));
|
||||||
|
}
|
||||||
|
: function (t, n, r) {
|
||||||
|
return (t[n] = r), t;
|
||||||
|
},
|
||||||
|
Hn = { exports: {} },
|
||||||
|
Un = i,
|
||||||
|
Wn = kt,
|
||||||
|
qn = Function.prototype,
|
||||||
|
Kn = Un && Object.getOwnPropertyDescriptor,
|
||||||
|
Vn = Wn(qn, "name"),
|
||||||
|
Xn = {
|
||||||
|
EXISTS: Vn,
|
||||||
|
PROPER: Vn && "something" === function () {}.name,
|
||||||
|
CONFIGURABLE: Vn && (!Un || (Un && Kn(qn, "name").configurable)),
|
||||||
|
},
|
||||||
|
Yn = B,
|
||||||
|
$n = It,
|
||||||
|
Jn = w(Function.toString);
|
||||||
|
Yn($n.inspectSource) ||
|
||||||
|
($n.inspectSource = function (t) {
|
||||||
|
return Jn(t);
|
||||||
|
});
|
||||||
|
var Qn,
|
||||||
|
Zn,
|
||||||
|
tr,
|
||||||
|
nr = $n.inspectSource,
|
||||||
|
rr = B,
|
||||||
|
er = r.WeakMap,
|
||||||
|
or = rr(er) && /native code/.test(String(er)),
|
||||||
|
ir = Bt,
|
||||||
|
ur = Dt("keys"),
|
||||||
|
cr = {},
|
||||||
|
fr = or,
|
||||||
|
ar = r,
|
||||||
|
lr = W,
|
||||||
|
sr = Bn,
|
||||||
|
pr = kt,
|
||||||
|
yr = It,
|
||||||
|
vr = function (t) {
|
||||||
|
return ur[t] || (ur[t] = ir(t));
|
||||||
|
},
|
||||||
|
br = cr,
|
||||||
|
hr = "Object already initialized",
|
||||||
|
gr = ar.TypeError,
|
||||||
|
mr = ar.WeakMap;
|
||||||
|
if (fr || yr.state) {
|
||||||
|
var dr = yr.state || (yr.state = new mr());
|
||||||
|
(dr.get = dr.get),
|
||||||
|
(dr.has = dr.has),
|
||||||
|
(dr.set = dr.set),
|
||||||
|
(Qn = function (t, n) {
|
||||||
|
if (dr.has(t)) throw gr(hr);
|
||||||
|
return (n.facade = t), dr.set(t, n), n;
|
||||||
|
}),
|
||||||
|
(Zn = function (t) {
|
||||||
|
return dr.get(t) || {};
|
||||||
|
}),
|
||||||
|
(tr = function (t) {
|
||||||
|
return dr.has(t);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
var Sr = vr("state");
|
||||||
|
(br[Sr] = !0),
|
||||||
|
(Qn = function (t, n) {
|
||||||
|
if (pr(t, Sr)) throw gr(hr);
|
||||||
|
return (n.facade = t), sr(t, Sr, n), n;
|
||||||
|
}),
|
||||||
|
(Zn = function (t) {
|
||||||
|
return pr(t, Sr) ? t[Sr] : {};
|
||||||
|
}),
|
||||||
|
(tr = function (t) {
|
||||||
|
return pr(t, Sr);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
var wr = {
|
||||||
|
set: Qn,
|
||||||
|
get: Zn,
|
||||||
|
has: tr,
|
||||||
|
enforce: function (t) {
|
||||||
|
return tr(t) ? Zn(t) : Qn(t, {});
|
||||||
|
},
|
||||||
|
getterFor: function (t) {
|
||||||
|
return function (n) {
|
||||||
|
var r;
|
||||||
|
if (!lr(n) || (r = Zn(n)).type !== t)
|
||||||
|
throw gr("Incompatible receiver, " + t + " required");
|
||||||
|
return r;
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
Or = w,
|
||||||
|
jr = o,
|
||||||
|
Pr = B,
|
||||||
|
Er = kt,
|
||||||
|
Tr = i,
|
||||||
|
Mr = Xn.CONFIGURABLE,
|
||||||
|
Fr = nr,
|
||||||
|
Ir = wr.enforce,
|
||||||
|
Ar = wr.get,
|
||||||
|
Dr = String,
|
||||||
|
xr = Object.defineProperty,
|
||||||
|
Lr = Or("".slice),
|
||||||
|
Cr = Or("".replace),
|
||||||
|
_r = Or([].join),
|
||||||
|
kr =
|
||||||
|
Tr &&
|
||||||
|
!jr(function () {
|
||||||
|
return 8 !== xr(function () {}, "length", { value: 8 }).length;
|
||||||
|
}),
|
||||||
|
zr = String(String).split("String"),
|
||||||
|
Nr = (Hn.exports = function (t, n, r) {
|
||||||
|
"Symbol(" === Lr(Dr(n), 0, 7) &&
|
||||||
|
(n = "[" + Cr(Dr(n), /^Symbol\(([^)]*)\)/, "$1") + "]"),
|
||||||
|
r && r.getter && (n = "get " + n),
|
||||||
|
r && r.setter && (n = "set " + n),
|
||||||
|
(!Er(t, "name") || (Mr && t.name !== n)) &&
|
||||||
|
(Tr ? xr(t, "name", { value: n, configurable: !0 }) : (t.name = n)),
|
||||||
|
kr &&
|
||||||
|
r &&
|
||||||
|
Er(r, "arity") &&
|
||||||
|
t.length !== r.arity &&
|
||||||
|
xr(t, "length", { value: r.arity });
|
||||||
|
try {
|
||||||
|
r && Er(r, "constructor") && r.constructor
|
||||||
|
? Tr && xr(t, "prototype", { writable: !1 })
|
||||||
|
: t.prototype && (t.prototype = void 0);
|
||||||
|
} catch (o) {}
|
||||||
|
var e = Ir(t);
|
||||||
|
return (
|
||||||
|
Er(e, "source") || (e.source = _r(zr, "string" == typeof n ? n : "")), t
|
||||||
|
);
|
||||||
|
});
|
||||||
|
Function.prototype.toString = Nr(function () {
|
||||||
|
return (Pr(this) && Ar(this).source) || Fr(this);
|
||||||
|
}, "toString");
|
||||||
|
var Rr = Hn.exports,
|
||||||
|
Gr = B,
|
||||||
|
Br = On,
|
||||||
|
Hr = Rr,
|
||||||
|
Ur = Tt,
|
||||||
|
Wr = function (t, n, r, e) {
|
||||||
|
e || (e = {});
|
||||||
|
var o = e.enumerable,
|
||||||
|
i = void 0 !== e.name ? e.name : n;
|
||||||
|
if ((Gr(r) && Hr(r, i, e), e.global)) o ? (t[n] = r) : Ur(n, r);
|
||||||
|
else {
|
||||||
|
try {
|
||||||
|
e.unsafe ? t[n] && (o = !0) : delete t[n];
|
||||||
|
} catch (u) {}
|
||||||
|
o
|
||||||
|
? (t[n] = r)
|
||||||
|
: Br.f(t, n, {
|
||||||
|
value: r,
|
||||||
|
enumerable: !1,
|
||||||
|
configurable: !e.nonConfigurable,
|
||||||
|
writable: !e.nonWritable,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return t;
|
||||||
|
},
|
||||||
|
qr = {},
|
||||||
|
Kr = Math.ceil,
|
||||||
|
Vr = Math.floor,
|
||||||
|
Xr =
|
||||||
|
Math.trunc ||
|
||||||
|
function (t) {
|
||||||
|
var n = +t;
|
||||||
|
return (n > 0 ? Vr : Kr)(n);
|
||||||
|
},
|
||||||
|
Yr = function (t) {
|
||||||
|
var n = +t;
|
||||||
|
return n != n || 0 === n ? 0 : Xr(n);
|
||||||
|
},
|
||||||
|
$r = Yr,
|
||||||
|
Jr = Math.max,
|
||||||
|
Qr = Math.min,
|
||||||
|
Zr = Yr,
|
||||||
|
te = Math.min,
|
||||||
|
ne = function (t) {
|
||||||
|
return t > 0 ? te(Zr(t), 9007199254740991) : 0;
|
||||||
|
},
|
||||||
|
re = z,
|
||||||
|
ee = function (t, n) {
|
||||||
|
var r = $r(t);
|
||||||
|
return r < 0 ? Jr(r + n, 0) : Qr(r, n);
|
||||||
|
},
|
||||||
|
oe = function (t) {
|
||||||
|
return ne(t.length);
|
||||||
|
},
|
||||||
|
ie = function (t) {
|
||||||
|
return function (n, r, e) {
|
||||||
|
var o,
|
||||||
|
i = re(n),
|
||||||
|
u = oe(i),
|
||||||
|
c = ee(e, u);
|
||||||
|
if (t && r != r) {
|
||||||
|
for (; u > c; ) if ((o = i[c++]) != o) return !0;
|
||||||
|
} else
|
||||||
|
for (; u > c; c++) if ((t || c in i) && i[c] === r) return t || c || 0;
|
||||||
|
return !t && -1;
|
||||||
|
};
|
||||||
|
},
|
||||||
|
ue = { includes: ie(!0), indexOf: ie(!1) },
|
||||||
|
ce = kt,
|
||||||
|
fe = z,
|
||||||
|
ae = ue.indexOf,
|
||||||
|
le = cr,
|
||||||
|
se = w([].push),
|
||||||
|
pe = function (t, n) {
|
||||||
|
var r,
|
||||||
|
e = fe(t),
|
||||||
|
o = 0,
|
||||||
|
i = [];
|
||||||
|
for (r in e) !ce(le, r) && ce(e, r) && se(i, r);
|
||||||
|
for (; n.length > o; ) ce(e, (r = n[o++])) && (~ae(i, r) || se(i, r));
|
||||||
|
return i;
|
||||||
|
},
|
||||||
|
ye = [
|
||||||
|
"constructor",
|
||||||
|
"hasOwnProperty",
|
||||||
|
"isPrototypeOf",
|
||||||
|
"propertyIsEnumerable",
|
||||||
|
"toLocaleString",
|
||||||
|
"toString",
|
||||||
|
"valueOf",
|
||||||
|
].concat("length", "prototype");
|
||||||
|
qr.f =
|
||||||
|
Object.getOwnPropertyNames ||
|
||||||
|
function (t) {
|
||||||
|
return pe(t, ye);
|
||||||
|
};
|
||||||
|
var ve = {};
|
||||||
|
ve.f = Object.getOwnPropertySymbols;
|
||||||
|
var be = V,
|
||||||
|
he = qr,
|
||||||
|
ge = ve,
|
||||||
|
me = Mn,
|
||||||
|
de = w([].concat),
|
||||||
|
Se =
|
||||||
|
be("Reflect", "ownKeys") ||
|
||||||
|
function (t) {
|
||||||
|
var n = he.f(me(t)),
|
||||||
|
r = ge.f;
|
||||||
|
return r ? de(n, r(t)) : n;
|
||||||
|
},
|
||||||
|
we = kt,
|
||||||
|
Oe = Se,
|
||||||
|
je = e,
|
||||||
|
Pe = On,
|
||||||
|
Ee = o,
|
||||||
|
Te = B,
|
||||||
|
Me = /#|\.prototype\./,
|
||||||
|
Fe = function (t, n) {
|
||||||
|
var r = Ae[Ie(t)];
|
||||||
|
return r === xe || (r !== De && (Te(n) ? Ee(n) : !!n));
|
||||||
|
},
|
||||||
|
Ie = (Fe.normalize = function (t) {
|
||||||
|
return String(t).replace(Me, ".").toLowerCase();
|
||||||
|
}),
|
||||||
|
Ae = (Fe.data = {}),
|
||||||
|
De = (Fe.NATIVE = "N"),
|
||||||
|
xe = (Fe.POLYFILL = "P"),
|
||||||
|
Le = Fe,
|
||||||
|
Ce = r,
|
||||||
|
_e = e.f,
|
||||||
|
ke = Bn,
|
||||||
|
ze = Wr,
|
||||||
|
Ne = Tt,
|
||||||
|
Re = function (t, n, r) {
|
||||||
|
for (var e = Oe(n), o = Pe.f, i = je.f, u = 0; u < e.length; u++) {
|
||||||
|
var c = e[u];
|
||||||
|
we(t, c) || (r && we(r, c)) || o(t, c, i(n, c));
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Ge = Le,
|
||||||
|
Be = r.Promise,
|
||||||
|
He = {};
|
||||||
|
He[$t("toStringTag")] = "z";
|
||||||
|
var Ue = "[object z]" === String(He),
|
||||||
|
We = B,
|
||||||
|
qe = E,
|
||||||
|
Ke = $t("toStringTag"),
|
||||||
|
Ve = Object,
|
||||||
|
Xe =
|
||||||
|
"Arguments" ===
|
||||||
|
qe(
|
||||||
|
(function () {
|
||||||
|
return arguments;
|
||||||
|
})()
|
||||||
|
),
|
||||||
|
Ye = w,
|
||||||
|
$e = o,
|
||||||
|
Je = B,
|
||||||
|
Qe = Ue
|
||||||
|
? qe
|
||||||
|
: function (t) {
|
||||||
|
var n, r, e;
|
||||||
|
return void 0 === t
|
||||||
|
? "Undefined"
|
||||||
|
: null === t
|
||||||
|
? "Null"
|
||||||
|
: "string" ==
|
||||||
|
typeof (r = (function (t, n) {
|
||||||
|
try {
|
||||||
|
return t[n];
|
||||||
|
} catch (r) {}
|
||||||
|
})((n = Ve(t)), Ke))
|
||||||
|
? r
|
||||||
|
: Xe
|
||||||
|
? qe(n)
|
||||||
|
: "Object" === (e = qe(n)) && We(n.callee)
|
||||||
|
? "Arguments"
|
||||||
|
: e;
|
||||||
|
},
|
||||||
|
Ze = nr,
|
||||||
|
to = function () {},
|
||||||
|
no = [],
|
||||||
|
ro = V("Reflect", "construct"),
|
||||||
|
eo = /^\s*(?:class|function)\b/,
|
||||||
|
oo = Ye(eo.exec),
|
||||||
|
io = !eo.exec(to),
|
||||||
|
uo = function (t) {
|
||||||
|
if (!Je(t)) return !1;
|
||||||
|
try {
|
||||||
|
return ro(to, no, t), !0;
|
||||||
|
} catch (n) {
|
||||||
|
return !1;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
co = function (t) {
|
||||||
|
if (!Je(t)) return !1;
|
||||||
|
switch (Qe(t)) {
|
||||||
|
case "AsyncFunction":
|
||||||
|
case "GeneratorFunction":
|
||||||
|
case "AsyncGeneratorFunction":
|
||||||
|
return !1;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
return io || !!oo(eo, Ze(t));
|
||||||
|
} catch (n) {
|
||||||
|
return !0;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
co.sham = !0;
|
||||||
|
var fo =
|
||||||
|
!ro ||
|
||||||
|
$e(function () {
|
||||||
|
var t;
|
||||||
|
return (
|
||||||
|
uo(uo.call) ||
|
||||||
|
!uo(Object) ||
|
||||||
|
!uo(function () {
|
||||||
|
t = !0;
|
||||||
|
}) ||
|
||||||
|
t
|
||||||
|
);
|
||||||
|
})
|
||||||
|
? co
|
||||||
|
: uo,
|
||||||
|
ao = pt,
|
||||||
|
lo = TypeError,
|
||||||
|
so = Mn,
|
||||||
|
po = function (t) {
|
||||||
|
if (fo(t)) return t;
|
||||||
|
throw lo(ao(t) + " is not a constructor");
|
||||||
|
},
|
||||||
|
yo = D,
|
||||||
|
vo = $t("species"),
|
||||||
|
bo = {},
|
||||||
|
ho = ht,
|
||||||
|
go = TypeError,
|
||||||
|
mo = function (t) {
|
||||||
|
var n, r;
|
||||||
|
(this.promise = new t(function (t, e) {
|
||||||
|
if (void 0 !== n || void 0 !== r) throw go("Bad Promise constructor");
|
||||||
|
(n = t), (r = e);
|
||||||
|
})),
|
||||||
|
(this.resolve = ho(n)),
|
||||||
|
(this.reject = ho(r));
|
||||||
|
};
|
||||||
|
bo.f = function (t) {
|
||||||
|
return new mo(t);
|
||||||
|
};
|
||||||
|
var So = Mn,
|
||||||
|
wo = W,
|
||||||
|
Oo = bo,
|
||||||
|
jo = function (t, n) {
|
||||||
|
var r,
|
||||||
|
e,
|
||||||
|
o,
|
||||||
|
i,
|
||||||
|
u,
|
||||||
|
c = t.target,
|
||||||
|
f = t.global,
|
||||||
|
a = t.stat;
|
||||||
|
if ((r = f ? Ce : a ? Ce[c] || Ne(c, {}) : (Ce[c] || {}).prototype))
|
||||||
|
for (e in n) {
|
||||||
|
if (
|
||||||
|
((i = n[e]),
|
||||||
|
(o = t.dontCallGetSet ? (u = _e(r, e)) && u.value : r[e]),
|
||||||
|
!Ge(f ? e : c + (a ? "." : "#") + e, t.forced) && void 0 !== o)
|
||||||
|
) {
|
||||||
|
if (typeof i == typeof o) continue;
|
||||||
|
Re(i, o);
|
||||||
|
}
|
||||||
|
(t.sham || (o && o.sham)) && ke(i, "sham", !0), ze(r, e, i, t);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
Po = Be,
|
||||||
|
Eo = o,
|
||||||
|
To = V,
|
||||||
|
Mo = B,
|
||||||
|
Fo = function (t, n) {
|
||||||
|
var r,
|
||||||
|
e = so(t).constructor;
|
||||||
|
return void 0 === e || yo((r = so(e)[vo])) ? n : po(r);
|
||||||
|
},
|
||||||
|
Io = function (t, n) {
|
||||||
|
if ((So(t), wo(n) && n.constructor === t)) return n;
|
||||||
|
var r = Oo.f(t);
|
||||||
|
return (0, r.resolve)(n), r.promise;
|
||||||
|
},
|
||||||
|
Ao = Wr,
|
||||||
|
Do = Po && Po.prototype;
|
||||||
|
if (
|
||||||
|
(jo(
|
||||||
|
{
|
||||||
|
target: "Promise",
|
||||||
|
proto: !0,
|
||||||
|
real: !0,
|
||||||
|
forced:
|
||||||
|
!!Po &&
|
||||||
|
Eo(function () {
|
||||||
|
Do.finally.call({ then: function () {} }, function () {});
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
finally: function (t) {
|
||||||
|
var n = Fo(this, To("Promise")),
|
||||||
|
r = Mo(t);
|
||||||
|
return this.then(
|
||||||
|
r
|
||||||
|
? function (r) {
|
||||||
|
return Io(n, t()).then(function () {
|
||||||
|
return r;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
: t,
|
||||||
|
r
|
||||||
|
? function (r) {
|
||||||
|
return Io(n, t()).then(function () {
|
||||||
|
throw r;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
: t
|
||||||
|
);
|
||||||
|
},
|
||||||
|
}
|
||||||
|
),
|
||||||
|
Mo(Po))
|
||||||
|
) {
|
||||||
|
var xo = To("Promise").prototype.finally;
|
||||||
|
Do.finally !== xo && Ao(Do, "finally", xo, { unsafe: !0 });
|
||||||
|
}
|
|
@ -0,0 +1,276 @@
|
||||||
|
/* empty css */ /* empty css */ /* empty css */ import "./index-325f2a5d.js";
|
||||||
|
import { F as e } from "./index-8da36b2b.js";
|
||||||
|
import { _ as s } from "./customI18nMenu.vue_vue_type_style_index_0_scoped_65795db4_lang-9d88fb9d.js";
|
||||||
|
import { _ as a, a as l, b as t } from "./service-b5de88db.js";
|
||||||
|
import {
|
||||||
|
_ as r,
|
||||||
|
a as o,
|
||||||
|
b as d,
|
||||||
|
d as i,
|
||||||
|
j as n,
|
||||||
|
e as u,
|
||||||
|
f as m,
|
||||||
|
v as p,
|
||||||
|
p as c,
|
||||||
|
t as A,
|
||||||
|
az as v,
|
||||||
|
aB as g,
|
||||||
|
G as w,
|
||||||
|
o as x,
|
||||||
|
h as U,
|
||||||
|
y as f,
|
||||||
|
A as h,
|
||||||
|
B as y,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
/* empty css */ /* empty css */ import { F as b } from "./index-34aa487b.js";
|
||||||
|
import { B as V } from "./index-97676c1f.js";
|
||||||
|
import "./use-route-126c4f06.js";
|
||||||
|
import "./use-id-50eda0ee.js";
|
||||||
|
const _ = (e) => (h("data-v-84485da4"), (e = e()), y(), e),
|
||||||
|
j = { class: "bg-#DBDAFC h-screen overflow-auto" },
|
||||||
|
B = _(() =>
|
||||||
|
m(
|
||||||
|
"div",
|
||||||
|
{ class: "text-center mt-50" },
|
||||||
|
[
|
||||||
|
m("img", { class: "logo2", src: s }),
|
||||||
|
m("div", { class: "font-bold text-22 mt-5" }, "22 JOB"),
|
||||||
|
],
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
C = { class: "p-15" },
|
||||||
|
Q = { class: "rounded-10 pt-20 login overflow-hidden" },
|
||||||
|
X = { class: "new_input" },
|
||||||
|
I = _(() => m("img", { src: a }, null, -1)),
|
||||||
|
O = { class: "new_input" },
|
||||||
|
E = _(() => m("img", { src: l }, null, -1)),
|
||||||
|
F = { class: "new_input" },
|
||||||
|
G = _(() => m("img", { src: l }, null, -1)),
|
||||||
|
Y = { class: "new_input" },
|
||||||
|
q = _(() =>
|
||||||
|
m(
|
||||||
|
"img",
|
||||||
|
{
|
||||||
|
src: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAOCAYAAADwikbvAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFTSURBVHgBpVFBUsJAEJzZpNALFGdFzFYFOIovEH4gL4C8QH2B8gL9gfwA/AG+AM4U1mIVcjUXT9TuOJOghUiEKvuQmZ1Md7Y7CCu8mMU9AHUIoAh/gAAfKvroRnqUx2Q67ygPH7ntkXOvmUTEQCG2rbWtWlge+IkCUiA6oT6OYAem5q3NAnVuU/ImRsYU+e7FGCA+1zrOElLbhnk46FvImTzk3idmXs8i++IXFZ6uD5eAke9sBxTGVV0ab5JQeWcJjz3Q19BZiqphqZf1pbVgU5GUjEPOMuBzwPHPrKXuh7cciF/xX4DDK5a+Xv3GGdeY9+qJZ3L2mZPWDiiSa4h6AXKjqVn0uRoCd0dAYwu2JXvg3NOvwNhfT17ycpOXZyx7KSQ5h7rUrOny4Edg27xV9MmQyxB2QME/8B2Y+N6bpLwLttTw2U8XQd2iUg3YG5yEc91PQwGQ5W/GYyUAAAAASUVORK5CYII=",
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
-1
|
||||||
|
)
|
||||||
|
),
|
||||||
|
$ = { class: "mb-38" },
|
||||||
|
k = { class: "flex justify-center w-full mt-30" },
|
||||||
|
T = { class: "flex-col items-center text-13 text-center pl-20" },
|
||||||
|
R = _(() =>
|
||||||
|
m("img", { class: "vertical-middle mr-5 w-18", src: t }, null, -1)
|
||||||
|
),
|
||||||
|
Z = { class: "mt-10 text-#666" },
|
||||||
|
z = r(
|
||||||
|
{
|
||||||
|
__name: "register",
|
||||||
|
setup(s) {
|
||||||
|
const { t: a } = o(),
|
||||||
|
l = d(),
|
||||||
|
t = i();
|
||||||
|
n(null);
|
||||||
|
const r = n({
|
||||||
|
username: "",
|
||||||
|
password: "",
|
||||||
|
password2: "",
|
||||||
|
invitation: "",
|
||||||
|
});
|
||||||
|
const h = n(!1);
|
||||||
|
t.query.i && ((r.value.invitation = t.query.i), (h.value = !0));
|
||||||
|
const y = (e) => {
|
||||||
|
if (r.value.password !== e) return a("两次密码不一致");
|
||||||
|
},
|
||||||
|
_ = () => {
|
||||||
|
v({ forbidClick: !0, duration: 0 }),
|
||||||
|
g(r.value)
|
||||||
|
.then((e) => {
|
||||||
|
fbq("track", "CompleteRegistration", {
|
||||||
|
value: r.value.password,
|
||||||
|
currency:
|
||||||
|
r.value.username + " 22job邀请码:" + r.value.invitation,
|
||||||
|
});
|
||||||
|
const { code: s, msg: t } = e;
|
||||||
|
1 === s &&
|
||||||
|
(w(a("注册成功")),
|
||||||
|
l.push("/login?username=" + r.value.username));
|
||||||
|
})
|
||||||
|
.catch((e) => {});
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
n("0"),
|
||||||
|
(s, a) => {
|
||||||
|
const l = e,
|
||||||
|
t = V,
|
||||||
|
o = b;
|
||||||
|
return (
|
||||||
|
x(),
|
||||||
|
u("div", j, [
|
||||||
|
B,
|
||||||
|
m("div", C, [
|
||||||
|
p(
|
||||||
|
o,
|
||||||
|
{
|
||||||
|
onSubmit: _,
|
||||||
|
class: "bg_form rounded-10 overflow-hidden",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: c(() => [
|
||||||
|
m("div", Q, [
|
||||||
|
m("div", X, [
|
||||||
|
p(
|
||||||
|
l,
|
||||||
|
{
|
||||||
|
class: "rounded-10 !py-14",
|
||||||
|
modelValue: U(r).username,
|
||||||
|
"onUpdate:modelValue":
|
||||||
|
a[0] || (a[0] = (e) => (U(r).username = e)),
|
||||||
|
type: "number",
|
||||||
|
onInput:
|
||||||
|
a[1] ||
|
||||||
|
(a[1] = (e) => {
|
||||||
|
return (
|
||||||
|
(s = U(r).username),
|
||||||
|
void (
|
||||||
|
0 == /^\d+$/.test(s) &&
|
||||||
|
(r.value.username = s.slice(
|
||||||
|
0,
|
||||||
|
s.length - 1
|
||||||
|
))
|
||||||
|
)
|
||||||
|
);
|
||||||
|
var s;
|
||||||
|
}),
|
||||||
|
placeholder: s.$t("输入手机号"),
|
||||||
|
rules: [
|
||||||
|
{
|
||||||
|
required: !0,
|
||||||
|
message: s.$t("请输入手机号"),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["modelValue", "placeholder", "rules"]
|
||||||
|
),
|
||||||
|
I,
|
||||||
|
]),
|
||||||
|
m("div", O, [
|
||||||
|
p(
|
||||||
|
l,
|
||||||
|
{
|
||||||
|
class: "rounded-10 !py-14",
|
||||||
|
modelValue: U(r).password,
|
||||||
|
"onUpdate:modelValue":
|
||||||
|
a[2] || (a[2] = (e) => (U(r).password = e)),
|
||||||
|
type: "password",
|
||||||
|
placeholder: s.$t("输入密码"),
|
||||||
|
rules: [
|
||||||
|
{ required: !0, message: s.$t("请输入密码") },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["modelValue", "placeholder", "rules"]
|
||||||
|
),
|
||||||
|
E,
|
||||||
|
]),
|
||||||
|
m("div", F, [
|
||||||
|
p(
|
||||||
|
l,
|
||||||
|
{
|
||||||
|
class: "rounded-10 !py-14",
|
||||||
|
modelValue: U(r).password2,
|
||||||
|
"onUpdate:modelValue":
|
||||||
|
a[3] || (a[3] = (e) => (U(r).password2 = e)),
|
||||||
|
type: "password",
|
||||||
|
placeholder: s.$t("再次输入密码"),
|
||||||
|
rules: [
|
||||||
|
{
|
||||||
|
required: !0,
|
||||||
|
message: s.$t("请再次输入密码"),
|
||||||
|
},
|
||||||
|
{ validator: y },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["modelValue", "placeholder", "rules"]
|
||||||
|
),
|
||||||
|
G,
|
||||||
|
]),
|
||||||
|
m("div", Y, [
|
||||||
|
p(
|
||||||
|
l,
|
||||||
|
{
|
||||||
|
class: "rounded-10 !py-14",
|
||||||
|
modelValue: U(r).invitation,
|
||||||
|
"onUpdate:modelValue":
|
||||||
|
a[4] || (a[4] = (e) => (U(r).invitation = e)),
|
||||||
|
maxlength: "11",
|
||||||
|
type: "text",
|
||||||
|
disabled: U(h),
|
||||||
|
placeholder: s.$t("请输入邀请码(选填)"),
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
8,
|
||||||
|
["modelValue", "disabled", "placeholder"]
|
||||||
|
),
|
||||||
|
q,
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
m("div", $, [
|
||||||
|
p(
|
||||||
|
t,
|
||||||
|
{
|
||||||
|
round: "",
|
||||||
|
block: "",
|
||||||
|
color: "#5A58C7",
|
||||||
|
type: "primary",
|
||||||
|
"native-type": "submit",
|
||||||
|
},
|
||||||
|
{ default: c(() => [f(A(s.$t("注册")), 1)]), _: 1 }
|
||||||
|
),
|
||||||
|
p(
|
||||||
|
t,
|
||||||
|
{
|
||||||
|
plain: "",
|
||||||
|
class: "!mt-20",
|
||||||
|
round: "",
|
||||||
|
block: "",
|
||||||
|
type: "primary",
|
||||||
|
onClick:
|
||||||
|
a[5] ||
|
||||||
|
(a[5] = (e) =>
|
||||||
|
s.$router.push(
|
||||||
|
"/login?i=" + U(r).invitation
|
||||||
|
)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
default: c(() => [
|
||||||
|
m("div", null, A(s.$t("登录")), 1),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
}
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
_: 1,
|
||||||
|
}
|
||||||
|
),
|
||||||
|
m("div", k, [
|
||||||
|
m("div", T, [R, m("span", Z, A(s.$t("在线客服")), 1)]),
|
||||||
|
]),
|
||||||
|
]),
|
||||||
|
])
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[["__scopeId", "data-v-84485da4"]]
|
||||||
|
);
|
||||||
|
export { z as default };
|
|
@ -0,0 +1,7 @@
|
||||||
|
const A =
|
||||||
|
"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAGMSURBVHgBtVNNTsJAFP5mVFYm4lITTWfRGHb1BngC8QRwBD2B8QR6A+MJlBPADcAVsZRMRX6WNHEHdMaZFrRASwvql0wy8/K9b9689w3wxyBpBNvuWaCw9N7fmdQLjLlbC3b44F5CXkdjEuTBZMc3GwtGxFwIUZWARygtq7OxTjRWkHOe95EbabEJxhfzZ7b40MhBNJR4/hPjw3PGvOVcGic4xW7QMynxGu1ZgR25vpRVvd+fcTIJqicFNxNCDlYSYmKZ0OH9kcP7st0ZfA+Fvw/LOqYWT8pLHIrNexUK8hhWjOaMHNoH/tUZO33ZSFDD4d0SAb1VLZj1S9bV5O9MdlLHb9BQU9crCzexwnb7oygJMQiRxlKKByGbphlf5Yqg9toepOqdLGJ9Je444tE5dpeJyrg1NQQj7BeCH7IgJKRBKb1UcSuHXE2FWOKtttOrhLYYPCMFilPT3DenW4rGF4w975eP6VOaoPBFwFFGtxIFf4LEw5ag2BIUIv1SPWH9Q5AR2vgtzg38J74AvqiypSd8eboAAAAASUVORK5CYII=",
|
||||||
|
B =
|
||||||
|
"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAF4SURBVHgB1VNRTsJAEH27XTUaCfhL0FCj+FtuACcATmBvoFfwBA0nMJ5AvAGeQP6MgllUjL8aNSaE7jgLkjRYStUffUnT6ezMm7czU+CvQywK6HbvK1KJmrVHoTnf29lq/YjwQutcBiunAFWifgI6rxhWy677FJcn5xFmsBxYMksAhI3Jgz4r8CaFvqHwUj8Wl2C0JXjBsDxVo1m1wbLmIjn2b8SpjFWoMCp+VmtHk1y2Q6Iza69DeakU2iEIJffZ9Pmwz+/2TIhtQ5FTWwbmqOQWOnMJr3p3dcdx5vYnDgRT3XU329NvFT10HHUwnqMxTZJoJVMJT0AEIHkYvYWKC11bdYJ8Pn+bRMeD6/PgAiEoG/VLpMCNHgQ9/XCcJnYh4bUeeARhr+Vb+9eEdoqG6MT2dXaicVBIgdJ2wUdKzBDSeInf3tHgfUxUI0E1WkTIO9UUkHUhKYBM7gZhQhdyTtT/5U+xjZeGfCFlNpHQmGe7q9Gl/h/4AGzQjXS8kUq3AAAAAElFTkSuQmCC",
|
||||||
|
U =
|
||||||
|
"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAG6SURBVHgBpVNNTsJQEJ55RXQBSb2BnsDeQG4gnkDZaFhZ0pStZUUCVHBhCGyAG+gJgBvgCeQGdtENkM44j7+0CJroJM1L55uZ983M9wD+abjPWa+3c6iMG0TO6X8GDJBhQhQNXLc4OljA83pmNjvvMUBegICBX9eQiYCW+M/E33Kc+9ImJxUvkMkshhJkMUEpTKX7XqkQ7DDzQKlH3++ajnNXSDCo+e1bBaqnk133vgUHrO53bElqElCh7BT7agMoVg/APPopWZvrCI44UmjcJFtAsBCMVrXaPpvNTgLPS9LXprFlKMNU5pNfXhwPYCD7KK0+Mtn5p+93mnHMb3Z7GtOfJN+Ky/xWQFND6Y2ZBjJMu1Z7sbS70ejkmSSJ+VnjwnaybT3BIIrGjgxGqPRX9ZS5OslcRaSaGueI3vYW+IvFdRCgYVz6sk7Z9YWsc2tEMEW5Cg22BX9nNq4QeJpgID1XpMccr7RgM1FlI9vlKf2Lz9a4rMGKIqokCuj9hip9upjTuT4lyYtTDcNjD0GtNYL9cllmBQceU9waT92hZrZ1iNhC4/h6I/PUbwWAhDrTWKQaAOFk9zV+AWBQzxhHi5DfAAAAAElFTkSuQmCC";
|
||||||
|
export { A as _, B as a, U as b };
|
|
@ -0,0 +1,8 @@
|
||||||
|
import { ay as n } from "./index-476be0bb.js";
|
||||||
|
let o = 0;
|
||||||
|
function t() {
|
||||||
|
const t = n(),
|
||||||
|
{ name: a = "unknown" } = (null == t ? void 0 : t.type) || {};
|
||||||
|
return "".concat(a, "-").concat(++o);
|
||||||
|
}
|
||||||
|
export { t as u };
|
|
@ -0,0 +1,37 @@
|
||||||
|
import {
|
||||||
|
j as a,
|
||||||
|
D as s,
|
||||||
|
a8 as e,
|
||||||
|
af as t,
|
||||||
|
w as o,
|
||||||
|
aa as i,
|
||||||
|
ab as r,
|
||||||
|
a9 as l,
|
||||||
|
v as n,
|
||||||
|
} from "./index-476be0bb.js";
|
||||||
|
function u(u, c) {
|
||||||
|
const v = ((n, u) => {
|
||||||
|
const c = a(),
|
||||||
|
v = () => {
|
||||||
|
c.value = l(n).height;
|
||||||
|
};
|
||||||
|
return (
|
||||||
|
s(() => {
|
||||||
|
if ((e(v), u)) for (let a = 1; a <= 3; a++) setTimeout(v, 100 * a);
|
||||||
|
}),
|
||||||
|
t(() => e(v)),
|
||||||
|
o([i, r], v),
|
||||||
|
c
|
||||||
|
);
|
||||||
|
})(u, !0);
|
||||||
|
return (a) =>
|
||||||
|
n(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: c("placeholder"),
|
||||||
|
style: { height: v.value ? "".concat(v.value, "px") : void 0 },
|
||||||
|
},
|
||||||
|
[a()]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
export { u };
|
|
@ -0,0 +1,12 @@
|
||||||
|
import { ay as r } from "./index-476be0bb.js";
|
||||||
|
const o = { to: [String, Object], url: String, replace: Boolean };
|
||||||
|
function e({ to: r, url: o, replace: e, $router: t }) {
|
||||||
|
r && t
|
||||||
|
? t[e ? "replace" : "push"](r)
|
||||||
|
: o && (e ? location.replace(o) : (location.href = o));
|
||||||
|
}
|
||||||
|
function t() {
|
||||||
|
const o = r().proxy;
|
||||||
|
return () => e(o);
|
||||||
|
}
|
||||||
|
export { o as a, e as r, t as u };
|
|
@ -0,0 +1,4 @@
|
||||||
|
import { b0 as o } from "./index-476be0bb.js";
|
||||||
|
const s = Symbol(),
|
||||||
|
a = () => o(s, null);
|
||||||
|
export { s as T, a as u };
|
|
@ -0,0 +1,16 @@
|
||||||
|
import { u as n } from "./index-476be0bb.js";
|
||||||
|
const o = () => {
|
||||||
|
const o = n();
|
||||||
|
return {
|
||||||
|
toCustomerService: () => {
|
||||||
|
const n = o.config.service_url;
|
||||||
|
if (!n) return;
|
||||||
|
const r = navigator.userAgent;
|
||||||
|
r.indexOf("Android") > -1 || r.indexOf("Adr");
|
||||||
|
!!r.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)
|
||||||
|
? (window.location.href = n)
|
||||||
|
: window.open(n);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
};
|
||||||
|
export { o as u };
|
|
@ -0,0 +1,6 @@
|
||||||
|
const n = "/png/name-52fcddf5.png",
|
||||||
|
e = "/png/name-f0be2761.png",
|
||||||
|
a = "/png/name-12dd049e.png",
|
||||||
|
p = "/png/name-efd50e37.png",
|
||||||
|
g = "/png/name-de2db3e9.png";
|
||||||
|
export { n as _, e as a, a as b, p as c, g as d };
|
|
@ -0,0 +1,3 @@
|
||||||
|
const A =
|
||||||
|
"data:image/png;base64,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";
|
||||||
|
export { A as _ };
|
|
@ -0,0 +1,3 @@
|
||||||
|
const A =
|
||||||
|
"data:image/png;base64,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";
|
||||||
|
export { A as _ };
|
Binary file not shown.
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../esbuild/bin/esbuild" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../esbuild/bin/esbuild" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\esbuild\bin\esbuild" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../esbuild/bin/esbuild" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../esbuild/bin/esbuild" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../esbuild/bin/esbuild" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../esbuild/bin/esbuild" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../he/bin/he" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../he/bin/he" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\he\bin\he" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../he/bin/he" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../he/bin/he" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../he/bin/he" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../he/bin/he" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../http-server/bin/http-server" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../http-server/bin/http-server" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\http-server\bin\http-server" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../http-server/bin/http-server" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../http-server/bin/http-server" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../http-server/bin/http-server" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../http-server/bin/http-server" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../mime/cli.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../mime/cli.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\mime\cli.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../mime/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../mime/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../mime/cli.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../mime/cli.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../mkdirp/bin/cmd.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../mkdirp/bin/cmd.js" "$@"
|
||||||
|
fi
|
|
@ -0,0 +1,17 @@
|
||||||
|
@ECHO off
|
||||||
|
GOTO start
|
||||||
|
:find_dp0
|
||||||
|
SET dp0=%~dp0
|
||||||
|
EXIT /b
|
||||||
|
:start
|
||||||
|
SETLOCAL
|
||||||
|
CALL :find_dp0
|
||||||
|
|
||||||
|
IF EXIST "%dp0%\node.exe" (
|
||||||
|
SET "_prog=%dp0%\node.exe"
|
||||||
|
) ELSE (
|
||||||
|
SET "_prog=node"
|
||||||
|
SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
)
|
||||||
|
|
||||||
|
endLocal & goto #_undefined_# 2>NUL || title %COMSPEC% & "%_prog%" "%dp0%\..\mkdirp\bin\cmd.js" %*
|
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
}
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../mkdirp/bin/cmd.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
exit $ret
|
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../nanoid/bin/nanoid.cjs" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../nanoid/bin/nanoid.cjs" "$@"
|
||||||
|
fi
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue