Commit d42cd035 by huangqy

1122

parent 76d92c14
...@@ -83,7 +83,8 @@ body { ...@@ -83,7 +83,8 @@ body {
.el-tabs { .el-tabs {
--el-tabs-header-height: 80px !important; --el-tabs-header-height: 80px !important;
background: var(--theme-primary); background-image: url('bg.png');
background-size: cover;
color: #f8f8f8; color: #f8f8f8;
} }
...@@ -96,3 +97,5 @@ body { ...@@ -96,3 +97,5 @@ body {
color: #fff; /* 这里修改为您想要的字体颜色 */ color: #fff; /* 这里修改为您想要的字体颜色 */
} }
...@@ -19,9 +19,9 @@ ...@@ -19,9 +19,9 @@
</el-form-item> </el-form-item>
</el-tooltip> </el-tooltip>
<el-form-item> <el-form-item>
<el-button type="success" @click="getConfig">刷新</el-button> <el-button round type="success" @click="getConfig">刷新</el-button>
<el-button type="primary" @click="saveConfig">保存</el-button> <el-button round type="primary" @click="saveConfig">保存</el-button>
<el-button type="primary" @click="syncGoods">同步物资</el-button> <el-button round type="primary" @click="syncGoods">同步物资</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
</el-card> </el-card>
......
...@@ -3,13 +3,13 @@ ...@@ -3,13 +3,13 @@
<el-tab-pane v-for="item in tabList" :key="item.title"> <el-tab-pane v-for="item in tabList" :key="item.title">
<template #label> <template #label>
<span class="custom-tabs-label"> <span class="custom-tabs-label">
<i :class="item.icon" style="font-size: 24px;margin-right: 10px;"></i> <i :class="item.icon" style="font-size: 24px;margin-right: 10px;color: #fff;"></i>
<span class="tabfont">{{item.title}}</span> <span class="tabfont">{{item.title}}</span>
</span> </span>
</template> </template>
<component :is="item.template" :ref="item.template" @refresh="handleRefresh" @logChange="handleLogChange"></component> <component :is="item.template" :ref="item.template" @refresh="handleRefresh" @logChange="handleLogChange"></component>
</el-tab-pane> </el-tab-pane>
<el-card> <el-card style="background-image: url('bg.png');background-size: cover; opacity: 0.8;">
<div v-html="log" class="log-scroll" style="display: flex;align-items: center;"></div> <div v-html="log" class="log-scroll" style="display: flex;align-items: center;"></div>
</el-card> </el-card>
</el-tabs> </el-tabs>
...@@ -67,7 +67,7 @@ export default defineComponent({ ...@@ -67,7 +67,7 @@ export default defineComponent({
font-family: '微软雅黑'; font-family: '微软雅黑';
font-size: 30px; font-size: 30px;
font-weight: 550; font-weight: 550;
/* color: aliceblue; */ color: aliceblue;
} }
.log-scroll { .log-scroll {
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<template #header> <template #header>
<div class="card-header"> <div class="card-header">
<span>计划任务</span> <span>计划任务</span>
<el-button class="button" type="primary" @click="syncInBill" :loading="loading">入库单接收</el-button> <el-button round class="button" type="primary" @click="syncInBill" :loading="loading">入库单接收</el-button>
</div> </div>
</template> </template>
<el-table :data="billList" ref="bill" border style="width: 100%;height: 28.5vh;" highlight-current-row @row-click="billClick"> <el-table :data="billList" ref="bill" border style="width: 100%;height: 28.5vh;" highlight-current-row @row-click="billClick">
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<template #header> <template #header>
<div class="card-header"> <div class="card-header">
<span>计划任务</span> <span>计划任务</span>
<el-button class="button" type="primary" @click="syncOutBill" :loading="loading">出库单接收</el-button> <el-button round class="button" type="primary" @click="syncOutBill" :loading="loading">出库单接收</el-button>
</div> </div>
</template> </template>
<el-table :data="billList" ref="bill" border style="width: 100%;height: 28.5vh;" highlight-current-row @row-click="billClick"> <el-table :data="billList" ref="bill" border style="width: 100%;height: 28.5vh;" highlight-current-row @row-click="billClick">
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<el-form-item label="号型"> <el-form-item label="号型">
<el-input v-model="searchData.modelName" placeholder="请输入号型"/> <el-input v-model="searchData.modelName" placeholder="请输入号型"/>
</el-form-item> </el-form-item>
<el-button type="primary" style="width: 100%" @click="loadData">查询</el-button> <el-button round type="primary" style="width: 100%" @click="loadData">查询</el-button>
</el-form> </el-form>
</el-card> </el-card>
</el-col> </el-col>
......
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
<template #header> <template #header>
<div class="card-header"> <div class="card-header">
<span>实时出入库数据</span> <span>实时出入库数据</span>
<el-button style="float: right;" type="primary" @click="showChannelSetting">通道配置</el-button> <el-button round style="float: right;" type="primary" @click="showChannelSetting">通道配置</el-button>
<el-button style="float: right;margin-right: 10px;" type="warning" @click="clearData">清空数据</el-button> <el-button round style="float: right;margin-right: 10px;" type="warning" @click="clearData">清空数据</el-button>
</div> </div>
</template> </template>
<el-row :gutter="20"> <el-row :gutter="20">
......
...@@ -27,8 +27,8 @@ ...@@ -27,8 +27,8 @@
<el-input-number v-model="formData.amount" :min="0" :precision="0" style="width: 100%;"/> <el-input-number v-model="formData.amount" :min="0" :precision="0" style="width: 100%;"/>
</el-form-item> </el-form-item>
<div style="text-align: center;"> <div style="text-align: center;">
<el-button type="success" @click="automatic" style="width: 45%">自动</el-button> <el-button round type="success" @click="automatic" style="width: 45%">自动</el-button>
<el-button type="primary" @click="manual" style="width: 45%">手动</el-button> <el-button round type="primary" @click="manual" style="width: 45%">手动</el-button>
</div> </div>
</el-form> </el-form>
</el-card> </el-card>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论