Compare commits

..

No commits in common. "cd17ebef8c732799f5f5fbe60e64e699e51e5c3b" and "fbe736c8c4da648e04fad25d4627869d5b364b73" have entirely different histories.

4 changed files with 8 additions and 22 deletions

View File

@ -31,9 +31,6 @@ const setupAll = async () => {
app.use(WebSocketPlugin).use(FcDesigner).use(ElementPlus, {
locale: zhCn,
})
app.use(ElementPlus, {
locale: zhCn,
})
app.mount('#app')
}

View File

@ -52,9 +52,10 @@ function childmenuclick(item: any) {
} else {
showmodule.value = false
}
// console.log(' Assocmodule props:',Assocmodule)
}
//
const TimeDispl ay = {
const TimeDisplay = {
template: `
<div class="Navbar-menu-time">
<div class="Navbar-menu-time-text">{{ currentTime }}</div>
@ -145,8 +146,7 @@ function permissionClick() {
</div>
<div v-if="!props.isExecuteEvent" class="system-box-content"
:style="{ height: props.isFixed ? 'calc(100vh - 65px)' : 'calc(100vh - 125px)' }">
<Assocmodule v-if="showmodule" :applicationId="props.applicationId"
:moduleinfo="{ module_id: currentMoudleId }" />
<Assocmodule v-if="showmodule" :applicationId="props.applicationId" :moduleinfo="{ module_id: currentMoudleId }" />
<PermissionSet v-if="showermission" />
</div>
</div>
@ -157,23 +157,20 @@ function permissionClick() {
width: 100%;
height: 100%;
background-color: rgb(0, 52, 102);
.Navbar-box {
width: 100%;
height: 65px;
display: flex;
align-items: center;
color: #fff;
.Navbar-box-titie {
width: 400px;
height: 65px;
line-height: 65px;
background: url(/images/navleft.png) no-repeat;
background-size: 100% 100%;
background-size:100% 100%;
padding-left: 20px;
padding-right: 15px;
.Navbar-box-titie-text {
font-size: 25px;
font-weight: 700;
@ -183,7 +180,6 @@ function permissionClick() {
color: transparent;
}
}
.Navbar-menu-box {
width: calc(100% - 400px);
height: 63px;
@ -194,7 +190,6 @@ function permissionClick() {
justify-content: space-between;
background: url(/images/navright.png) no-repeat;
background-size: 100% 100%;
.Navbar-menu-content {
width: 100%;
display: flex;

View File

@ -19,7 +19,7 @@
<el-button type="primary" @click="saveClick">保存</el-button>
</div>
</el-tab-pane>
<el-tab-pane label="预览" name="预览" style="height: calc(100vh - 175px);">
<el-tab-pane label="预览" name="预览" style="height: calc(100vh - 190px);">
<div ref="previewContainer" class="preview"></div>
</el-tab-pane>
</el-tabs>
@ -34,7 +34,6 @@ import { useRoute, useRouter } from 'vue-router'
import { loadModule } from 'vue3-sfc-loader'
import * as Vue from 'vue/dist/vue.esm-bundler.js'
import ElementPlus from 'element-plus'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
import * as VueRouter from 'vue-router'
import less from 'less'
import defaultTemplate from '@/viewsnew/application/SfcEditor/NavbarEditor/Navbar.vue?raw'
@ -176,9 +175,6 @@ const runCode = async () => {
prevApp.use(route)
prevApp.use(i18n)
prevApp.use(ElementPlus)
prevApp.use(ElementPlus, {
locale: zhCn,
})
prevApp.mount(previewContainer.value)
} catch (error) {
@ -304,7 +300,7 @@ function importNav() {
}
.sfc-content {
height: calc(100vh - 60px);
height: calc(100vh -60px);
padding: 10px 20px;
color: #fff;
}

View File

@ -138,7 +138,7 @@ function getuserinfo(){
}
queryUsers(params).then(res => {
tableData.value = res.data.data.records
total.value = Number(res.data.data.total)
total.value = res.data.data.total
tableloading.value = false
})
}
@ -153,7 +153,7 @@ function queryuserinfo(){
}
queryUsers(params).then(res => {
tableData.value = res.data.data.records
total.value = Number(res.data.data.total)
total.value = res.data.data.total
tableloading.value = false
})
}
@ -163,8 +163,6 @@ function nodeclick(data:any,node:any){
return
}
currentNodeId.value = node.key
currentPage.value = 1
pageSize.value = 10
getuserinfo()
}
function edittable(data:any){