|
@@ -1,7 +1,14 @@
|
|
<template>
|
|
<template>
|
|
<el-card class="codecount-container">
|
|
<el-card class="codecount-container">
|
|
<div slot="header" class="header">
|
|
<div slot="header" class="header">
|
|
- <span><!-- 代码运算 -->{{$t('EtaBasePage.algorithm_btn')}}</span>
|
|
|
|
|
|
+ <div class="header-left">
|
|
|
|
+ <span><!-- 代码运算 -->{{$t('EtaBasePage.algorithm_btn')}}</span>
|
|
|
|
+ <span class="opt-btn" @click="operationTipShow=true">
|
|
|
|
+ <img src="~@/assets/img/data_m/icon01.png" alt="">
|
|
|
|
+ <!-- 操作说明 -->
|
|
|
|
+ <span>{{$t('CodeCountPage.opt_tip_btn')}}</span>
|
|
|
|
+ </span>
|
|
|
|
+ </div>
|
|
<div>
|
|
<div>
|
|
<el-button type="primary" @click="runCodeHandle"><!-- 运行 -->{{$t('CodeCountPage.run_btn')}}</el-button>
|
|
<el-button type="primary" @click="runCodeHandle"><!-- 运行 -->{{$t('CodeCountPage.run_btn')}}</el-button>
|
|
<el-button type="primary" plain @click="saveHandle" v-if="!isView"><!-- 保存 -->{{$t('Dialog.confirm_save_btn')}}</el-button>
|
|
<el-button type="primary" plain @click="saveHandle" v-if="!isView"><!-- 保存 -->{{$t('Dialog.confirm_save_btn')}}</el-button>
|
|
@@ -171,6 +178,20 @@
|
|
</el-tabs>
|
|
</el-tabs>
|
|
</el-col>
|
|
</el-col>
|
|
</div>
|
|
</div>
|
|
|
|
+ <!-- 操作说明 -->
|
|
|
|
+ <el-dialog
|
|
|
|
+ :title="$t('CodeCountPage.opt_tip_btn')"
|
|
|
|
+ :visible.sync="operationTipShow"
|
|
|
|
+ :close-on-click-modal="false"
|
|
|
|
+ center
|
|
|
|
+ v-dialogDrag
|
|
|
|
+ :append-to-body="true"
|
|
|
|
+ width="900px"
|
|
|
|
+ >
|
|
|
|
+ <div class="dialog-container">
|
|
|
|
+ <div style="line-height:20px;color:#000000;font-size: 14px;word-break: normal;" v-html="$t('CodeCountPage.opt_tip_btn_text')"></div>
|
|
|
|
+ </div>
|
|
|
|
+ </el-dialog>
|
|
</el-card>
|
|
</el-card>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -218,7 +239,9 @@ export default {
|
|
sheetArr:[],
|
|
sheetArr:[],
|
|
sheet_name: '',
|
|
sheet_name: '',
|
|
sql_code: ''
|
|
sql_code: ''
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ operationTipShow:false
|
|
};
|
|
};
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
@@ -467,6 +490,24 @@ export default {
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
align-items: center;
|
|
font-size: 16px;
|
|
font-size: 16px;
|
|
|
|
+ .header-left{
|
|
|
|
+ display:flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ .opt-btn{
|
|
|
|
+ display:inline-flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ margin-left: 10px;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ img{
|
|
|
|
+ width: 32px;
|
|
|
|
+ height: 34px;
|
|
|
|
+ }
|
|
|
|
+ span{
|
|
|
|
+ color:rgb(64, 158, 255);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|
|
.bottom {
|
|
.bottom {
|
|
height: calc(100vh - 240px);
|
|
height: calc(100vh - 240px);
|
|
@@ -509,6 +550,9 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+.dialog-container{
|
|
|
|
+ padding:0 60px 60px ;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|
|
<style lang="scss">
|
|
<style lang="scss">
|
|
.codecount-container {
|
|
.codecount-container {
|