Files
medical-mall/pages/mall/admin/app/mobile/config/index.uvue
2026-03-18 08:36:49 +08:00

71 lines
1.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<view class="admin-page">
<view class="admin-card content-card">
<view class="tabs-row">
<view class="tab-item active">APP配置</view>
</view>
<view class="config-form">
<view class="form-item">
<text class="label">APPID</text>
<input class="form-input" value="wx277a269f3d736d67" />
<text class="tip">微信开放平台申请移动应用后给予的APPID</text>
</view>
<view class="form-item">
<text class="label">AppSecret</text>
<input class="form-input" value="bd08741a055c2ecac5826ff1c048464b" />
<text class="tip">微信开放平台申请移动应用后给予的AppSecret</text>
</view>
<view class="form-btns">
<button class="btn primary">提交</button>
</view>
</view>
</view>
</view>
</template>
<script setup lang="uts">
// APP配置逻辑
</script>
<style scoped>
.config-form {
padding: 40px 10%;
}
.form-item {
margin-bottom: 30px;
display: flex;
flex-direction: column;
}
.form-item .label {
font-weight: bold;
margin-bottom: 10px;
color: #303133;
}
.form-input {
border: 1px solid #dcdfe6;
padding: 10px 15px;
border-radius: 4px;
}
.tip {
font-size: 12px;
color: #909399;
margin-top: 8px;
}
.form-btns {
margin-top: 50px;
}
.btn.primary {
width: 80px;
background-color: #2d8cf0;
color: #fff;
}
</style>