|
@@ -1,35 +1,160 @@
|
|
|
<!--
|
|
|
* @Author: your name
|
|
|
* @Date: 2021-10-21 17:51:22
|
|
|
- * @LastEditTime: 2021-10-26 09:42:11
|
|
|
+ * @LastEditTime: 2021-10-26 18:02:41
|
|
|
* @LastEditors: Please set LastEditors
|
|
|
* @Description: 生产经营页面
|
|
|
* @FilePath: \hyyfScreen\src\views\Production\Production.vue
|
|
|
-->
|
|
|
<template>
|
|
|
<div class="production">
|
|
|
- <div class="production-row">
|
|
|
- <div class="production-row-side">
|
|
|
+ <!-- 第一列 -->
|
|
|
+ <div class="production-column production-side-column">
|
|
|
+ <div class="production-column-item">
|
|
|
<pro-board :title="'存栏结构'">
|
|
|
- <chart-amount-pie :data="AmountPieData"></chart-amount-pie>
|
|
|
+ <chart-amount-pie :data="amountPieData"></chart-amount-pie>
|
|
|
</pro-board>
|
|
|
</div>
|
|
|
- <div class="production-row-middle">
|
|
|
- <pro-board :title="'重要指标'"></pro-board>
|
|
|
+ <div class="production-column-item">
|
|
|
+ <pro-board :title="'存栏变动'">
|
|
|
+ <chart-amount-line :data="amountLineData"></chart-amount-line>
|
|
|
+ </pro-board>
|
|
|
</div>
|
|
|
- <div class="production-row-side">
|
|
|
- <pro-board :title="'工作看板'"></pro-board>
|
|
|
+ <div class="production-column-item">
|
|
|
+ <pro-board :title="'母猪分布'">
|
|
|
+ <chart-sow-bar :data="amountPieData"></chart-sow-bar>
|
|
|
+ </pro-board>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="production-row">
|
|
|
- <div>中左</div>
|
|
|
- <div>中中</div>
|
|
|
- <div>中右</div>
|
|
|
+
|
|
|
+ <!-- 第二列 -->
|
|
|
+ <div class="production-column production-mid-column">
|
|
|
+ <div class="production-column-item">
|
|
|
+ <pro-board :title="'重要指标'">
|
|
|
+ <important-items :data="importantData"></important-items>
|
|
|
+ </pro-board>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="production-column-item">
|
|
|
+ <pro-board :title="'销售分析'">
|
|
|
+ <div class="sales">
|
|
|
+ <div class="sales-condition">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="getSalesDates"
|
|
|
+ type="datetimerange"
|
|
|
+ :picker-options="pickerOptions"
|
|
|
+ range-separator="至"
|
|
|
+ start-placeholder="开始日期"
|
|
|
+ end-placeholder="结束日期"
|
|
|
+ align="right"
|
|
|
+ size="mini">
|
|
|
+ </el-date-picker>
|
|
|
+ </div>
|
|
|
+ <div class="sales-content">
|
|
|
+ <div class="sales-left">
|
|
|
+ <div class="up">
|
|
|
+ <label>本周销售额</label>
|
|
|
+ <span>{{ weekSales }}元</span>
|
|
|
+ <div class="sales-change">
|
|
|
+ <div>
|
|
|
+ <div class="triangle-change" :class="weekSalesChange>0? 'triangle-up': 'triangle-down'"></div>
|
|
|
+ <span :class="weekSalesChange>0? 'color-up': 'color-down'">{{ weekSalesChange }}%</span>
|
|
|
+ 同比上周
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="down">
|
|
|
+ <label>本周销售量</label>
|
|
|
+ <span>{{ weekSalesVolume }}元</span>
|
|
|
+ <div class="sales-change">
|
|
|
+ <div>
|
|
|
+ <div class="triangle-change" :class="weekSalesVolumeChange>0? 'triangle-up': 'triangle-down'"></div>
|
|
|
+ <span :class="weekSalesVolumeChange>0? 'color-up': 'color-down'">{{ weekSalesVolumeChange }}%</span>
|
|
|
+ 同比上周
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="sales-right">
|
|
|
+ <chart-sales :data="salesChartData"></chart-sales>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </pro-board>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="production-column-item">
|
|
|
+ <pro-board :title="'应收排名'">
|
|
|
+ <ying-shou :data="yingshouData"></ying-shou>
|
|
|
+ </pro-board>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <div class="production-row">
|
|
|
- <div>下左</div>
|
|
|
- <div>下中</div>
|
|
|
- <div>下右</div>
|
|
|
+
|
|
|
+ <!-- 第三列 -->
|
|
|
+ <div class="production-column production-side-column">
|
|
|
+ <div class="production-column-item">
|
|
|
+ <pro-board :title="'工作看板'">
|
|
|
+ <work-items @workInfo="getWorkInfo(value)"></work-items>
|
|
|
+ </pro-board>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 工作看板点击后出现的东西 -->
|
|
|
+ <div class="work-infos" v-show="ifWorkInfos">
|
|
|
+ <div class="kuang">
|
|
|
+ <div class="work-info-title">工作任务</div>
|
|
|
+ <div class="work-info-wrap">
|
|
|
+ <div class="work-info-content">
|
|
|
+ <div class="work-info-content-top">
|
|
|
+ <div class="work-info-content-history">
|
|
|
+ <div class="history-title">历史工作任务</div>
|
|
|
+ <div class="history-content">
|
|
|
+ <div class="history-content-item" v-for="item in historyData" :key="item.id">
|
|
|
+ <span class="history-content-item-data">{{ item.date }}</span>
|
|
|
+ <span class="history-content-item-data">{{ item.content }}</span>
|
|
|
+ <span class="history-content-item-data">{{ item.person }}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="work-info-content-condition">
|
|
|
+ <div class="history-title">发布任务</div>
|
|
|
+ <div class="condition-content">
|
|
|
+ <div class="condition-content-item">
|
|
|
+ <div>执行日期:</div>
|
|
|
+ <el-select size="mini" style="width: 65%; position: relative; top: -5px">
|
|
|
+ <el-option></el-option>
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ <div class="condition-content-item">
|
|
|
+ <div>负责人:</div>
|
|
|
+ <el-select size="mini" style="width: 65%; position: relative; top: -5px">
|
|
|
+ <el-option></el-option>
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="work-info-content-main">
|
|
|
+ <div class="history-title">内容</div>
|
|
|
+ <div class="main-content">发为敬哦i感觉二我i过呢我i蜂窝i返回</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="production-column-item2">
|
|
|
+ <pro-board :title="'成本分析'">
|
|
|
+ <div>
|
|
|
+ <el-select size="mini" style="float: right; margin: 10px 5px 0 0;">
|
|
|
+ <el-option></el-option>
|
|
|
+ </el-select>
|
|
|
+ <!-- 扇形图 -->
|
|
|
+ <chart-cost-pie :data="costPieData"></chart-cost-pie>
|
|
|
+ <!-- 柱状图 -->
|
|
|
+ <chart-cost-line :data="costLineData"></chart-cost-line>
|
|
|
+ </div>
|
|
|
+ </pro-board>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -37,12 +162,20 @@
|
|
|
<script>
|
|
|
import ProBoard from './board/ProBoard.vue'
|
|
|
import ChartAmountPie from './board/ChartAmountPie.vue'
|
|
|
+import ChartAmountLine from './board/ChartAmountLine.vue'
|
|
|
+import ChartSowBar from './board/ChartSowBar.vue'
|
|
|
+import ChartSales from './board/ChartSales.vue'
|
|
|
+import YingShou from './board/YingShou.vue'
|
|
|
+import WorkItems from './board/WorkItems.vue'
|
|
|
+import ImportantItems from './board/ImportantItems.vue'
|
|
|
+import ChartCostPie from './board/ChartCostPie.vue'
|
|
|
+import ChartCostLine from './board/ChartCostLine.vue'
|
|
|
|
|
|
export default {
|
|
|
name: "Production",
|
|
|
data() {
|
|
|
return {
|
|
|
- AmountPieData: [
|
|
|
+ amountPieData: [
|
|
|
{
|
|
|
farmId: 1,
|
|
|
id: 1,
|
|
@@ -109,39 +242,420 @@ export default {
|
|
|
subareaId: 9,
|
|
|
year: 2021
|
|
|
}
|
|
|
- ]
|
|
|
+ ],
|
|
|
+ amountLineData: {
|
|
|
+ boarStock: [],
|
|
|
+ fatpigStock: [],
|
|
|
+ griceStock: [],
|
|
|
+ month: [],
|
|
|
+ pigletStock: [],
|
|
|
+ sowStock: []
|
|
|
+ },
|
|
|
+ pickerOptions: { // 快捷选项
|
|
|
+ shortcuts: [{
|
|
|
+ text: '最近一周',
|
|
|
+ onClick(picker) {
|
|
|
+ const end = new Date();
|
|
|
+ const start = new Date();
|
|
|
+ start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
|
|
|
+ picker.$emit('pick', [start, end]);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ text: '最近一个月',
|
|
|
+ onClick(picker) {
|
|
|
+ const end = new Date();
|
|
|
+ const start = new Date();
|
|
|
+ start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
|
|
|
+ picker.$emit('pick', [start, end]);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ text: '最近三个月',
|
|
|
+ onClick(picker) {
|
|
|
+ const end = new Date();
|
|
|
+ const start = new Date();
|
|
|
+ start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
|
|
|
+ picker.$emit('pick', [start, end]);
|
|
|
+ }
|
|
|
+ }]
|
|
|
+ },
|
|
|
+ getSalesDates: [], // 获取销售分析的时间
|
|
|
+ weekSales: 1545252,
|
|
|
+ weekSalesChange: 10,
|
|
|
+ weekSalesVolume: 1000,
|
|
|
+ weekSalesVolumeChange: -10,
|
|
|
+ salesChartData: { // 销售图的数据
|
|
|
+ quantitys: [46, 45, 100],
|
|
|
+ sellDates: ["10-20周三", "10-21周四", "10-22周五"]
|
|
|
+ },
|
|
|
+ yingshouData: [
|
|
|
+ {
|
|
|
+ rate: 1,
|
|
|
+ name: 'XX屠宰有限公司',
|
|
|
+ money: 23515,
|
|
|
+ person: '大概',
|
|
|
+ phone: '1654564654'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ rate: 2,
|
|
|
+ name: 'XX屠宰有限公司',
|
|
|
+ money: 23515,
|
|
|
+ person: '大概',
|
|
|
+ phone: '1654564654'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ rate: 3,
|
|
|
+ name: 'XX屠宰有限公司',
|
|
|
+ money: 23515,
|
|
|
+ person: '大概',
|
|
|
+ phone: '1654564654'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ rate: 4,
|
|
|
+ name: 'XX屠宰有限公司',
|
|
|
+ money: 23515,
|
|
|
+ person: '大概',
|
|
|
+ phone: '1654564654'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ rate: 5,
|
|
|
+ name: 'XX屠宰有限公司',
|
|
|
+ money: 23515,
|
|
|
+ person: '大概',
|
|
|
+ phone: '1654564654'
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ historyData: [
|
|
|
+ {
|
|
|
+ id: 1,
|
|
|
+ date: '7日12日下午',
|
|
|
+ content: '1000头仔猪进入厂区',
|
|
|
+ person: '李海涛'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 2,
|
|
|
+ date: '7日12日下午',
|
|
|
+ content: '1000头仔猪进入厂区',
|
|
|
+ person: '李海涛'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 3,
|
|
|
+ date: '7日12日下午',
|
|
|
+ content: '1000头仔猪进入厂区',
|
|
|
+ person: '李海涛'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 4,
|
|
|
+ date: '7日12日下午',
|
|
|
+ content: '1000头仔猪进入厂区',
|
|
|
+ person: '李海涛'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 5,
|
|
|
+ date: '7日12日下午',
|
|
|
+ content: '1000头仔猪进入厂区',
|
|
|
+ person: '李海涛'
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ ifWorkInfos: false, // 工作看板点击后出现的工作任务
|
|
|
+ importantData: [
|
|
|
+ {
|
|
|
+ id: 1,
|
|
|
+ name: '产房存活率',
|
|
|
+ num: '99.4%'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 2,
|
|
|
+ name: '保育成活率',
|
|
|
+ num: '99.4%'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 3,
|
|
|
+ name: '育肥成活率',
|
|
|
+ num: '99.4%'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 4,
|
|
|
+ name: '七日内断配率',
|
|
|
+ num: '99.4%'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 5,
|
|
|
+ name: '配种分娩率',
|
|
|
+ num: '99.4%'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ id: 6,
|
|
|
+ name: 'PSY',
|
|
|
+ num: '99.4%'
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ costPieData: [
|
|
|
+ {
|
|
|
+ name: "药品成本",
|
|
|
+ value: 8
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "出生成本",
|
|
|
+ value: 26
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "批次变动成本",
|
|
|
+ value: 12
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "初始化成本",
|
|
|
+ value: 12
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "公猪成本",
|
|
|
+ value: 10
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "饲料成本",
|
|
|
+ value: 52
|
|
|
+ }
|
|
|
+ ],
|
|
|
+
|
|
|
+ costLineData: [32541, 82467, 54363, 64642, 34651, 95422,]
|
|
|
}
|
|
|
},
|
|
|
components: {
|
|
|
ProBoard,
|
|
|
- ChartAmountPie
|
|
|
- }
|
|
|
+ ChartAmountPie,
|
|
|
+ ChartAmountLine,
|
|
|
+ ChartSowBar,
|
|
|
+ ChartSales,
|
|
|
+ YingShou,
|
|
|
+ WorkItems,
|
|
|
+ ImportantItems,
|
|
|
+ ChartCostPie,
|
|
|
+ ChartCostLine
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ getWorkInfo(value) { // 工作看板的点击事件
|
|
|
+ console.log(value)
|
|
|
+ this.ifWorkInfos = !this.ifWorkInfos
|
|
|
+ }
|
|
|
+ },
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
+/* 要删除的东西 */
|
|
|
+.board-bgc {
|
|
|
+ background-color: rgb(226, 144, 144);
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
.production {
|
|
|
height: 100%;
|
|
|
display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: space-between;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+/* 每一列 */
|
|
|
+.production-column {
|
|
|
+ display: flex;
|
|
|
flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+}
|
|
|
+.production-side-column {
|
|
|
+ width: 25%;
|
|
|
+}
|
|
|
+.production-mid-column {
|
|
|
+ width: 45%;
|
|
|
+}
|
|
|
+/* 每一列的每一个面板 */
|
|
|
+.production-column-item {
|
|
|
+ height: 32%;
|
|
|
+}
|
|
|
+.production-column-item2 {
|
|
|
+ height: 66%;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+/* 销售分析 */
|
|
|
+.sales {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.sales-condition {
|
|
|
+ margin-top: 15px;
|
|
|
+ position: absolute;
|
|
|
+ right: 4px;
|
|
|
+}
|
|
|
+.sales-content {
|
|
|
+ padding-top: 20px;
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
justify-content: space-around;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+.sales-left {
|
|
|
+ width: 23%;
|
|
|
+ line-height: 25px;
|
|
|
+ padding-top: 30px;
|
|
|
+}
|
|
|
+.sales-left>.up {
|
|
|
+ margin-bottom: 10px;
|
|
|
+}
|
|
|
+.sales-left>.up>label,
|
|
|
+.sales-left>.down>label {
|
|
|
+ display: block;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 13px;
|
|
|
+}
|
|
|
+.sales-left>.up>span,
|
|
|
+.sales-left>.down>span {
|
|
|
+ display: block;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+.sales-left>.up>.sales-change,
|
|
|
+.sales-left>.down>.sales-change {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+ font-size: 13px;
|
|
|
+}
|
|
|
+/* 三角形 */
|
|
|
+.triangle-change {
|
|
|
+ display: inline-block;
|
|
|
+ /* width: 4px; */
|
|
|
+ height: 4px;
|
|
|
+ border-style: solid;
|
|
|
+ border-width: 4px;
|
|
|
+ margin-right: 10px;
|
|
|
+}
|
|
|
+.triangle-up {
|
|
|
+ border-color: transparent transparent rgb(238, 16, 16) transparent;
|
|
|
}
|
|
|
-/* 每一行 */
|
|
|
-.production-row {
|
|
|
- background-color: #fff;
|
|
|
- height: 30%;
|
|
|
- /* 行内布局 */
|
|
|
+.triangle-down {
|
|
|
+ border-color: rgb(12, 202, 12) transparent transparent transparent;
|
|
|
+ position: relative;
|
|
|
+ top: 4px;
|
|
|
+}
|
|
|
+.color-up {
|
|
|
+ color: rgb(238, 16, 16);
|
|
|
+}
|
|
|
+.color-down {
|
|
|
+ color: rgb(12, 202, 12);
|
|
|
+}
|
|
|
+/* 销售情况右侧 */
|
|
|
+.sales-right {
|
|
|
+ width: 77%;
|
|
|
+ /* border-left: 1px solid rgba(228, 228, 228, 1); */
|
|
|
+ /* height: 200px; */
|
|
|
+ /* background-color: #fff; */
|
|
|
+}
|
|
|
+
|
|
|
+/* 工作看板 */
|
|
|
+.work-infos {
|
|
|
+ width: 800px;
|
|
|
+ height: 470px;
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ top: 0;
|
|
|
+ bottom: 0;
|
|
|
+ margin: auto;
|
|
|
+ background-color: rgb(3,16,50);
|
|
|
+}
|
|
|
+.kuang {
|
|
|
width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background: url("../../assets/BioSafety/kuang.png") no-repeat;
|
|
|
+ background-size: contain;
|
|
|
+}
|
|
|
+.work-info-title {
|
|
|
+ color: rgb(87, 221, 255);
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 18px;
|
|
|
+ margin-top: 5px;
|
|
|
+}
|
|
|
+.work-info-wrap {
|
|
|
+ width: 86%;
|
|
|
+ height: 77%;
|
|
|
+ background-color: rgb(4,5,26);
|
|
|
+ margin: 20px auto;
|
|
|
+ padding-top: 2.5%;
|
|
|
+}
|
|
|
+.work-info-content {
|
|
|
+ border: 2px solid rgb(51,153,153);
|
|
|
+ width: 95%;
|
|
|
+ height: 95%;
|
|
|
+ margin: auto;
|
|
|
+}
|
|
|
+.work-info-content-top {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+}
|
|
|
+/* 工作任务 —— 历史工作任务 */
|
|
|
+.work-info-content-history {
|
|
|
+ display: inline-block;
|
|
|
+ margin-top: 10px;
|
|
|
+ width: 60%;
|
|
|
+}
|
|
|
+.history-title {
|
|
|
+ color: rgb(87, 221, 255);
|
|
|
+ font-size: 14px;
|
|
|
+}
|
|
|
+.history-content {
|
|
|
+ background-color: rgb(33,41,58);
|
|
|
+ margin: 5px 10px;
|
|
|
+ height: 100px;
|
|
|
+ overflow-y: scroll;
|
|
|
+}
|
|
|
+::-webkit-scrollbar {
|
|
|
+ /*隐藏滚轮*/
|
|
|
+ display: none;
|
|
|
+}
|
|
|
+.history-content-item {
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
+ color: rgb(87, 221, 255);
|
|
|
}
|
|
|
-/* 行 —— 两边 */
|
|
|
-.production-row-side {
|
|
|
- width: 25%;
|
|
|
+.history-content-item:hover {
|
|
|
+ background-color: rgb(25,91,104);
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
-/* 行 —— 中间 */
|
|
|
-.production-row-middle {
|
|
|
- background-color: rgb(218, 116, 116);
|
|
|
- width: 45%;
|
|
|
+.history-content-item-data {
|
|
|
+ margin: 5px 10px;
|
|
|
+}
|
|
|
+
|
|
|
+/* 工作任务 —— 发布任务 */
|
|
|
+.work-info-content-condition {
|
|
|
+ display: inline-block;
|
|
|
+ margin-top: 10px;
|
|
|
+ width: 40%;
|
|
|
+}
|
|
|
+.condition-content {
|
|
|
+ width: 100%;
|
|
|
+ height: 100px;
|
|
|
+ margin: 5px 10px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding-top: 10px;
|
|
|
+}
|
|
|
+.condition-content-item {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-left: 20px;
|
|
|
+ margin-right: 30px;
|
|
|
+ color: rgb(87, 221, 255);
|
|
|
+}
|
|
|
+
|
|
|
+/* 工作任务 —— 内容 */
|
|
|
+.work-info-content-main {}
|
|
|
+
|
|
|
+.main-content {
|
|
|
+ background-color: rgb(15,18,38);
|
|
|
+ margin: 10px;
|
|
|
+ height: 130px;
|
|
|
+ color: #fff;
|
|
|
+ padding: 10px;
|
|
|
+ text-align: left;
|
|
|
+ text-indent: 2em;
|
|
|
}
|
|
|
-</style>
|
|
|
+</style>
|