fix: 修改bug
This commit is contained in:
parent
d76aa3f65c
commit
c43e5a162a
Binary file not shown.
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 37 KiB |
Binary file not shown.
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 37 KiB |
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
|
@ -131,8 +131,10 @@ import { message } from 'ant-design-vue'
|
|||
|
||||
import { applicationInfo, bindAccount } from '@/api/bind'
|
||||
import { code, authLogin, userDetail } from '@/api/login'
|
||||
import { useSystem } from '@/store/system'
|
||||
|
||||
const useForm = Form.useForm
|
||||
const useForm = Form.useForm;
|
||||
const systemStore = useSystem();
|
||||
|
||||
interface formData {
|
||||
username: string;
|
||||
|
@ -290,9 +292,12 @@ const goRedirect = () => {
|
|||
}
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
getAppInfo()
|
||||
getCode()
|
||||
getDetail()
|
||||
systemStore.getFront()
|
||||
})
|
||||
|
||||
</script>
|
||||
|
||||
|
|
|
@ -164,7 +164,7 @@
|
|||
<h1>1.概述</h1>
|
||||
<div>配置成功后,平台用户可以在微信小程序中授权登录<span>物联网平台</span></div>
|
||||
<div class="image">
|
||||
<j-image width="100%" :src="img3" />
|
||||
<j-image width="100%" :src="img6" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -182,6 +182,7 @@ const img2 = getImage('/apply/2.png');
|
|||
const img3 = getImage('/apply/3.png');
|
||||
const img4 = getImage('/apply/4.png');
|
||||
const img5 = getImage('/apply/5.png');
|
||||
const img6 = getImage('/apply/6.png');
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
|
|
|
@ -152,6 +152,7 @@ const filterPath = (path: object, filterArr: string[]) => {
|
|||
|
||||
<style lang="less">
|
||||
.left-tree-container {
|
||||
min-height: 200px;
|
||||
.ant-tree-list {
|
||||
.ant-tree-list-holder-inner {
|
||||
.ant-tree-switcher-noop {
|
||||
|
|
|
@ -186,7 +186,7 @@ const columns = [
|
|||
type: 'select',
|
||||
options: [
|
||||
{
|
||||
label: '启用',
|
||||
label: '正常',
|
||||
value: 1,
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue