mirror of
https://gitee.com/niucloud-team/niucloud.git
synced 2025-12-14 18:42:49 +00:00
62 lines
1.9 KiB
Vue
62 lines
1.9 KiB
Vue
<template>
|
|
<view class="mt-[80rpx] px-[60rpx]">
|
|
<view class="font-bold text-xl mb-[80rpx]">{{t('developTitle')}}</view>
|
|
<view class="mb-[40rpx] flex flex-col">
|
|
<text class="mb-[10rpx]">{{ t('baseUrl') }}</text>
|
|
<text class="text-sm">{{formData.baseUrl}}</text>
|
|
</view>
|
|
<view class="mb-[40rpx] flex flex-col">
|
|
<text class="mb-[10rpx]">{{ t('imgUrl') }}</text>
|
|
<text class="text-sm">{{formData.imgUrl}}</text>
|
|
</view>
|
|
<view class="mb-[40rpx] flex flex-col">
|
|
<text class="mb-[20rpx]">{{ t('siteId') }}</text>
|
|
<u-input v-model="formData.siteId" clearable :placeholder="t('siteIdPlaceholder')" />
|
|
</view>
|
|
<u-button type="primary" @click="save" class="mt-[80rpx]">
|
|
{{ t('confirm') }}
|
|
</u-button>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, reactive, computed } from 'vue'
|
|
import { img, redirect, getSiteId } from '@/utils/common'
|
|
import { t } from '@/locale'
|
|
import manifestJson from '@/manifest.json'
|
|
|
|
const formData = reactive({
|
|
siteId: '',
|
|
baseUrl: import.meta.env.VITE_APP_BASE_URL || `${location.origin}/api/`,
|
|
imgUrl: import.meta.env.VITE_IMG_DOMAIN
|
|
})
|
|
|
|
const save = () => {
|
|
if (formData.siteId.length == 0) {
|
|
uni.showToast({ title: t('siteIdPlaceholder'), icon: 'none' });
|
|
return;
|
|
}
|
|
var reg = /^[0-9]+$/;
|
|
if (!reg.test(formData.siteId)) {
|
|
uni.showToast({ title: t('pleaseEnterNumber'), icon: 'none' });
|
|
return;
|
|
}
|
|
if (formData.siteId > 9999999) {
|
|
uni.showToast({ title: t('maximumCannotExceed') + '9999999', icon: 'none' });
|
|
return;
|
|
}
|
|
|
|
uni.setStorageSync('wap_site_id', formData.siteId);
|
|
|
|
let url = uni.getStorageSync('develop_before_path') || '/pages/index/index';
|
|
if (url == '/pages/index/develop') url = '/pages/index/index';
|
|
url = url.replace('/','')
|
|
|
|
uni.removeStorageSync('develop_before_path');
|
|
|
|
// 跳转到之前的页面
|
|
location.href = `${location.origin}${manifestJson.h5.router.base}${url}`
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style> |