|
|
@@ -105,6 +105,20 @@
|
|
|
{{ t('Ib.Index.Copy') }}
|
|
|
</button>
|
|
|
</view>
|
|
|
+
|
|
|
+ <view class="account-adjust-notes-panel">
|
|
|
+ <view class="account-adjust-notes-section">
|
|
|
+ <view class="account-adjust-notes-title">
|
|
|
+ <cwg-icon name="icon_about us" color="#333" :size="18" class="account-adjust-notes-title-icon" />
|
|
|
+ <text class="account-adjust-notes-title-text">{{ t('Ib.Custom.AccountAdjustNotesSection1Title') }}</text>
|
|
|
+ </view>
|
|
|
+ <view class="account-adjust-notes-list">
|
|
|
+ <view class="account-adjust-notes-item">{{ t('Ib.Custom.AccountAdjustNotesSection1Item1') }}</view>
|
|
|
+ <view class="account-adjust-notes-item">{{ t('Ib.Custom.AccountAdjustNotesSection1Item2') }}</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
</view>
|
|
|
</view>
|
|
|
</cwg-popup>
|
|
|
@@ -593,10 +607,10 @@
|
|
|
align-items: center;
|
|
|
color: #fff;
|
|
|
padding: 0 px2rpx(10);
|
|
|
- background-color: #ffde02;
|
|
|
+ background-color: var(--color-error);
|
|
|
font-size: px2rpx(16);
|
|
|
font-weight: bold;
|
|
|
- line-height: px2rpx(26);
|
|
|
+ line-height: px2rpx(36);
|
|
|
border-radius: px2rpx(5);
|
|
|
}
|
|
|
}
|
|
|
@@ -690,8 +704,63 @@
|
|
|
align-items: center;
|
|
|
padding: px2rpx(20) 0;
|
|
|
|
|
|
- .qr-code-btn {
|
|
|
- margin-top: px2rpx(16);
|
|
|
+ .qr-code-btn {
|
|
|
+ margin-top: px2rpx(16);
|
|
|
+ }
|
|
|
+}
|
|
|
+.account-adjust-notes-panel {
|
|
|
+ margin-bottom: 18px;
|
|
|
+ padding: 14px 16px;
|
|
|
+ text-align: left;
|
|
|
+ background: #f5f7fa;
|
|
|
+ border: 1px solid #e4e7ed;
|
|
|
+ border-radius: 8px;
|
|
|
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
|
|
|
+}
|
|
|
+
|
|
|
+.account-adjust-notes-section {
|
|
|
+ & + .account-adjust-notes-section {
|
|
|
+ margin-top: 14px;
|
|
|
+ padding-top: 14px;
|
|
|
+ border-top: 1px dashed #dcdfe6;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.account-adjust-notes-title {
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-start;
|
|
|
+ gap: 8px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ line-height: 1.45;
|
|
|
+}
|
|
|
+
|
|
|
+.account-adjust-notes-title-icon {
|
|
|
+ flex-shrink: 0;
|
|
|
+ margin-top: 0px;
|
|
|
+ font-size: 15px;
|
|
|
+ color: #909399;
|
|
|
+}
|
|
|
+
|
|
|
+.account-adjust-notes-title-text {
|
|
|
+ font-size: 13px;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #303133;
|
|
|
+}
|
|
|
+
|
|
|
+.account-adjust-notes-list {
|
|
|
+ margin: 0;
|
|
|
+ padding-inline-start: 1.35em;
|
|
|
+ color: #606266;
|
|
|
+ font-size: 13px;
|
|
|
+ line-height: 1.65;
|
|
|
+
|
|
|
+ li {
|
|
|
+ margin-bottom: 8px;
|
|
|
+ padding-inline-start: 2px;
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ margin-bottom: 0;
|
|
|
}
|
|
|
}
|
|
|
+}
|
|
|
</style>
|