|
@@ -52,7 +52,7 @@
|
|
|
|
|
|
<el-input
|
|
|
v-model="updateInfo.YNameEn"
|
|
|
- :placeholder="$t('Chart.InputHolderAll.input_common',{label:$t('Chart.Detail.y_en_name')})"
|
|
|
+ :placeholder="$t('Chart.InputHolderAll.input_common',{label:$t('Chart.Detail.y_name')})"
|
|
|
v-if="currentLang==='en'"
|
|
|
/>
|
|
|
<el-input
|
|
@@ -137,6 +137,50 @@
|
|
|
</el-collapse>
|
|
|
</div>
|
|
|
|
|
|
+ <!-- 跨品种分析图 -->
|
|
|
+ <div class="set-en-name-box" v-else-if="formData.chartInfo&&formData.chartInfo[0].source===10">
|
|
|
+ <el-collapse v-model="activeNames" class="sectionScatter-collapse">
|
|
|
+ <el-collapse-item :title="$t('Chart.Detail.chart_name')" :name="0" >
|
|
|
+ <ul class="section-ul" v-if="copyFormData.chartInfo.length">
|
|
|
+ <li>
|
|
|
+ <el-input v-model="copyFormData.chartInfo[0].value" :placeholder="$t('Chart.InputHolderAll.input_common',{label:$t('Chart.Detail.chart_name')})" style="width: 600px;"/>
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <div class="ch-name"><!-- X轴名称: -->{{$t('Chart.Detail.x_name')}}</div>
|
|
|
+
|
|
|
+ <el-input
|
|
|
+ v-model="copyFormData.chartInfo[1].value"
|
|
|
+ :placeholder="$t('Chart.InputHolderAll.input_common',{label:$t('Chart.Detail.x_name')})"
|
|
|
+ />
|
|
|
+ </li>
|
|
|
+ <li>
|
|
|
+ <div class="ch-name"><!-- Y轴名称: -->{{$t('Chart.Detail.y_name')}}</div>
|
|
|
+
|
|
|
+ <el-input
|
|
|
+ v-model="copyFormData.chartInfo[2].value"
|
|
|
+ :placeholder="$t('Chart.InputHolderAll.input_common',{label:$t('Chart.Detail.y_name')})"
|
|
|
+ />
|
|
|
+ </li>
|
|
|
+
|
|
|
+ </ul>
|
|
|
+ </el-collapse-item>
|
|
|
+
|
|
|
+ <!-- 品种 -->
|
|
|
+ <el-collapse-item :title="$t('Chart.Detail.variety_name')" :name="1">
|
|
|
+ <ul class="section-ul" v-if="copyFormData.chartsList.length">
|
|
|
+ <li v-for="(item,index) in copyFormData.chartsList" :key="index">
|
|
|
+ <div class="ch-name">{{$t('Chart.Detail.variety_name')}}{{index+1}}</div>
|
|
|
+
|
|
|
+ <el-input
|
|
|
+ v-model="item.value"
|
|
|
+ :placeholder="$t('Chart.InputHolderAll.input_common',{label:$t('Chart.Detail.variety_name')})"
|
|
|
+ />
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </el-collapse-item>
|
|
|
+ </el-collapse>
|
|
|
+ </div>
|
|
|
+
|
|
|
<!-- 普通图 -->
|
|
|
<div class="set-en-name-box" v-else>
|
|
|
<el-form-item :label="item.label+':'" :prop="item.key" v-for="item in copyFormData.chartInfo" :key="item.key">
|
|
@@ -229,6 +273,8 @@ export default {
|
|
|
|
|
|
this.fromEdbList = _.cloneDeep(this.edblist);
|
|
|
this.updateInfo = _.cloneDeep(this.datainfo);
|
|
|
+
|
|
|
+ console.log(this.updateInfo)
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -272,15 +318,15 @@ export default {
|
|
|
console.log(this.copyFormData)
|
|
|
const { chartInfo,chartsList } = this.copyFormData;
|
|
|
let params = {
|
|
|
- ChartInfoId: chartInfo[1].id,
|
|
|
- ChartNameEn: chartInfo[1].value.trim(),
|
|
|
+ ChartInfoId: chartInfo[0].id,
|
|
|
+ ChartName: chartInfo[0].value.trim(),
|
|
|
TagList: [
|
|
|
- { ChartTagId: chartInfo[3].id,TagNameEn: chartInfo[3].value },
|
|
|
- { ChartTagId: chartInfo[5].id,TagNameEn: chartInfo[5].value }
|
|
|
+ { ChartTagId: chartInfo[1].id,TagName: chartInfo[1].value },
|
|
|
+ { ChartTagId: chartInfo[2].id,TagName: chartInfo[2].value }
|
|
|
],
|
|
|
VarietyList: chartsList.map(_ => ({
|
|
|
- ChartVarietyId: _[1].id,
|
|
|
- VarietyNameEn: _[1].value
|
|
|
+ ChartVarietyId: _.id,
|
|
|
+ VarietyName: _.value
|
|
|
}))
|
|
|
}
|
|
|
this.$emit('updateLang',params)
|
|
@@ -345,31 +391,31 @@ export default {
|
|
|
max-height:600px;
|
|
|
overflow-y:auto;
|
|
|
}
|
|
|
-}
|
|
|
-.set-en-name-box{
|
|
|
- .el-collapse-item__header{
|
|
|
- background-color:#DCDFE6;
|
|
|
- padding-left:8px;
|
|
|
- font-size: 16px;
|
|
|
- font-weight: 400;
|
|
|
- color: #333333;
|
|
|
- margin-bottom:0;
|
|
|
- display: flex;
|
|
|
- justify-content: space-between;
|
|
|
- align-items: center;
|
|
|
- // text-overflow: ellipsis;
|
|
|
- // white-space: nowrap;
|
|
|
- overflow: hidden;
|
|
|
- line-height: inherit;
|
|
|
- .el-collapse-item__arrow{
|
|
|
- margin-left: 12px;
|
|
|
+ .set-en-name-box{
|
|
|
+ .el-collapse-item__header{
|
|
|
+ background-color:#DCDFE6;
|
|
|
+ padding-left:8px;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #333333;
|
|
|
+ margin-bottom:0;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ // text-overflow: ellipsis;
|
|
|
+ // white-space: nowrap;
|
|
|
+ overflow: hidden;
|
|
|
+ line-height: inherit;
|
|
|
+ .el-collapse-item__arrow{
|
|
|
+ margin-left: 12px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-input{
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ .el-collapse-item__content{
|
|
|
+ padding:18px 8px 0 8px;
|
|
|
}
|
|
|
- }
|
|
|
- .el-input{
|
|
|
- width: 100%;
|
|
|
- }
|
|
|
- .el-collapse-item__content{
|
|
|
- padding:18px 8px 0 8px;
|
|
|
}
|
|
|
}
|
|
|
|