| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <template>
- <cwg-popup :title="'账户昵称'" :visible="props.visible" :showFooter="false"
- @update:visible="$emit('update:visible', $event)">
- <view class="popup-content">
- <text class="account-number">{{ accountLabel }} {{ account.login }}</text>
- <text class="account-hint">{{ hint }}</text>
- <view class="form-item">
- <view class="input-label">账户昵称</view>
- <input class="input-field" v-model="nickName" :maxlength="36" :placeholder="placeholder"
- @input="onInput" />
- <text class="input-hint">{{ constraint }}</text>
- </view>
- <view class="save-btn">
- <view class="btn primary" @click="save" :disabled="!isValid || !nickName.trim()" v-t="'Btn.Save'" />
- </view>
- </view>
- </cwg-popup>
- </template>
- <script setup>
- import { ref, computed, onMounted } from 'vue'
- import { customApi } from '@/service/custom';
- import { useI18n } from 'vue-i18n'
- const { t, locale } = useI18n()
- const props = defineProps({
- visible: { type: Boolean, default: false },
- // 账户编号
- account: { type: Object, default: {} },
- // 标题
- title: { type: String, default: '账户昵称' },
- // 账户标签前缀
- accountLabel: { type: String, default: '账户: #' },
- // 提示文字
- hint: { type: String, default: '为账户定制名称,以便快速查找。' },
- // 输入框占位符
- placeholder: { type: String, default: '为账户定制名称,以便快速查找。' },
- // 特殊字符限制说明
- constraint: { type: String, default: '昵称不可包含特殊字符:< > " \' & ? ^ * # @' }
- })
- const emit = defineEmits(['update:visible', 'save'])
- const nickName = ref(props.account.nickName)
- // 特殊字符正则
- const specialCharsRegex = /[<>"\'&?^*#@]/
- // 校验昵称是否合法
- const isValid = computed(() => {
- if (!nickName.value) return false
- return !specialCharsRegex.test(nickName.value)
- })
- // 输入时实时校验(可选,可去掉)
- const onInput = (e) => {
- // 实时过滤非法字符(也可以只是校验)
- }
- // 保存昵称
- const save = async () => {
- if (!isValid.value) {
- uni.showToast({
- title: '昵称包含非法字符,请重新输入',
- icon: 'none'
- })
- return
- }
- const nickname = nickName.value.trim()
- if (!nickname) {
- uni.showToast({
- title: '昵称不能为空',
- icon: 'none'
- })
- return
- }
- const res = await customApi.updateNick({ nickName: nickname, login: props.account.login })
- if (res.code == 200) {
- emit('update:visible', false)
- emit('save', nickname)
- }
- }
- </script>
- <style scoped lang="scss">
- @import "@/uni.scss";
- @media (min-width: 768px) {
- :deep(.cwg-dialog) {
- background-color: var(--color-white);
- border-radius: px2rpx(8);
- width: px2rpx(480) !important;
- }
- }
- .popup-content {
- padding: px2rpx(16);
- }
- .account-number {
- display: block;
- font-size: px2rpx(14);
- color: #141d22;
- margin-bottom: px2rpx(40);
- }
- .account-hint {
- display: block;
- font-size: px2rpx(13);
- color: #141d22;
- margin-bottom: px2rpx(40);
- }
- .form-item {
- margin-bottom: px2rpx(20);
- }
- .input-label {
- font-size: px2rpx(12);
- color: #141d22;
- margin-bottom: px2rpx(4);
- }
- .input-field {
- width: 100%;
- height: px2rpx(40);
- border: 1px solid #ddd;
- border-radius: px2rpx(6);
- padding: 0 px2rpx(12);
- font-size: px2rpx(14);
- box-sizing: border-box;
- }
- .input-hint {
- display: block;
- font-size: px2rpx(11);
- color: #999;
- margin-top: px2rpx(6);
- line-height: 1.4;
- }
- .save-btn {
- width: 100%;
- height: px2rpx(40);
- color: #fff;
- border-radius: px2rpx(8);
- font-size: px2rpx(16);
- font-weight: 500;
- display: flex;
- justify-content: flex-end;
- border: none;
- .btn {
- background: transparent;
- border: 1px solid rgba(108, 133, 149, 0);
- border-radius: px2rpx(8);
- padding: px2rpx(8) px2rpx(20);
- font-size: px2rpx(14);
- color: #2e3a47;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- gap: px2rpx(8);
- cursor: pointer;
- transition: all 0.2s;
- height: px2rpx(40);
- box-sizing: border-box;
- background-color: rgba(108, 133, 149, 0.08);
- &.primary {
- background-color: var(--color-navy-700);
- color: #fff;
- svg {
- stroke: #fff;
- }
- &:hover {
- background-color: var(--color-navy-600);
- }
- }
- }
- }
- </style>
|