no message
This commit is contained in:
parent
6c9c3d2c79
commit
a2b0cf6d4f
@ -51,7 +51,7 @@
|
||||
dialog: {
|
||||
save: false
|
||||
},
|
||||
apiObj: this.$api.system.app.list,
|
||||
// apiObj: this.$api.system.app.list,
|
||||
selection: []
|
||||
}
|
||||
},
|
@ -60,7 +60,7 @@
|
||||
dialog: {
|
||||
save: false
|
||||
},
|
||||
apiObj: this.$api.system.dept.list,
|
||||
// apiObj: this.$api.system.dept.list,
|
||||
selection: [],
|
||||
search: {
|
||||
keyword: null
|
@ -10,7 +10,7 @@
|
||||
</div>
|
||||
</el-card>
|
||||
<el-card shadow="never" header="dependencies">
|
||||
<el-descriptions border :column="3">
|
||||
<el-descriptions border :column="4">
|
||||
<el-descriptions-item v-for="(value, key) in data.dependencies" :key="key" :label="key">{{value}}</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
</el-card>
|
||||
@ -19,6 +19,11 @@
|
||||
<el-descriptions-item v-for="(value, key) in data.devDependencies" :key="key" :label="key">{{value}}</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
</el-card>
|
||||
<el-card shadow="never" header="scripts">
|
||||
<el-descriptions border :column="3">
|
||||
<el-descriptions-item v-for="(value, key) in data.scripts" :key="key" :label="key">{{value}}</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
</el-card>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-main>
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "scui",
|
||||
"version": "1.6.9",
|
||||
"name": "X-PHP-Admin",
|
||||
"version": "1.0.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
|
@ -124,7 +124,7 @@
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.mobile-nav-button {position: fixed;bottom:10px;left:10px;z-index: 10;width: 50px;height: 50px;background: #409EFF;box-shadow: 0 2px 12px 0 rgba(64, 158, 255, 1);border-radius: 50%;display: flex;align-items: center;justify-content: center;}
|
||||
.mobile-nav-button {position: fixed;bottom:10px;left:10px;z-index: 10;width: 50px;height: 50px;background: #409EFF;box-shadow: 0 2px 12px 0 rgba(64, 158, 255, 1);border-radius: 50%;display: flex;align-items: center;justify-content: center;cursor: pointer;}
|
||||
.mobile-nav-button i {color: #fff;font-size: 20px;}
|
||||
|
||||
.mobile-nav {background: #212d3d;}
|
||||
|
@ -124,7 +124,7 @@ tool.cookie = {
|
||||
remove(name) {
|
||||
var exp = new Date()
|
||||
exp.setTime(exp.getTime() - 1)
|
||||
document.cookie = `${name}=;expires=${exp.toGMTString()}`
|
||||
document.cookie = `${name}=; path=/; expires=${exp.toGMTString()}`
|
||||
}
|
||||
}
|
||||
/* Fullscreen */
|
||||
|
Loading…
Reference in New Issue
Block a user