Browse Source

各分区品类实售明细

chenrui 1 year ago
parent
commit
9ad672a38c
1 changed files with 11 additions and 11 deletions
  1. 11 11
      src/views/reportData/regionTypeSalesReport/list.vue

+ 11 - 11
src/views/reportData/regionTypeSalesReport/list.vue

@@ -16,17 +16,17 @@
           @keyup.enter.native="handleSearch">
           <a-row :gutter="15">
             <a-col :md="6" :sm="24">
-              <a-form-model-item label="审核时间" prop="time">
+              <a-form-model-item label="销售审核时间" prop="time">
                 <rangeDate ref="rangeDate" :value="queryParam.time" @change="dateChange"/>
               </a-form-model-item>
             </a-col>
             <a-col :md="6" :sm="24">
               <a-form-model-item label="销售状态" prop="salesStatusType">
                 <v-select
-                    v-model="queryParam.salesStatusType"
-                    code="SALES_STATUS"
-                    placeholder="请选择销售状态"
-                    allowClear></v-select>
+                  v-model="queryParam.salesStatusType"
+                  code="SALES_STATUS"
+                  placeholder="请选择销售状态"
+                  allowClear></v-select>
               </a-form-model-item>
             </a-col>
             <a-col :md="6" :sm="24" v-if="activeKey==0">
@@ -35,10 +35,10 @@
               </a-form-model-item>
             </a-col>
             <a-col :md="6" :sm="24">
-                <a-form-model-item label="区域负责人">
-                    <BizUser v-model="queryParam.subareaArea.bizUserSn"></BizUser>
-                </a-form-model-item>
-              </a-col>
+              <a-form-model-item label="区域负责人">
+                <BizUser v-model="queryParam.subareaArea.bizUserSn"></BizUser>
+              </a-form-model-item>
+            </a-col>
             <!--  <template v-if="advanced && activeKey==0">
               <a-col :md="6" :sm="24">
                 <a-form-model-item prop="dealerProvinceSn" style="margin: 0;" label="地区">
@@ -230,11 +230,11 @@ export default {
         if (item.customRender == 'amount') {
           mw = 15
           item.customRender = function (text) { return (text || text == 0) ? _this.toThousands(text) : '--' }
-        }else{
+        } else {
           item.customRender = function (text) { return text || '--' }
         }
         const w = item.title.length * mw
-        const tw = w <= 80 ? mw*5 : w
+        const tw = w <= 80 ? mw * 5 : w
         item.width = tw + 'px'
         this.tableWidth = this.tableWidth + tw
       })