Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
a00800f8
Commit
a00800f8
authored
May 20, 2022
by
sunhongwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加cms
parent
6dff9853
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
180 additions
and
0 deletions
+180
-0
index.vue
src/views/cms/archives/index.vue
+15
-0
index.vue
src/views/cms/attach/index.vue
+15
-0
index.vue
src/views/cms/category/index.vue
+15
-0
index.vue
src/views/cms/dashboard/index.vue
+15
-0
index.vue
src/views/cms/field/index.vue
+15
-0
index.vue
src/views/cms/form/index.vue
+15
-0
index.vue
src/views/cms/label/index.vue
+15
-0
index.vue
src/views/cms/static/index.vue
+15
-0
index.vue
src/views/cms/system/index.vue
+15
-0
index.vue
src/views/cms/template/index.vue
+15
-0
index.vue
src/views/cms/theme/index.vue
+15
-0
index.vue
src/views/cms/variable/index.vue
+15
-0
No files found.
src/views/cms/archives/index.vue
0 → 100644
View file @
a00800f8
<
template
>
<i-frame
:src=
"url"
/>
</
template
>
<
script
>
import
iFrame
from
"
@/components/iFrame/index
"
;
export
default
{
name
:
"
Archives
"
,
components
:
{
iFrame
},
data
()
{
return
{
url
:
process
.
env
.
VUE_APP_BASE_API
+
"
/admin/archives/list
"
};
},
};
</
script
>
src/views/cms/attach/index.vue
0 → 100644
View file @
a00800f8
<
template
>
<i-frame
:src=
"url"
/>
</
template
>
<
script
>
import
iFrame
from
"
@/components/iFrame/index
"
;
export
default
{
name
:
"
Attach
"
,
components
:
{
iFrame
},
data
()
{
return
{
url
:
process
.
env
.
VUE_APP_BASE_API
+
"
/admin/attachment/list
"
};
},
};
</
script
>
src/views/cms/category/index.vue
0 → 100644
View file @
a00800f8
<
template
>
<i-frame
:src=
"url"
/>
</
template
>
<
script
>
import
iFrame
from
"
@/components/iFrame/index
"
;
export
default
{
name
:
"
Category
"
,
components
:
{
iFrame
},
data
()
{
return
{
url
:
process
.
env
.
VUE_APP_BASE_API
+
"
/admin/category/list
"
};
},
};
</
script
>
src/views/cms/dashboard/index.vue
0 → 100644
View file @
a00800f8
<
template
>
<i-frame
:src=
"url"
/>
</
template
>
<
script
>
import
iFrame
from
"
@/components/iFrame/index
"
;
export
default
{
name
:
"
CMS
"
,
components
:
{
iFrame
},
data
()
{
return
{
url
:
process
.
env
.
VUE_APP_BASE_API
+
"
/admin/dashboard/toIndex
"
};
},
};
</
script
>
src/views/cms/field/index.vue
0 → 100644
View file @
a00800f8
<
template
>
<i-frame
:src=
"url"
/>
</
template
>
<
script
>
import
iFrame
from
"
@/components/iFrame/index
"
;
export
default
{
name
:
"
field
"
,
components
:
{
iFrame
},
data
()
{
return
{
url
:
process
.
env
.
VUE_APP_BASE_API
+
"
/admin/field/list
"
};
},
};
</
script
>
src/views/cms/form/index.vue
0 → 100644
View file @
a00800f8
<
template
>
<i-frame
:src=
"url"
/>
</
template
>
<
script
>
import
iFrame
from
"
@/components/iFrame/index
"
;
export
default
{
name
:
"
form
"
,
components
:
{
iFrame
},
data
()
{
return
{
url
:
process
.
env
.
VUE_APP_BASE_API
+
"
/admin/forms/list
"
};
},
};
</
script
>
src/views/cms/label/index.vue
0 → 100644
View file @
a00800f8
<
template
>
<i-frame
:src=
"url"
/>
</
template
>
<
script
>
import
iFrame
from
"
@/components/iFrame/index
"
;
export
default
{
name
:
"
label
"
,
components
:
{
iFrame
},
data
()
{
return
{
url
:
process
.
env
.
VUE_APP_BASE_API
+
"
/admin/label/toIndex
"
};
},
};
</
script
>
src/views/cms/static/index.vue
0 → 100644
View file @
a00800f8
<
template
>
<i-frame
:src=
"url"
/>
</
template
>
<
script
>
import
iFrame
from
"
@/components/iFrame/index
"
;
export
default
{
name
:
"
static
"
,
components
:
{
iFrame
},
data
()
{
return
{
url
:
process
.
env
.
VUE_APP_BASE_API
+
"
/admin/static/toIndex
"
};
},
};
</
script
>
src/views/cms/system/index.vue
0 → 100644
View file @
a00800f8
<
template
>
<i-frame
:src=
"url"
/>
</
template
>
<
script
>
import
iFrame
from
"
@/components/iFrame/index
"
;
export
default
{
name
:
"
system
"
,
components
:
{
iFrame
},
data
()
{
return
{
url
:
process
.
env
.
VUE_APP_BASE_API
+
"
/admin/system/toIndex
"
};
},
};
</
script
>
src/views/cms/template/index.vue
0 → 100644
View file @
a00800f8
<
template
>
<i-frame
:src=
"url"
/>
</
template
>
<
script
>
import
iFrame
from
"
@/components/iFrame/index
"
;
export
default
{
name
:
"
template
"
,
components
:
{
iFrame
},
data
()
{
return
{
url
:
process
.
env
.
VUE_APP_BASE_API
+
"
/admin/templates/toIndex
"
};
},
};
</
script
>
src/views/cms/theme/index.vue
0 → 100644
View file @
a00800f8
<
template
>
<i-frame
:src=
"url"
/>
</
template
>
<
script
>
import
iFrame
from
"
@/components/iFrame/index
"
;
export
default
{
name
:
"
theme
"
,
components
:
{
iFrame
},
data
()
{
return
{
url
:
process
.
env
.
VUE_APP_BASE_API
+
"
/admin/theme/list
"
};
},
};
</
script
>
src/views/cms/variable/index.vue
0 → 100644
View file @
a00800f8
<
template
>
<i-frame
:src=
"url"
/>
</
template
>
<
script
>
import
iFrame
from
"
@/components/iFrame/index
"
;
export
default
{
name
:
"
variable
"
,
components
:
{
iFrame
},
data
()
{
return
{
url
:
process
.
env
.
VUE_APP_BASE_API
+
"
/admin/variable/list
"
};
},
};
</
script
>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment