Quellcode durchsuchen

fix: 优化需求240设置小数位数

ldong vor 7 Monaten
Ursprung
Commit
0967525f89

+ 1 - 1
config/index.js

@@ -38,7 +38,7 @@ module.exports = {
     proxyTable:{
 		'/adminapi': {
       target: "http://8.136.199.33:7778",
-      // target: "http://192.168.77.7:8606",
+      // target: "http://192.168.77.27:8606",
 			// secure:false,  // 如果是https接口,需要配置这个参数
 			changeOrigin:true, // 如果接口跨域,需要进行这个参数配置
 			pathRewrite:{

+ 5 - 0
src/lang/modules/ETATables/En.js

@@ -102,6 +102,11 @@ export default {
     please_select_metric_name:'Please select a metric name',
     move_successful:'Move successful',
     no_found_search:'The indicator was not found in the search',
+    data_format_settings:'Data Format Settings',
+    number_of_decimal_places:'Number of Decimal Places',
+    please_input:'Please Input',
+    confirm_btn:'Confirm',
+    please_set_number:'Please set the number of decimal places'
   },
 
   /* 自定义分析  */

+ 5 - 0
src/lang/modules/ETATables/Zh.js

@@ -102,6 +102,11 @@ export default {
     please_select_metric_name:'请选择指标名称',
     move_successful:'移动成功',
     no_found_search:'未搜索到该指标',
+    data_format_settings:'设置数据格式',
+    number_of_decimal_places:'小数位数',
+    please_input:'请输入',
+    confirm_btn:'确定',
+    please_set_number:'请设置小数位数'
   },
 
   /* 自定义分析  */

+ 1 - 0
src/views/chartRelevance_manage/components/selectTarget.vue

@@ -75,6 +75,7 @@
           </edbDetailPopover>
         </el-option>
       </el-select>
+      <slot name="setDecimal"></slot>
     </div>
     <el-select
       v-model="search_txt"

+ 1 - 1
src/views/datasheet_manage/components/BalanceTable.vue

@@ -155,7 +155,7 @@
                         :data-datacindex="cell_index"
                         :data-key="cell.Uid"
                       >
-                       {{isShowFormat(cell.ShowStyle)?cell.ShowFormatValue:cell.DataTime?cell.ShowValue:[7,5].includes(cell.DataType)?cell.ShowValue:cell.Value}}
+                        {{isShowDecimal(cell)?showDecimalValue(cell):isShowFormat(cell.ShowStyle)?cell.ShowFormatValue:cell.DataTime?cell.ShowValue:[7,5].includes(cell.DataType)?cell.ShowValue:cell.Value}}
                       </span>
 
                       <span

+ 156 - 21
src/views/datasheet_manage/components/CustomTable.vue

@@ -86,7 +86,7 @@
                   :data-cindex="columnHeader[edb_index]"
                   v-if="(edb.Data.find(_ =>_.DataTime === date).ShowValue&&!edb.Data.find(_ =>_.DataTime === date).CanEdit)||disabled"
                 >
-                  {{edb.Data.find(_ =>_.DataTime === date).ShowValue}}
+                  {{showCellValue(edb.Data.find(_ =>_.DataTime === date))}}
                 </span>
 
                 <!-- 输入值/公式 -->
@@ -399,6 +399,27 @@
       </div>
     </m-dialog>
 
+    <!-- 小数位数 -->
+    <m-dialog
+      :show.sync="isSetDecimalDialog"
+      width="455px"
+      :title="$t('OnlineExcelPage.data_format_settings')"
+      @close="isSetDecimalDialog = false"
+    >
+      <div style="display: flex;justify-content: center;align-items: center;">
+        {{ $t('OnlineExcelPage.number_of_decimal_places') }}<el-input-number  precision="0" style="width: 120px;margin-left: 10px;" :placeholder="$t('OnlineExcelPage.please_input')" v-model="ruleForm.Decimal" controls-position="right" :min="0" :max="30"></el-input-number>
+      </div>
+      <div style="display: flex;justify-content: center;margin-top:60px">
+        <el-button style="margin-right: 30px" type="primary" plain @click="isSetDecimalDialog = false"
+          >{{$t('Dialog.cancel_btn')}}</el-button
+        >
+        <el-button
+          type="primary"
+          @click="saveDecima"
+          >{{$t('OnlineExcelPage.confirm_btn')}}</el-button
+        >
+      </div>
+    </m-dialog>
   </div>
 </template>
 <script>
@@ -471,7 +492,7 @@ export default {
       return this.$store.state.isCollapse
     },
     contextMenuOption(){
-        return [{ label: this.$t('ETable.Btn.delete_btn') ,key: 'del' }]
+        return [{ label: this.$t('ETable.Btn.delete_btn') ,key: 'del' },{ label: this.$t('OnlineExcelPage.data_format_settings') ,key: 'setDecimal' }]
     },
     currentLang() {
       return this.$store.state.lang
@@ -479,6 +500,15 @@ export default {
   },
   data() {
     return {
+      // 设置小数位数
+      dateMap:{},
+      colMap:[],
+      ruleForm:{},
+      isSetDecimalDialog:false,
+      setType:'',
+      setDecimalIndex:'',
+      DecimalConfig:[],
+
       isSlideLeft: false,
       formula: '',
       config:{
@@ -716,17 +746,23 @@ export default {
 
     /* 右键事件 */
     async handleContext(key) {
+      console.log(key)
       let { rindex,cindex } = this.rightClickCell;
-
+      console.log(rindex,cindex)
       if(rindex==='-1') { //删除列
         console.log('删除列',cindex)
+        let index = this.columnHeader.findIndex(_ => _ === cindex);
+        if(key=='del'){
+          const configIndex=this.DecimalConfig.findIndex(el=>el.Col==this.config.data[index].EdbInfoId)
+          if(configIndex>-1){
+            this.DecimalConfig.splice(configIndex,1)
+          }
           if(cindex === 'A') {
             await this.$confirm(this.$t('OnlineExcelPage.dlt_the_all_msg') ,this.$t('Confirm.prompt') ,{ type: 'warning' })
             this.reset()
             return
           }
 
-          let index = this.columnHeader.findIndex(_ => _ === cindex);
           this.config.data.splice(index,1)
           this.config.textRowData.forEach(row => {
             row.splice(index+1,1)
@@ -735,25 +771,34 @@ export default {
           if(!(index < this.config.data[0].length)){
             resetStyle()
           }
+        }else{
+          this.openSetDecimalDia('col', this.config.data[index],index)
+        }
       }else if(cindex === '-1') { //删除行
         console.log('删除行',rindex)
-
-        if(this.dateArr.length === 1) return this.$message.warning(this.$t('OnlineExcelPage.please_keep_one_msg') )
-
         let index = this.rowHeader.findIndex(_ => _ === rindex)
-        if(index >= this.dateArr.length) {
-          this.config.textRowData.splice(index-this.dateArr.length,1)
-        }else {
-          this.dateArr.splice(index,1)
-          this.config.data.forEach(_ => {
-            _.Data.splice(index,1)
-          })
+        console.log(index)
+        if(key=='del'){
+          if(this.dateArr.length === 1) return this.$message.warning(this.$t('OnlineExcelPage.please_keep_one_msg') )
+            const configIndex=this.DecimalConfig.findIndex(el=>el.Row==this.config.data[0].Data[index].DataTime)
+            if(configIndex>-1){
+              this.DecimalConfig.splice(configIndex,1)
+            }
+            if(index >= this.dateArr.length) {
+              this.config.textRowData.splice(index-this.dateArr.length,1)
+            }else {
+              this.dateArr.splice(index,1)
+              this.config.data.forEach(_ => {
+                _.Data.splice(index,1)
+              })
+            }
+            // 删除的是最后一行
+            if(!(index < this.config.data.length)){
+              resetStyle()
+            }
+        }else{
+          this.openSetDecimalDia('row',{},index)
         }
-        // 删除的是最后一行
-        if(!(index < this.config.data.length)){
-          resetStyle()
-        }
-        
       }
       if(!this.disabled && this.hasInit){
         this.$emit("autoSave")
@@ -761,6 +806,83 @@ export default {
       this.hideContextMenu()
     },
 
+    // 判断展示小数位数值还是原来的值
+    showCellValue(cell){
+      // console.log(cell)
+      let Value=''
+      if("Decimal" in cell&&cell.Decimal!=-1){
+        const multiplier = Math.pow(10, cell.Decimal);
+        const cellValue=+cell.Value
+        Value= cell.Decimal == 0 ? Math.round(cellValue) : Math.round(cellValue * multiplier) / multiplier;
+      }else{
+        Value=cell.ShowValue
+      }
+      return Value
+    },
+
+    //打开设置数据格式弹框
+    openSetDecimalDia(type,row,index){
+      this.ruleForm=JSON.parse(JSON.stringify({...row,Decimal:row.Decimal!=-1?row.Decimal:undefined}))
+      this.setType=type
+      this.setDecimalIndex=index
+      this.isSetDecimalDialog=true
+    },
+    // 保存
+    saveDecima(){
+      if(!isNaN(parseFloat(this.ruleForm.Decimal)) && isFinite(this.ruleForm.Decimal)){
+        if(this.setType=='col'){
+          console.log(this.ruleForm,this.config.data[this.setDecimalIndex])
+          const index=this.colMap.findIndex(el=>el.EdbInfoId==this.ruleForm.EdbInfoId)
+          if(index>-1){
+            this.colMap[index].Decimal=this.ruleForm.Decimal
+          }else{
+            this.colMap.push({
+              EdbInfoId:this.ruleForm.EdbInfoId,
+              Decimal:this.ruleForm.Decimal
+            })
+          }
+          this.ruleForm.Data.forEach(el=>{
+            el.Decimal=this.ruleForm.Decimal
+          })
+          this.config.data[this.setDecimalIndex]=JSON.parse(JSON.stringify(this.ruleForm))
+          console.log(this.colMap)
+          const configIndex=this.DecimalConfig.findIndex(el=>el.Col==this.ruleForm.EdbInfoId)
+          if(configIndex>-1){
+            this.DecimalConfig.splice(configIndex,1)
+          }
+          this.DecimalConfig.push({
+            Row:"",
+            Col:this.ruleForm.EdbInfoId,
+            Decimal:this.ruleForm.Decimal
+          })
+          console.log(this.DecimalConfig)
+        }else{
+          const cell=this.config.data[0].Data[this.setDecimalIndex]
+          this.dateMap[cell.DataTime]=this.ruleForm.Decimal
+          this.config.data.forEach(_ => {
+            _.Data[this.setDecimalIndex].Decimal=this.ruleForm.Decimal
+          })
+          const configIndex=this.DecimalConfig.findIndex(el=>el.Row==cell.DataTime)
+          if(configIndex>-1){
+            this.DecimalConfig.splice(configIndex,1)
+          }
+          this.DecimalConfig.push({
+            Row:cell.DataTime,
+            Col:0,
+            Decimal:this.ruleForm.Decimal
+          })
+          console.log(this.DecimalConfig)
+        }
+        this.isSetDecimalDialog=false
+      }else{
+        this.$message({
+          message:this.$t('OnlineExcelPage.please_set_number'), 
+          type: 'warning'
+        });
+      }
+      console.log(this.config.data)
+    },
+
     /* 保存时处理参数 */
     getSaveParams() {
       const { data,textRowData,order } = this.config;
@@ -771,11 +893,12 @@ export default {
           RelationEdbInfoList: cell.DataType===4?this.dealFormulaConstruction(cell.Value):[]
         }))
       })
-
+      console.log(data)
       let Data = data.map((_,index) => {
         return {
           EdbInfoId: _.EdbInfoId,
           EdbAliasName: _.EdbAliasName,
+          Decimal:_.Decimal!=-1?_.Decimal:-1,
           Tag: this.columnHeader[index],
           Data: _.Data.map(cell => ({
             ...cell,
@@ -790,6 +913,7 @@ export default {
         Sort: order,
         TextRowData,
         Data,
+        DecimalConfig:this.DecimalConfig
       }
       console.log(params)
       return params
@@ -810,11 +934,21 @@ export default {
     initSheetData(initData) {
       this.hasInit=false
       if(initData.Data) {
-        const { Data,Sort,TextRowData } = initData;
+        const { Data,Sort,TextRowData,DecimalConfig } = initData;
 
         this.config.order = Sort;
         this.config.data = Data;
         this.config.textRowData = TextRowData;
+        this.DecimalConfig=DecimalConfig?DecimalConfig:[]
+        this.colMap=[]
+        Data.forEach(el=>{
+          if(el.Decimal!=-1){
+            this.colMap.push({
+              EdbInfoId:el.EdbInfoId,
+              Decimal:el.Decimal
+            })
+          }
+        })
       }
       this.$nextTick(()=>{
         this.hasInit=true
@@ -1055,6 +1189,7 @@ export default {
     .item {
       padding: 10px 25px;
       cursor: pointer;
+      text-align: center;
       &:hover {
         background-color: #f5f7fa;
       }

+ 1 - 1
src/views/datasheet_manage/components/MixedTable.vue

@@ -125,7 +125,7 @@
                 :data-datacindex="cell_index"
                 :data-key="cell.Uid"
               >
-                {{isShowFormat(cell.ShowStyle)?cell.ShowFormatValue:cell.DataTime?cell.ShowValue:[7,5].includes(cell.DataType)?cell.ShowValue:cell.Value}}
+                {{isShowDecimal(cell)?showDecimalValue(cell):isShowFormat(cell.ShowStyle)?cell.ShowFormatValue:cell.DataTime?cell.ShowValue:[7,5].includes(cell.DataType)?cell.ShowValue:cell.Value}}
               </span>
 
               <span

+ 5 - 3
src/views/datasheet_manage/components/addDateCellDia.vue

@@ -116,18 +116,20 @@ export default {
       
       let earliestDate = this.$moment(Math.min(...dateArr)).format('YYYY-MM-DD');
       let latestDate  = this.$moment(Math.max(...dateArr)).format('YYYY-MM-DD');
-      
+      console.log(this.$parent.config.data)
       let res = this.formData.dateType === 1
         ? await sheetInterface.getCustomPastData({
           EdbInfoIdList: this.$parent.config.data.map(_ => _.EdbInfoId),
           Num: Number(this.formData.value),
-          EndDate: earliestDate
+          EndDate: earliestDate,
+          Decimal:this.$parent.config.data.map(_ => _.Decimal)
         })
         : await sheetInterface.getCustomFutureData({
           EdbInfoIdList: this.$parent.config.data.map(_ => _.EdbInfoId),
           DateType: 2,
           StartDate: latestDate,
-          EndDate: this.formData.endDate
+          EndDate: this.formData.endDate,
+          Decimal:this.$parent.config.data.map(_ => _.Decimal)
         })
 
       if(res.Ret !== 200) return

+ 15 - 4
src/views/datasheet_manage/components/batchSetDia.vue

@@ -2,9 +2,17 @@
     <div class="batch-set-dialog">
         <el-dialog :visible.sync="isOpenDialog" :close-on-click-modal="false" :modal-append-to-body="false"
             :title="$t('OnlineExcelPage.batch_settings')" @close="cancelHandle" custom-class="dialog" center
-            width="560px" v-dialogDrag>
+            :width="currentLang === 'en' ? '700px' : '560px'" v-dialogDrag>
             <div class="dialog-main">
                 <selectTarget ref="selectRef" @select="handleSelectTarget" :selectStyleType="3">
+                    <template v-slot:setDecimal>
+                        <div style="display: flex;justify-content: center;align-items: center;margin-left: 15px;">
+                            {{ $t('OnlineExcelPage.number_of_decimal_places') }}<el-input-number precision="0"
+                                style="width: 120px;margin-left: 10px;"
+                                :placeholder="$t('OnlineExcelPage.please_input')" v-model="Decimal"
+                                controls-position="right" :min="0" :max="30"></el-input-number>
+                        </div>
+                    </template>
                 </selectTarget>
                 <div class="dialog-main-content">
                     <div class="content-list" v-if="searchList.length">
@@ -27,7 +35,7 @@
             <div class="dia-bot">
                 <el-button type="primary" plain @click="cancelHandle">{{
                     $t("ETable.Btn.cancel_btn")
-                }}</el-button>
+                    }}</el-button>
                 <el-button type="primary" style="margin-right: 20px" @click="saveHandle">{{ $t("ETable.Btn.save_btn")
                     }}</el-button>
             </div>
@@ -50,10 +58,13 @@ export default {
         }
     },
     computed: {
-
+        currentLang() {
+            return this.$store.state.lang
+        }
     },
     data() {
         return {
+            Decimal: undefined,
             isOpenDialog: false,
             searchList: [],
             draggingIndex: null,
@@ -88,7 +99,7 @@ export default {
         // 保存
         async saveHandle() {
             this.cancelHandle()
-            this.$emit('moreSetSave', this.searchList, this.firstId)
+            this.$emit('moreSetSave', this.searchList, this.firstId, this.Decimal)
         },
         // 选中
         handleSelectTarget(item) {

+ 27 - 5
src/views/datasheet_manage/components/toolBarSection.vue

@@ -57,6 +57,10 @@
             </el-dropdown>
           </div>
         </template>
+        <template v-if="tool.type==='number'">
+          {{ tool.title }}
+          <el-input-number  precision="0"  style="width: 120px;margin-left: 10px;" :placeholder="$t('OnlineExcelPage.please_input')" v-model="option.decimal" controls-position="right" @change="changeCellsPoint(tool.key)" :min="0" :max="30"></el-input-number>
+        </template>
       </button>
     </div>
   </div>
@@ -74,7 +78,7 @@ export default {
     */
     tools:{
       type:'String',
-      default:'cell-point-type,cell-merge,font-color,condition-format',
+      default:'cell-point-type,cell-merge,font-color,condition-format,cell-decimal',
     },
     // 回显参数
     echoParameter:{
@@ -88,7 +92,7 @@ export default {
     cell:{
         handler(nval) {
         if(nval) {
-          // console.log(nval)
+          console.log(nval)
           this.cellArray = Array.isArray(nval)?nval:[nval]
           this.option = this.cellArray.length?this.cellArray[0].ShowStyle?{
             ...JSON.parse(this.cellArray[0].ShowStyle)
@@ -97,7 +101,7 @@ export default {
             pn: 0,//ponitNum
           }:{
             nt: "",//numberType
-            pn: 0,//ponitNum
+            pn: 0,//ponitNum,
           }
         }else{
           this.cellArray=[]
@@ -115,6 +119,7 @@ export default {
       option: {
         nt: "",//numberType  number percent
         pn: 0,//ponitNum
+        decimal:undefined
       },
       cellArray:[],
       colorObject:{
@@ -185,6 +190,13 @@ export default {
           title:'' ,
           tool:'cell-point-type'
         },
+        { 
+          icon: '',
+          key: 'decimal',
+          type:'number',
+          title:this.$t('OnlineExcelPage.number_of_decimal_places'),
+          tool:'cell-decimal'
+        },
         { 
           icon: `<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
             <path d="M17.9 1.45H2.1C1.55 1.45 1.1 1.9 1.1 2.45V18.25C1.1 18.8 1.55 19.25 2.1 19.25H17.9C18.45 19.25 18.9 18.8 18.9 18.25V2.45C18.9 1.9 18.45 1.45 17.9 1.45ZM17.7 6.54H12.87V2.65H17.7V6.54ZM7.15 6.54V2.65H11.68V6.54H7.15ZM5.95 2.65V6.54H2.3V2.65H5.95ZM5.95 12.23H2.3V7.74H5.95V12.23ZM2.3 13.43H5.95V18.06H2.3V13.43ZM7.15 18.05V7.74H17.7V18.05H7.15Z" fill="#333333"/>
@@ -321,7 +333,11 @@ export default {
     changeCellsPoint(key){
       this.cellArray.map(item =>{
         if(!item.merData || item.merData.type=='merge'){
-          this.changeCellPoint(key,item)
+          if(key==='decimal'){
+            this.changeCellDecimal(item)
+          }else{
+            this.changeCellPoint(key,item)
+          }
         }
       })
     },
@@ -360,13 +376,19 @@ export default {
         }
       })
     },
+    changeCellDecimal(item) {
+      if(!isNumberVal(item.ShowValue)) return
+      const styleCss = item.ShowStyle ? JSON.parse(item.ShowStyle) : {};
+      item.ShowStyle = JSON.stringify({...this.option,last:!isNaN(parseFloat(this.option.decimal)) && isFinite(this.option.decimal)?styleCss.last?styleCss.last:'decimal':styleCss.last=='decimal'?this.option.nt=='percent'?'nt':'':styleCss.last})
+    },
     /* 处理百分位或数字格式 */
     changeCellType(item) {
       if(!isNumberVal(item.ShowValue)) return
       this.option.pn = 0
 
       item.ShowFormatValue = transNumPercentType(item.ShowValue,this.option.nt)
-      item.ShowStyle = JSON.stringify(this.option)
+      const styleCss = item.ShowStyle ? JSON.parse(item.ShowStyle) : {};
+      item.ShowStyle = JSON.stringify({...this.option,last:this.option.nt!='percent'?styleCss.last=='nt'?!isNaN(parseFloat(this.option.decimal)) && isFinite(this.option.decimal)?'decimal':'':styleCss.last:styleCss.last?styleCss.last:'nt'})
       // this.$emit('updateCell',{
       //   ShowStyle: JSON.stringify(this.option),
       //   ShowFormatValue: nval

+ 34 - 2
src/views/datasheet_manage/customSheetEdit.vue

@@ -207,10 +207,22 @@ export default {
     },
     
     // 批量设置
-    async moreSetSave(list,firstId){
-      // console.log(list,firstId)
+    async moreSetSave(list,firstId,decimalVal){
+      console.log(list,firstId,decimalVal)
       //false 第一项没发生变化
       let tag=false
+      let Decimal=[]
+      console.log()
+      const colMap=this.$refs.customTableRef.colMap
+      const flagSet=!isNaN(parseFloat(decimalVal)) && isFinite(decimalVal)
+      list.forEach(el=>{
+        if(flagSet){
+          Decimal.push(decimalVal)
+        }else{
+          let index=colMap.findIndex(item=>el.EdbInfoId==item.EdbInfoId)
+          Decimal.push(index>-1?colMap[index].Decimal:-1)
+        }
+      })
       if(list.length){
         tag=firstId!=list[0].EdbInfoId
       }
@@ -219,10 +231,29 @@ export default {
           Num:this.$refs.customTableRef.config.data.length?this.$refs.customTableRef.dateArr.length:12,
           SortType: this.$refs.customTableRef.config.order===1 ? 'desc' : 'asc',
           DateList:tag?[]:this.$refs.customTableRef.config.data.length? this.$refs.customTableRef.dateArr:[],
+          Decimal
       }
       const res = await dataBaseInterface.moreSetGetList(params);
       // console.log(res);
       if (res.Ret !== 200) return;
+      this.$refs.customTableRef.dateMap={}
+      console.log(res.Data)
+      this.$refs.customTableRef.DecimalConfig=res.Data.map(el=>{
+        return {
+          Row:"",
+          Col:el.EdbInfoId,
+          Decimal:el.Decimal
+        }
+      })
+      console.log(this.$refs.customTableRef.DecimalConfig)
+      if(flagSet){
+        this.$refs.customTableRef.colMap=res.Data.map(el=>{
+          return {
+            EdbInfoId:el.EdbInfoId,
+            Decimal:el.Decimal
+          }
+        })
+      }
       this.sheetForm.SourcesFrom = this.setDefaultSource()
       this.sheetSourceFrom = JSON.parse(this.sheetForm.SourcesFrom)
       this.$refs.customTableRef.config.data=[]
@@ -323,6 +354,7 @@ export default {
       this.updateSourceFrom(Data.ExcelSource)
       this.$refs.customTableRef.updateEdbData({
         Data: Data.Data.map(_ => ({..._,DataTimeType: 1,})),
+        Decimal:-1,
         EdbAliasName: '',
         EdbName,
         Unit,

+ 27 - 0
src/views/datasheet_manage/mixins/conditionTableMixin.js

@@ -249,6 +249,33 @@ export default {
             }
             return indices;
         },
+        // 展示小数
+        showDecimalValue(cell) {
+            const styleCss = cell.ShowStyle ? JSON.parse(cell.ShowStyle) : {};
+            let Value = ''
+            if (styleCss.nt == 'percent' && cell.ShowFormatValue.indexOf('%') > -1) {
+                if (styleCss.last == 'nt') {
+                    Value = this.commonDecimalValue(cell.ShowValue * 100, styleCss.decimal) + '%'
+                } else {
+                    Value = (parseInt(this.commonDecimalValue(cell.ShowValue, styleCss.decimal) * 100)) + '%'
+                }
+
+            } else {
+                Value = this.commonDecimalValue(cell.ShowValue, styleCss.decimal)
+            }
+            return Value
+        },
+        commonDecimalValue(values, decimal) {
+            const multiplier = Math.pow(10, decimal);
+            return decimal == 0 ? Math.round(values) : Math.round(values * multiplier) / multiplier;
+        },
+        // 是否展示小数
+        isShowDecimal(cell) {
+            console.log(cell,111)
+            const styleCss = cell.ShowStyle ? JSON.parse(cell.ShowStyle) : {};
+            let tag = !isNaN(parseFloat(cell.ShowValue)) && isFinite(cell.ShowValue)
+            return tag ? !isNaN(parseFloat(styleCss.decimal)) && isFinite(styleCss.decimal) : false
+        },
         // 由于在showStyle做了背景色及字体颜色处理,解决判断冲突
         isShowFormat(style, type = "css") {
             const styleCss = style ? JSON.parse(style) : {};