|
@@ -10,6 +10,10 @@
|
|
|
<div class="left-cont" v-show="!isSlideLeft" id="left">
|
|
|
<div class="left-top">
|
|
|
<el-button type="primary" plain @click="$router.back()">取消</el-button>
|
|
|
+ <div style="color:#409EFF;font-size: 16px;cursor: pointer;" @click="showExplain = true">
|
|
|
+ <i class="el-icon-document" style="font-size:22px;"></i>
|
|
|
+ 操作说明
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="left-min">
|
|
|
<div class="search-cont">
|
|
@@ -72,14 +76,14 @@
|
|
|
|
|
|
<div class="section">
|
|
|
<div>标准差
|
|
|
- <el-tooltip effect="dark" placement="right">
|
|
|
+ <!-- <el-tooltip effect="dark" placement="right">
|
|
|
<div
|
|
|
slot="content"
|
|
|
v-html="ruleTips.StandardDeviation"
|
|
|
style="line-height: 20px;width:300px"
|
|
|
></div>
|
|
|
<i class="el-icon-question" style="color: #666" />
|
|
|
- </el-tooltip>
|
|
|
+ </el-tooltip> -->
|
|
|
</div>
|
|
|
<div class="section-item">
|
|
|
<div>滚动期数:</div>
|
|
@@ -95,14 +99,14 @@
|
|
|
|
|
|
<div class="section">
|
|
|
<div>百分位
|
|
|
- <el-tooltip effect="dark" placement="right">
|
|
|
+ <!-- <el-tooltip effect="dark" placement="right">
|
|
|
<div
|
|
|
slot="content"
|
|
|
v-html="ruleTips.Percentile"
|
|
|
style="line-height: 20px;width:300px"
|
|
|
></div>
|
|
|
<i class="el-icon-question" style="color: #666" />
|
|
|
- </el-tooltip>
|
|
|
+ </el-tooltip> -->
|
|
|
</div>
|
|
|
<div class="section-item">
|
|
|
<span style="flex-shrink:0;min-width:70px">时间长度:</span>
|
|
@@ -130,14 +134,14 @@
|
|
|
|
|
|
<div class="section">
|
|
|
<div>频率分布
|
|
|
- <el-tooltip effect="dark" placement="right">
|
|
|
+ <!-- <el-tooltip effect="dark" placement="right">
|
|
|
<div
|
|
|
slot="content"
|
|
|
v-html="ruleTips.FrequencyDistribution"
|
|
|
style="line-height: 20px;width:300px"
|
|
|
></div>
|
|
|
<i class="el-icon-question" style="color: #666" />
|
|
|
- </el-tooltip>
|
|
|
+ </el-tooltip> -->
|
|
|
</div>
|
|
|
<div class="section-item">
|
|
|
<span style="flex-shrink:0;min-width:70px">时间段:</span>
|
|
@@ -271,6 +275,12 @@
|
|
|
:chartData="chartData"
|
|
|
@saveBack="saveEdbBack"
|
|
|
/>
|
|
|
+ <!-- 操作说明 -->
|
|
|
+ <ExplainDialog
|
|
|
+ textArrName="statisticFeatureListTextArr"
|
|
|
+ :show-explain="showExplain"
|
|
|
+ @close="showExplain = false"
|
|
|
+ />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -283,9 +293,10 @@ import selectTarget from './components/selectTarget.vue'
|
|
|
import chartCard from './components/chartCard.vue';
|
|
|
import SaveChartOther from '@/views/dataEntry_manage/components/SaveChartOther';
|
|
|
import saveChartToBase from './components/saveChartTobaseDia.vue';
|
|
|
-import saveEdbToBase from './components/saveEdbToBaseDia.vue'
|
|
|
+import saveEdbToBase from './components/saveEdbToBaseDia.vue';
|
|
|
+import ExplainDialog from './components/explainDialog.vue';
|
|
|
export default {
|
|
|
- components: { selectTarget,chartCard,SaveChartOther,saveChartToBase,saveEdbToBase },
|
|
|
+ components: { selectTarget,chartCard,SaveChartOther,saveChartToBase,saveEdbToBase,ExplainDialog },
|
|
|
directives: {
|
|
|
drag(el, bindings) {
|
|
|
el.onmousedown = function (e) {
|
|
@@ -393,6 +404,8 @@ export default {
|
|
|
isSaveEdbToBase: false,
|
|
|
|
|
|
oldEdbInfoType: 0,//原指标来源
|
|
|
+ //操作说明弹窗
|
|
|
+ showExplain:false
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -672,6 +685,9 @@ export default {
|
|
|
padding: 15px 20px;
|
|
|
border-bottom: 1px solid #ececec;
|
|
|
box-shadow: 0px 3px 6px rgba(167, 167, 167, 0.09);
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
}
|
|
|
.left-min {
|
|
|
padding: 20px;
|