|
@@ -72,7 +72,7 @@
|
|
|
</div>
|
|
|
<el-form label-position="left" label-width="150px" style="margin: 0 4%;font-size: 14px;color: rgb(102, 102, 102);" :model="task_form">
|
|
|
<div style="text-align: right;">
|
|
|
- <el-button type="info" plain size="mini" @click="open_created(task_form.describe)">修改</el-button>
|
|
|
+ <el-button size="mini" @click="open_created(task_form.describe)">修改</el-button>
|
|
|
</div>
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="19">
|
|
@@ -316,7 +316,7 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item label="排期" prop="date_start">
|
|
|
<el-date-picker v-model="form.date_start" type="daterange" range-separator="~" start-placeholder="请选择开始日期" end-placeholder="请选择结束日期" />
|
|
|
- <el-checkbox v-model="form.noHoliday">排除周末</el-checkbox>
|
|
|
+ <el-checkbox v-model="form.noHoliday" style="margin-left: 10px;">排除周末</el-checkbox>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="参与人员">
|
|
|
<el-select v-model="form.peoples" multiple filterable remote reserve-keyword placeholder="创建人" :remote-method="remoteMethod" :loading="loading" style="width: 100%">
|
|
@@ -713,13 +713,14 @@ export default {
|
|
|
setTimeout(() => {
|
|
|
var myChart = echarts.init(document.getElementById('div1'))
|
|
|
myChart.setOption({
|
|
|
- xAxis: {
|
|
|
- type: 'category',
|
|
|
- data: this.echarts_name,
|
|
|
- axisTick: {
|
|
|
- alignWithLabel: true,
|
|
|
- show: false
|
|
|
- },
|
|
|
+ tooltip: {
|
|
|
+ trigger: 'axis',
|
|
|
+ axisPointer: {
|
|
|
+ type: 'shadow'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ xAxis: { type: 'category', data: this.echarts_name,
|
|
|
+ axisTick: { alignWithLabel: true, show: false },
|
|
|
axisLine: { show: true, lineStyle: { type: 'dashed' }}
|
|
|
},
|
|
|
yAxis: [
|
|
@@ -734,6 +735,7 @@ export default {
|
|
|
series: [
|
|
|
{
|
|
|
data: this.echarts_value,
|
|
|
+ barWidth: '60%',
|
|
|
type: 'bar',
|
|
|
itemStyle: { normal: { color: '#409EFF' }},
|
|
|
label: {
|