Browse Source

Merge branch 'feature/ci-test2' of Epans/modernDairy into master

duanxiaoduan 1 year ago
parent
commit
3e9a07f840
54 changed files with 827 additions and 12036 deletions
  1. 4 4
      .env.development
  2. 0 1
      .eslintignore
  3. BIN
      dist.zip
  4. 0 0
      dist/index.html
  5. 6 1
      src/api/common.js
  6. 1 0
      src/views/basic/otherinfo/index.vue
  7. 52 12
      src/views/cost/diesel/index.vue
  8. 9 24
      src/views/custom/contractManagement/index.vue
  9. 14 1
      src/views/custom/custom/index.vue
  10. 159 2
      src/views/custom/outStock/index.vue
  11. 18 2
      src/views/custom/purchase/index.vue
  12. 12 0
      src/views/custom/storage/index.vue
  13. 475 145
      src/views/custom/subscribe/index.vue
  14. 0 1617
      src/views/custom/subscribe/index1.vue
  15. 0 1700
      src/views/custom/subscribe/index2.vue
  16. 0 1847
      src/views/custom/subscribe/index3.vue
  17. 1 1
      src/views/maintenance/repair/index.vue
  18. 14 2
      src/views/maintenance/subcontractingMainten/tabPage/tab1.vue
  19. 1 0
      src/views/report/equipmentIndex/index.vue
  20. 61 107
      src/views/report/maintenanceFault/index.vue
  21. 0 592
      src/views/report/queryCombustion/index11.vue
  22. 0 132
      src/views/report/queryElec/components/BarChartDept.vue
  23. 0 115
      src/views/report/queryElec/components/BarChartPasture.vue
  24. 0 80
      src/views/report/queryElec/components/BarChartPastureMonth.vue
  25. 0 165
      src/views/report/queryElec/components/Contrast.vue
  26. 0 120
      src/views/report/queryElec/components/PieChartDepartment.vue
  27. 0 109
      src/views/report/queryElec/components/PieChartType.vue
  28. 0 81
      src/views/report/queryElec/components/TodoList/Todo.vue
  29. 0 320
      src/views/report/queryElec/components/TodoList/index.scss
  30. 0 127
      src/views/report/queryElec/components/TodoList/index.vue
  31. 0 56
      src/views/report/queryElec/components/mixins/resize.js
  32. 0 580
      src/views/report/queryElec/index11.vue
  33. 0 128
      src/views/report/queryRepair/components/BarChartDept.vue
  34. 0 114
      src/views/report/queryRepair/components/BarChartPasture.vue
  35. 0 80
      src/views/report/queryRepair/components/BarChartPastureMonth.vue
  36. 0 165
      src/views/report/queryRepair/components/Contrast.vue
  37. 0 120
      src/views/report/queryRepair/components/PieChartDepartment.vue
  38. 0 116
      src/views/report/queryRepair/components/PieChartType.vue
  39. 0 81
      src/views/report/queryRepair/components/TodoList/Todo.vue
  40. 0 320
      src/views/report/queryRepair/components/TodoList/index.scss
  41. 0 127
      src/views/report/queryRepair/components/TodoList/index.vue
  42. 0 56
      src/views/report/queryRepair/components/mixins/resize.js
  43. 0 833
      src/views/report/queryRepair/index11.vue
  44. 0 130
      src/views/report/queryWater/components/BarChartDept.vue
  45. 0 115
      src/views/report/queryWater/components/BarChartPasture.vue
  46. 0 80
      src/views/report/queryWater/components/BarChartPastureMonth.vue
  47. 0 166
      src/views/report/queryWater/components/Contrast.vue
  48. 0 120
      src/views/report/queryWater/components/PieChartDepartment.vue
  49. 0 116
      src/views/report/queryWater/components/PieChartType.vue
  50. 0 81
      src/views/report/queryWater/components/TodoList/Todo.vue
  51. 0 320
      src/views/report/queryWater/components/TodoList/index.scss
  52. 0 127
      src/views/report/queryWater/components/TodoList/index.vue
  53. 0 56
      src/views/report/queryWater/components/mixins/resize.js
  54. 0 642
      src/views/report/queryWater/index11.vue

+ 4 - 4
.env.development

@@ -6,13 +6,13 @@ ENV = 'development'
 # 线上正式地址
 #  VUE_APP_BASE_API = 'http://eam.modernfarming.cn:8000/'
 # 白少后台本地
-# VUE_APP_BASE_API = 'http://192.168.1.77:8082/'
+VUE_APP_BASE_API = 'http://192.168.1.77:8082/'
 # 线上测试
 # VUE_APP_BASE_API = 'http://tmrwatch.cn:8082/'
-VUE_APP_BASE_API = 'http://tmrwatch.cn:8082/'
- # VUE_APP_BASE_API = 'http://127.0.0.1:8082/'
+# VUE_APP_BASE_API = 'http://tmrwatch.cn:8082/'
+# VUE_APP_BASE_API = 'http://127.0.0.1:8082/'
 
- # VUE_APP_BASE_API = 'http://36.155.144.182:18090/'
+# VUE_APP_BASE_API = 'http://36.155.144.182:18090/'
 
 
 

+ 0 - 1
.eslintignore

@@ -2,4 +2,3 @@ build/*.js
 src/assets
 public
 dist
-*.vue

BIN
dist.zip


File diff suppressed because it is too large
+ 0 - 0
dist/index.html


+ 6 - 1
src/api/common.js

@@ -191,7 +191,12 @@ export function removeimage(data) {
     data
   })
 }
-
+export function getJson(url,data) {
+  return request({
+    url: process.env.VUE_APP_BASE_API + url + data,
+    method: 'get'
+  })
+}
 export function getRecuData(data) {
   return request({
     url: '/authdata/GetRecuDataByName',

+ 1 - 0
src/views/basic/otherinfo/index.vue

@@ -41,6 +41,7 @@
           <span>{{ scope.$index + (pageNum-1) * pageSize + 1 }}</span>
         </template>
       </el-table-column>
+      <el-table-column label="牧场" min-width="110px" align="center" prop="pastureName" />
       <el-table-column label="部门" min-width="110px" align="center" prop="departmentName" />
       <el-table-column label="油卡编号" min-width="110px" align="center" prop="cardNumber" />
       <el-table-column label="油卡类型" min-width="110px" align="center" prop="cardType" />

+ 52 - 12
src/views/cost/diesel/index.vue

@@ -129,6 +129,7 @@
                 :disabled="dialogStatus==='update'"
                 @select="handleformNameSelect"
                 @blur="blurformNameSelect"
+                style="width: 100%;"
               >
                 <template slot-scope="{ item }">
                   <div class="name" style="display: inline;">{{ item.cardCode }}</div>
@@ -137,7 +138,7 @@
 
             </el-form-item>
           </el-col>
-          <el-col :span="8">
+         <el-col :span="8">
             <el-form-item label="单价:" prop="price">
               <el-input ref="price" v-model="temp.price" />
             </el-form-item>
@@ -151,19 +152,26 @@
         <el-row>
           <el-col :span="8">
             <el-form-item label="设备名称:" prop="assetName">
-              <el-autocomplete ref="assetName" v-model="temp.assetName" value-key="assetName" class="inline-input" :fetch-suggestions="formNameSearch" placeholder="" disabled @select="handleformNameSelect" />
+              <el-autocomplete ref="assetName" style="width: 100%;" v-model="temp.assetName" value-key="assetName" class="inline-input" :fetch-suggestions="formNameSearch" placeholder="" disabled @select="handleformNameSelect" />
             </el-form-item>
           </el-col>
 
           <el-col :span="8">
             <el-form-item label="牧场设备编号:" prop="eqCode">
-              <el-autocomplete ref="eqCode" v-model="temp.eqCode" value-key="eqCode" class="inline-input" :fetch-suggestions="formNumberSearch" placeholder="" disabled @select="handleformNameSelect">
+              <el-autocomplete ref="eqCode" style="width: 100%;" v-model="temp.eqCode" value-key="eqCode" class="inline-input" :fetch-suggestions="formNumberSearch" placeholder="" disabled @select="handleformNameSelect">
                 <template slot-scope="{ item }">
                   <div class="name" style="display: inline;">{{ item.assetNumber }}</div>
                 </template>
               </el-autocomplete>
             </el-form-item>
           </el-col>
+          <el-col :span="8">
+            <el-form-item label="柴油类型:" prop="oilType">
+              <el-select style="width: 100%;" v-model="temp.oilType" placeholder="柴油类型" class="filter-item">
+                <el-option v-for="item in dieselTypeList" :key="item.value" :label="item.label" :value="item.value" />
+              </el-select>
+            </el-form-item>
+          </el-col>
         </el-row>
         <el-row>
           <el-col :span="8">
@@ -193,7 +201,7 @@
           </el-col>
           <el-col :span="8">
             <el-form-item label="录入人:" prop="inputId">
-              <el-select v-model="temp.inputId" placeholder="负责人" :disabled="dialogStatus==='update'" class="filter-item">
+              <el-select v-model="temp.inputId" placeholder="负责人" :disabled="dialogStatus==='update'" style="width: 100%;">
                 <el-option v-for="item in findAllEmploye" :key="item.id" :label="item.name" :value="item.id" />
               </el-select>
             </el-form-item>
@@ -309,7 +317,7 @@
 <script>
 // 引入
 require('script-loader!file-saver')
-import { GetDataByName, GetDataByNames, PostDataByName, checkButtons, ExecDataByConfig, failproccess, GetAccount } from '@/api/common'
+import { GetDataByName, GetDataByNames, PostDataByName, checkButtons, ExecDataByConfig, failproccess, GetAccount,getJson } from '@/api/common'
 // import {  DownloadExcel, GetDataByNameXlsx } from '@/api/common'
 import waves from '@/directive/waves'
 import { parseTime, sortChange } from '@/utils/index.js'
@@ -398,7 +406,8 @@ export default {
         note: '',
         eqId: '',
         eqCode: '',
-        oilcardId: ''
+        oilcardId: '',
+        oilType:''
       },
       dialogFormVisible: false,
       dialogStatus: '',
@@ -426,6 +435,7 @@ export default {
         cardNumber: [{ required: true, message: '必填', trigger: 'blur' }],
         price: [{ required: true, message: '必填', trigger: 'blur' }],
         oilAmount: [{ required: true, message: '必填', trigger: 'blur' }],
+        oilType: [{ required: true, message: '必填', trigger: 'blur' }],
         endAmount: [{ type: 'number', required: true, validator: (rule, value, callback) => {
           console.log(rule, value, callback)
           if (!value) {
@@ -456,7 +466,8 @@ export default {
       isPercentage: false,
       percentage: 1,
       dialogFormDelete: false,
-      deleteTemp: {}
+      deleteTemp: {},
+      dieselTypeList:[]
     }
   },
 
@@ -489,9 +500,21 @@ export default {
     })
     this.get_select_list()
     this.get_table_data()
+    this.getDieselTypeList()
   },
 
   methods: {
+    getDieselTypeList(){
+      let url = 'authdata/diesel/type/list'
+      let data = ''
+      getJson(url, data).then(response => {
+        if (response.code == 200) {
+          this.dieselTypeList = response.data.diesel_type
+        } else {
+          this.dieselTypeList = []
+        }
+      })
+    },
     tableSort1(column) {
       sortChange(column, this.list)
     },
@@ -880,10 +903,13 @@ export default {
       }, 1000)
       this.$refs['temp'].validate(valid => {
         if (valid) {
+          if(this.temp.oilType){
+            var oilName = this.dieselTypeList.find(obj => obj.value == this.temp.oilType).label
+          }
+          this.$set(this.temp,'oilName',oilName)
           this.postDataPramas.common = { 'returnmap': '0' }
           this.postDataPramas.data = []
           this.postDataPramas.data[0] = { 'name': 'insertDiesel', 'type': 'e', 'parammaps': {
-
             'pastureId': this.temp.pastureId,
             'selTime': this.temp.selTime,
             'oilClass': this.temp.oilClass,
@@ -897,9 +923,10 @@ export default {
             'cardNumber': this.temp.cardNumber,
             'price': this.temp.price,
             'empId': this.temp.empId,
-            'inputId': this.temp.inputId
+            'inputId': this.temp.inputId,
+            'oilType':this.temp.oilType,
+            'oilName':this.temp.oilName,
           }}
-
           this.postDataPramas.data[1] = { 'name': 'updateOilCardExecData', 'type': 'e',
             'parammaps': {
               'id': this.temp.oilcardId,
@@ -935,8 +962,13 @@ export default {
       setTimeout(() => {
         this.isokDisable = false
       }, 1000)
+
       this.$refs['temp'].validate(valid => {
         if (valid) {
+          if(this.temp.oilType){
+            var oilName = this.dieselTypeList.find(obj => obj.value == this.temp.oilType).label
+          }
+          this.$set(this.temp,'oilName',oilName)
           this.postDataPramas.common = { 'returnmap': '0' }
           this.postDataPramas.data = []
           this.postDataPramas.data[0] = { 'name': 'insertDiesel', 'type': 'e', 'parammaps': {
@@ -954,7 +986,9 @@ export default {
             'cardNumber': this.temp.cardNumber,
             'price': this.temp.price,
             'empId': this.temp.empId,
-            'inputId': this.temp.inputId
+            'inputId': this.temp.inputId,
+            'oilType':this.temp.oilType,
+            'oilName':this.temp.oilName,
           }}
 
           this.postDataPramas.data[1] = { 'name': 'updateOilCardExecData', 'type': 'e',
@@ -996,6 +1030,10 @@ export default {
     edit_dialog_save() {
       this.$refs['temp'].validate(valid => {
         if (valid) {
+          if(this.temp.oilType){
+            var oilName = this.dieselTypeList.find(obj => obj.value == this.temp.oilType).label
+          }
+          this.$set(this.temp,'oilName',oilName)
           this.postDataPramas.common = { 'returnmap': '0' }
           this.postDataPramas.data = []
           this.postDataPramas.data[0] = { 'name': 'updateDieselExecData', 'type': 'e', 'parammaps': {
@@ -1003,7 +1041,9 @@ export default {
             'oilAmount': this.temp.oilAmount,
             'note': this.temp.note,
             'nowPrice': this.temp.price * this.temp.oilAmount,
-            'price': this.temp.price
+            'price': this.temp.price,
+            'oilType':this.temp.oilType,
+            'oilName':this.temp.oilName,
           }}
 
           this.postDataPramas.data[1] = { 'name': 'updateOilCardLAExecData', 'type': 'e',

+ 9 - 24
src/views/custom/contractManagement/index.vue

@@ -2144,15 +2144,10 @@ export default {
               this.$message({ type: 'error', message: '计划量请输入正整数', duration: 2000 })
               return false
             }
-            if (parseFloat(this.tab1.detailsSpareParts.listAdd[i].price) == 0) {
-              this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
+            var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,2})?$/
+            if (rulesPrice.test(this.tab1.detailsSpareParts.listAdd[i].price) == false) {
+              this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后两位', duration: 2000 })
               return false
-            } else {
-              var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,5})?$/
-              if (rulesPrice.test(this.tab1.detailsSpareParts.listAdd[i].price) == false) {
-                this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                return false
-              }
             }
           }
         }
@@ -2247,15 +2242,10 @@ export default {
               this.$message({ type: 'error', message: '计划量请输入正整数', duration: 2000 })
               return false
             } else {
-              if (parseFloat(this.tab1.detailsSpareParts.listAdd[i].price) == 0) {
-                this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
+              var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,2})?$/
+              if (rulesPrice.test(this.tab1.detailsSpareParts.listAdd[i].price) == false) {
+                this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后两位', duration: 2000 })
                 return false
-              } else {
-                var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,5})?$/
-                if (rulesPrice.test(this.tab1.detailsSpareParts.listAdd[i].price) == false) {
-                  this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                  return false
-                }
               }
             }
           }
@@ -2561,15 +2551,10 @@ export default {
                 this.$message({ type: 'error', message: '计划量请输入正整数', duration: 2000 })
                 return false
               } else {
-                if (parseFloat(this.tab1.detailsSpareParts.listAdd[i].price) == 0) {
-                  this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
+                var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,2})?$/
+                if (rulesPrice.test(this.tab1.detailsSpareParts.listAdd[i].price) == false) {
+                  this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后两位', duration: 2000 })
                   return false
-                } else {
-                  var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,5})?$/
-                  if (rulesPrice.test(this.tab1.detailsSpareParts.listAdd[i].price) == false) {
-                    this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                    return false
-                  }
                 }
               }
             }

+ 14 - 1
src/views/custom/custom/index.vue

@@ -45,6 +45,9 @@
         :checked-keys="defaultCheckedKeys"
         @popoverHide="popoverHide"
       />
+      <el-select v-model="getdataListParm.parammaps.purchase_type" clearable style="width: 140px;" placeholder="申购状态" class="filter-item">
+        <el-option v-for="item in subscriptionStatusList" :key="item.id" :label="item.name" :value="item.id" />
+      </el-select>
       <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="form_search">搜索</el-button>
       <div>
         <el-button v-if="isCustomTemplate" v-waves class="filter-item" type="info" icon="el-icon-tickets" @click="handleDownloadTemp">模板</el-button>
@@ -162,6 +165,14 @@
           <span>{{ scope.row.statue }}</span>
         </template>
       </el-table-column>
+      <el-table-column label="申购状态" min-width="80px" align="center">
+        <template slot-scope="scope">
+          <span v-if="scope.row.purchase_type == 1">暂估</span>
+          <span v-else-if="scope.row.purchase_type == 2">垫付</span>
+          <span v-else-if="scope.row.purchase_type == 3">赠品</span>
+          <span v-else>正常</span>
+        </template>
+      </el-table-column>
       <el-table-column label="操作" align="center" width="200px" class-name="small-padding fixed-width" fixed="right">
         <template slot-scope="{row}">
           <el-button v-if="isCustomSee" type="primary" size="mini" @click="form_see(row)">查看</el-button>
@@ -692,6 +703,7 @@ export default {
       //   }
       // },
       // ------------------------------------------
+      subscriptionStatusList:[{id:0,name:'正常'},{id:1,name:'暂估'},{id:3,name:'赠品'}],//申购状态
       customList: [{ id: 0, name: '全部库存' }, { id: 1, name: '库存不为零' }],
       isCustomTemplate: [], isCustomImport: [], isCustomExport: [], isCustomSee: [],isCustomChange:[],
       findAllProvider: [],
@@ -747,7 +759,8 @@ export default {
           warnings: '',
           reportery: 1,
           specification: '',
-          location: ''
+          location: '',
+          purchase_type:''
         }
       },
       list: [],

+ 159 - 2
src/views/custom/outStock/index.vue

@@ -344,6 +344,7 @@
                   <el-radio v-if="isOutStockMethod2" v-model="createTemp.useType" :label="1">手动出库</el-radio>
                   <el-radio v-if="isOutStockMethod3" v-model="createTemp.useType" :label="2">调拨出库</el-radio>
                   <el-radio v-if="isOutStockMethod4" v-model="createTemp.useType" :label="5">报废出库</el-radio>
+                  <el-radio v-if="isOutStockMethod5" v-model="createTemp.useType" :label="6">青贮出库</el-radio>
                 </el-radio-group>
               </el-form-item>
             </el-col>
@@ -389,6 +390,11 @@
                 </el-select>
               </el-form-item>
             </el-col>
+            <!-- <el-col v-if="No2 && createTemp.useType == 6" :span="8">
+              <el-form-item label="青贮单号:" prop="greenFodderNumber">
+                <el-input ref="greenFodderNumber" v-model="createTemp.greenFodderNumber" maxlength="20" />
+              </el-form-item>
+            </el-col> -->
             <el-col v-if="isReceiveTime2" :span="8">
               <el-form-item label="出库日期:" prop="receiveTime">
                 <el-date-picker
@@ -753,27 +759,43 @@
                   <el-radio v-model="seeTemp.useType" :label="1">手动出库</el-radio>
                   <el-radio v-model="seeTemp.useType" :label="4">调拨出库</el-radio>
                   <el-radio v-model="seeTemp.useType" :label="5">报废出库</el-radio>
+                  <el-radio v-model="seeTemp.useType" :label="6">青贮出库</el-radio>
                 </el-radio-group>
                 <el-radio-group v-if="seeTemp.useType == 2" v-model="seeTemp.useType" disabled>
                   <el-radio v-model="seeTemp.useType" :label="2" checked>领用出库</el-radio>
                   <el-radio v-model="seeTemp.useType" :label="1">手动出库</el-radio>
                   <el-radio v-model="seeTemp.useType" :label="4">调拨出库</el-radio>
                   <el-radio v-model="seeTemp.useType" :label="5">报废出库</el-radio>
+                  <el-radio v-model="seeTemp.useType" :label="6">青贮出库</el-radio>
                 </el-radio-group>
                 <el-radio-group v-if="seeTemp.useType == 3" v-model="seeTemp.useType" disabled>
                   <el-radio v-model="seeTemp.useType" :label="3" checked>领用出库</el-radio>
                   <el-radio v-model="seeTemp.useType" :label="1">手动出库</el-radio>
                   <el-radio v-model="seeTemp.useType" :label="4">调拨出库</el-radio>
                   <el-radio v-model="seeTemp.useType" :label="5">报废出库</el-radio>
+                  <el-radio v-model="seeTemp.useType" :label="6">青贮出库</el-radio>
                 </el-radio-group>
                 <el-radio-group v-if="seeTemp.useType == 5" v-model="seeTemp.useType" disabled>
                   <el-radio v-model="seeTemp.useType" :label="3">领用出库</el-radio>
                   <el-radio v-model="seeTemp.useType" :label="1">手动出库</el-radio>
                   <el-radio v-model="seeTemp.useType" :label="4">调拨出库</el-radio>
                   <el-radio v-model="seeTemp.useType" :label="5" checked>报废出库</el-radio>
+                  <el-radio v-model="seeTemp.useType" :label="6">青贮出库</el-radio>
+                </el-radio-group>
+                <el-radio-group v-if="seeTemp.useType == 6" v-model="seeTemp.useType" disabled>
+                  <el-radio v-model="seeTemp.useType" :label="3">领用出库</el-radio>
+                  <el-radio v-model="seeTemp.useType" :label="1">手动出库</el-radio>
+                  <el-radio v-model="seeTemp.useType" :label="4">调拨出库</el-radio>
+                  <el-radio v-model="seeTemp.useType" :label="5">报废出库</el-radio>
+                  <el-radio v-model="seeTemp.useType" :label="6" checked>青贮出库</el-radio>
                 </el-radio-group>
               </el-form-item>
             </el-col>
+           <!-- <el-col :span="8" v-if="seeTemp.useType == 6">
+              <el-form-item v-if="oddCodeAllo" label="青贮单号:" prop="greenFodderNumber">
+                <el-input ref="oddCode" v-model="seeTemp.greenFodderNumber" disabled />
+              </el-form-item>
+            </el-col> -->
             <el-col :span="8">
               <el-form-item v-if="oddCodeAllo" label="领用单号:" prop="oddCode">
                 <el-input ref="oddCode" v-model="seeTemp.oddCode" disabled />
@@ -1094,7 +1116,7 @@ export default {
       dialogPvVisible: false,
       // 校验规则
       // -----------------------------------------
-      isOutStockAdd: [], isReceiveTemplate: [], isOutStockImport: [], isOutStockExport: [], isOutStockSee: [], isOutStockDelete: [], isOutStockMethod1: [], isOutStockMethod2: [], isOutStockMethod3: [],isOutStockMethod4:[],
+      isOutStockAdd: [], isReceiveTemplate: [], isOutStockImport: [], isOutStockExport: [], isOutStockSee: [], isOutStockDelete: [], isOutStockMethod1: [], isOutStockMethod2: [], isOutStockMethod3: [],isOutStockMethod4:[],isOutStockMethod5:[],
       isEasSynchronization: [], isManualSynchronization: [], isCloseSynchronization: [], isIgnoreSynchronization: [],
       rules: {},
       rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
@@ -1216,7 +1238,9 @@ export default {
         pastureId: Cookies.get('pastureid'),
         receiveTime: parseTime(new Date(), '{y}-{m}-{d}'),
         applicatId: Cookies.get('employeid'),
-        departmentId: Cookies.get('departmentid')
+        departmentId: Cookies.get('departmentid'),
+        greenFodderNumber:'',
+        note:''
       },
       requestSparePart: {
         name: 'getPartsListCK',
@@ -1531,6 +1555,10 @@ export default {
       const isOutStockMethod4 = checkButtons(this.$store.state.user.buttons, OutStockMethod4)
       this.isOutStockMethod4 = isOutStockMethod4
 
+      const OutStockMethod5 = 'customs:outStock:method5'
+      const isOutStockMethod5 = checkButtons(this.$store.state.user.buttons, OutStockMethod5)
+      this.isOutStockMethod5 = isOutStockMethod5
+
       const EasSynchronization = 'customs:outStock:easSynchronization'
       const isEasSynchronization = checkButtons(this.$store.state.user.buttons, EasSynchronization)
       this.isEasSynchronization = isEasSynchronization
@@ -1694,6 +1722,8 @@ export default {
         return '调拨出库'
       } else if (cellValue.useType === 5) {
         return '报废出库'
+      } else if (cellValue.useType === 6) {
+        return '青贮出库'
       }
     },
 
@@ -1786,6 +1816,8 @@ export default {
       this.createTemp.applicatId = parseInt(Cookies.get('employeid'))
       this.listAdd = []
       this.createTemp.useForm = ''
+      this.createTemp.greenFodderNumber = ''
+      this.createTemp.note = ''
       this.No1 = true
       this.No2 = false
       this.No3 = false
@@ -1866,6 +1898,19 @@ export default {
         this.No4 = true
         // 调拨数量/出库数量
         this.allo = false
+      }else if(val === 6){
+        // 报废出库
+        this.No1 = false
+        this.No2 = true
+        this.No3 = false
+        this.disabled = false
+        this.listAdd = []
+        this.useForms = []
+        this.isReceiveTime = true
+        this.isReceiveTime2 = false
+        this.No4 = true
+        // 调拨数量/出库数量
+        this.allo = false
       }
     },
     getNumber(queryString, cb) {
@@ -2491,6 +2536,7 @@ export default {
           })
           return true
         }else if(this.createTemp.useType === 5){
+          console.log('baofei',this.createTemp.oddCode)
           // 报废出库
           this.postDataPramas.common = { 'returnmap': '0' }
           this.postDataPramas.data = []
@@ -2548,6 +2594,117 @@ export default {
             return false
           }
 
+          this.postDataPramas.data[1] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.listAdd }}
+          this.postDataPramas.data[1].children = []
+          this.postDataPramas.data[1].children[0] = { 'name': 'insertPartUse', 'type': 'e', 'parammaps': {
+            bigId: '@insertBigPartUse.LastInsertId',
+            locationId: '@insertSpotList.locationId',
+            departmentId: '@insertSpotList.departmentId',
+            partId: '@insertSpotList.partId',
+            partCode: '@insertSpotList.partCode',
+            partName: '@insertSpotList.partName',
+            specification: '@insertSpotList.specification',
+            price: '@insertSpotList.price',
+            unit: '@insertSpotList.unit',
+            brandId: '@insertSpotList.brandId',
+            contractId: '@insertSpotList.contractId',
+            useNumber: 0,
+            checkoutNumber: '@insertSpotList.checkoutNumber',
+            eqName: '@insertSpotList.eqName',
+            eqCode: '@insertSpotList.eqCode',
+            reportery: '@insertSpotList.reportery',
+            useTypeV: '@insertSpotList.useTypeV',
+            note: '@insertSpotList.note'
+          }}
+          this.postDataPramas.data[1].children[1] = { 'name': 'insertPartUseRepertory', 'type': 'e', 'parammaps': {
+            checkoutNumber: '@insertSpotList.checkoutNumber',
+            pastureId: '@insertSpotList.pastureId',
+            locationId: '@insertSpotList.locationId',
+            location: '@insertSpotList.location',
+            partId: '@insertSpotList.partId',
+            partCode: '@insertSpotList.partCode',
+            partName: '@insertSpotList.partName',
+            specification: '@insertSpotList.specification',
+            providerId: '@insertSpotList.providerId',
+            providerName: '@insertSpotList.providerName',
+            brandId: '@insertSpotList.brandId',
+            price: '@insertSpotList.price',
+            unit: '@insertSpotList.unit',
+            contractId: '@insertSpotList.contractId'
+          }}
+          ExecDataByConfig(this.postDataPramas).then(response => {
+            console.log('新增保存发送参数', this.postDataPramas)
+            if (response.msg === 'fail') {
+              this.$notify({ title: '保存失败', message: response.data, type: 'warning', duration: 2000 })
+            } else {
+              this.getdataListParm.parammaps.inputDatetime = ''
+              setTimeout(() => {
+                this.get_table_data()
+              }, 1000)
+              this.$notify({ title: '', message: '保存成功', type: 'success', duration: 2000 })
+              this.dialogFormVisible = false
+            }
+          })
+          return true
+        }else if(this.createTemp.useType === 6){
+          // 青贮出库
+          this.postDataPramas.common = { 'returnmap': '0' }
+          this.postDataPramas.data = []
+          for (var j = 0; j < this.listAdd.length; j++) {
+            if (this.listAdd[j].eqName == '' || this.listAdd[j].eqCode == '' || this.listAdd[j].eqName == null || this.listAdd[j].useTypeV == null || this.listAdd[j].eqCode == null || this.listAdd[j].checkoutNumber == null || this.listAdd[j].checkoutNumber == '') {
+              this.$message({
+                type: 'warning',
+                message: '请检查备件名称或设备内部编号或费用类型或出库数量是否未填写',
+                duration: 2000
+              })
+              return false
+            } else {
+              // eslint-disable-next-line no-redeclare
+              var rulesCheckoutNumber = /(^[1-9](\d+)?(\.\d{1,2})?$)|(^\d\.\d{1,2}$)/
+              if (!rulesCheckoutNumber.test(parseFloat(this.listAdd[j].checkoutNumber))) {
+                this.$message({
+                  type: 'error',
+                  message: '出库数量请输入正数,最多保留两位小数点',
+                  duration: 2000
+                })
+                return false
+              } else {
+                if (parseFloat(this.listAdd[j].checkoutNumber) > parseFloat(this.listAdd[j].reportery)) {
+                  this.$message({
+                    type: 'warning',
+                    message: '出库数量不能大于库位库存数',
+                    duration: 2000
+                  })
+                  this.$set(this.listAdd.find(obj => obj.checkoutNumber == this.listAdd[j].checkoutNumber), 'isNo', 'No')
+                  return false
+                } else {
+                  this.$set(this.listAdd.find(obj => obj.checkoutNumber == this.listAdd[j].checkoutNumber), 'isNo', 'Yes')
+                }
+              }
+            }
+          }
+          this.postDataPramas.data[0] = { 'name': 'insertBigPartUse', 'type': 'e', 'parammaps': {
+            pastureId: this.createTemp.pastureId,
+            departmentId: this.createTemp.departmentId,
+            useForm: this.createTemp.useForm,
+            useType: this.createTemp.useType,
+            applicatId: this.createTemp.applicatId,
+            receiveTime: this.createTemp.receiveTime,
+            empId: this.createTemp.empId,
+            note: this.createTemp.note,
+            greenFodderNumber:this.createTemp.greenFodderNumber
+          }}
+
+          // if(this.createTemp.oddCode == ""){
+          //   this.$notify({
+          //       title: '保存失败',
+          //       message: '领用单号不得为空',
+          //       type: 'warning',
+          //       duration: 2000
+          //     })
+          //   return false
+          // }
+
           this.postDataPramas.data[1] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.listAdd }}
           this.postDataPramas.data[1].children = []
           this.postDataPramas.data[1].children[0] = { 'name': 'insertPartUse', 'type': 'e', 'parammaps': {

+ 18 - 2
src/views/custom/purchase/index.vue

@@ -602,6 +602,9 @@
             </el-select>
             <el-autocomplete v-model="getdataListParm2.parammaps.providerName" value-key="providerName" class="inline-input" :fetch-suggestions="providerSearch" placeholder="供应商" style="width:150px;top:-3px;" @select="handleSelectProvider" />
             <el-date-picker ref="inputDatetime2" v-model="getdataListParm2.parammaps.inputDatetime" class="inputDatetime" type="datetimerange" style="width: 270px;top:-3px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" range-separator="至" start-placeholder="开始提交日期" end-placeholder="结束提交日期" />
+            <el-select v-model="getdataListParm2.parammaps.purchase_type" clearable style="width: 140px;" placeholder="申购状态" class="filter-item">
+              <el-option v-for="item in subscriptionStatusList" :key="item.id" :label="item.name" :value="item.id" />
+            </el-select>
             <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="form_search2">搜索</el-button>
             <el-button v-waves v-if="isPurchaseSap" class="filter-item" type="primary" @click="sapUpload">SAP上传</el-button>
             <el-button v-waves  v-if="isPurchaseSrm" class="filter-item" type="primary" @click="srmUpload">SRM上传</el-button>
@@ -656,7 +659,13 @@
                 <span>{{scope.row.sapNumber}}</span>
               </template>
             </el-table-column>
-
+            <el-table-column label="申购状态" min-width="80px" align="center">
+              <template slot-scope="scope">
+                <span v-if="scope.row.purchase_type == 1">暂估</span>
+                <span v-else-if="scope.row.purchase_type == 3">赠品</span>
+                <span v-else>正常</span>
+              </template>
+            </el-table-column>
             <el-table-column   prop="sapstatus" label="sap上传状态" min-width="80px" align="center">
               <template slot-scope="scope">
                 <span v-show="scope.row.sapstatus == 1">上传失败</span>
@@ -1480,6 +1489,7 @@ export default {
       listLoading3: false,
       tableKey3: 0,
       list3: [],
+      subscriptionStatusList:[{id:0,name:'正常'},{id:1,name:'暂估'},{id:3,name:'赠品'}],//申购状态
       findAllEmploye: [],
       findAllPasture: [],
       requestParams: [
@@ -1540,7 +1550,8 @@ export default {
           buyeCode: '',
           inputDatetime: '',
           // pastureId: Cookies.get('pastureid'),
-          pastureName: Cookies.get('pasturename')
+          pastureName: Cookies.get('pasturename'),
+          purchase_type:''
         }
       },
       dialogFormVisibleConfirmation: false,
@@ -3278,6 +3289,10 @@ export default {
       console.log(this.examineTemp)
       this.$refs['examineTemp'].validate(valid => {
         if (valid) {
+          this.isokDisable = true
+          setTimeout(() => {
+            this.isokDisable = false
+          }, 5000)
           if (this.examineTemp.SHstatue == 1) {
             console.log('通过')
             this.postDataPramas.common = { 'returnmap': '0' }
@@ -3296,6 +3311,7 @@ export default {
               'matchCode': this.examineTemp.matchCode
             }}
             ExecDataByConfig(this.postDataPramas).then(response => {
+              this.isokDisable = false
               console.log('审核保存发送参数', this.postDataPramas)
               if (response.msg === 'fail') {
                 this.$notify({

+ 12 - 0
src/views/custom/storage/index.vue

@@ -21,6 +21,9 @@
           <el-select v-model="getdataListParm.parammaps.sapStatus" style="width: 150px;" clearable placeholder="SAP上传状态" class="filter-item">
             <el-option v-for="item in easStatus.sapStatusList" :key="item.id" :label="item.name" :value="item.id" />
           </el-select>
+          <el-select v-model="getdataListParm.parammaps.purchase_type" clearable style="width: 140px;" placeholder="申购状态" class="filter-item">
+            <el-option v-for="item in subscriptionStatusList" :key="item.id" :label="item.name" :value="item.id" />
+          </el-select>
           <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="form_search">搜索</el-button>
           <div>
             <el-button v-if="isStorageAdd" class="filter-item" type="primary" icon="el-icon-edit" @click="form_add">新增</el-button>
@@ -108,6 +111,13 @@
                 <span v-else>未冲销</span>
               </template>
             </el-table-column>
+            <el-table-column label="申购状态" min-width="80px" align="center">
+              <template slot-scope="scope">
+                <span v-if="scope.row.purchase_type == 1">暂估</span>
+                <span v-else-if="scope.row.purchase_type == 3">赠品</span>
+                <span v-else>正常</span>
+              </template>
+            </el-table-column>
           <el-table-column label="操作" align="center" width="200" class-name="small-padding fixed-width" fixed="right">
             <template slot-scope="{row}">
               <el-button v-if="isStorageSee" type="primary" size="mini" @click="form_see(row)">查看</el-button>
@@ -766,6 +776,7 @@ export default {
           return time.getTime() > Date.now()// 当天之前的时间可选
         }
       },
+      subscriptionStatusList:[{id:0,name:'正常'},{id:1,name:'暂估'},{id:3,name:'赠品'}],//申购状态
       dialogFormVisible: false,
       dialogFormVisible_See: false,
       dialogStatus: '',
@@ -814,6 +825,7 @@ export default {
           pastureName: Cookies.get('pasturename'),
           easStatus: '',
           sapStatus:'',
+          purchase_type:''
         }
       },
       activeName: 'first',

+ 475 - 145
src/views/custom/subscribe/index.vue

@@ -15,6 +15,9 @@
       <el-select v-model="getdataListParm.parammaps.departmentId" clearable style="width: 140px;" placeholder="申购部门" class="filter-item">
         <el-option v-for="item in findAllDepart" :key="item.id" :label="item.name" :value="item.id" />
       </el-select>
+      <el-select v-model="getdataListParm.parammaps.purchase_type" clearable style="width: 140px;" placeholder="申购状态" class="filter-item">
+        <el-option v-for="item in subscriptionStatusList" :key="item.id" :label="item.name" :value="item.id" />
+      </el-select>
       <el-input v-model="getdataListParm.parammaps.empName" placeholder="申购人" style="width: 200px;" class="filter-item" />
       <!-- <el-select v-model="getdataListParm.parammaps.empName " style="width: 140px;" placeholder="申购人" class="filter-item">
         <el-option v-for="item in findAllEmploye" :key="item.id" :label="item.name" :value="item.id" />
@@ -24,6 +27,7 @@
       <div>
 
         <el-button v-if="isSubscribeAdd" class="filter-item" type="primary" icon="el-icon-edit" @click="form_add">新增</el-button>
+        <el-button v-if="isSubscribeSpecial" class="filter-item" type="primary" icon="el-icon-edit" @click="handle_specialSubscription">特殊申购</el-button>
         <el-button v-if="isSubscribeExport" v-waves class="filter-item" type="success" icon="el-icon-upload2" @click="handleDownload">导出</el-button>
         <el-radio-group v-model="radioAll" style="margin-top:-9px" @change="changeAll()">
           <el-radio-button label="全部" />
@@ -77,37 +81,45 @@
         </template>
       </el-table-column>
       <el-table-column label="申购日期" sortable prop="inputTime" min-width="80px" align="center" />
+      <el-table-column label="申购状态" min-width="80px" align="center">
+        <template slot-scope="scope">
+          <span v-if="scope.row.purchase_type == 1">暂估</span>
+          <span v-else-if="scope.row.purchase_type == 3">赠品</span>
+          <span v-else>正常</span>
+        </template>
+      </el-table-column>
       <el-table-column label="审核状态" min-width="80px" align="center" :formatter="statue" />
       <el-table-column label="操作" align="center" width="250" class-name="small-padding fixed-width" fixed="right">
         <template slot-scope="{row}">
           <el-button v-if="isSubscribeSee" type="primary" size="mini" @click="form_see(row)">查看</el-button>
-          <el-button v-if="row.statue == 4||row.statue == 6||row.statue == 8||row.statue == 10||row.statue == 12" style="display:inline-block" type="success" size="mini" @click="form_edit(row)">编辑</el-button>
+          <el-button v-if="row.statue == 4||row.statue == 6||row.statue == 8||row.statue == 10||row.statue == 12 ||row.statue == 14" style="display:inline-block" type="success" size="mini" @click="form_edit(row)">编辑</el-button>
           <el-button v-else style="display:none" type="success" size="mini" @click="form_edit(row)">编辑</el-button>
           <!-- 库管 -->
-          <el-button v-if="isSubscribeExamineKG && row.statue == 2" style="display:inline-block" type="success" size="mini" @click="handleExamine(row)">审核1</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine(row)">审核1</el-button>
+          <el-button v-if="isSubscribeExamineKG && row.statue == 2" style="display:inline-block" type="success" size="mini" @click="handleExamine1(row)">审核1</el-button>
 
           <!-- 设备 -->
-          <el-button v-if="isSubscribeExamineSBZG && row.statue == 3" style="display:inline-block" type="success" size="mini" @click="handleExamine22(row)">审核2</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine22(row)">审核2</el-button>
+          <el-button v-if="isSubscribeExamineSBZG && row.statue == 3" style="display:inline-block" type="success" size="mini" @click="handleExamine2(row)">审核2</el-button>
 
-          <!-- 主管 -->
-          <el-button v-if="isSubscribeExamineZG && row.statue == 9" style="display:inline-block" type="success" size="mini" @click="handleExamine2(row)">审核3</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine2(row)">审核3</el-button>
+          <!-- 供应商主管 -->
+          <el-button v-if="isSubscribeExamineZG && row.statue == 9" style="display:inline-block" type="success" size="mini" @click="handleExamine3(row)">审核3</el-button>
 
 
 
 
           <!-- 场长 -->
-          <el-button v-if="sdchangzhangshenhe  &&  row.statue == 5" style="display:inline-block" type="success" size="mini" @click="handleExamine33(row)">审核4</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine33(row)">审核5</el-button>
+          <el-button v-if="sdchangzhangshenhe  && (row.purchase_type < 0 || row.purchase_type == 0) &&  row.statue == 5" style="display:inline-block" type="success" size="mini" @click="handleExamine4(row)">审核4</el-button>
+
+          <el-button v-if="sdchangzhangshenhe  && row.purchase_type > 0 &&  row.statue == 13" style="display:inline-block" type="success" size="mini" @click="handleExamine4(row)">审核4</el-button>
 
 
 
 
           <!-- 采购 -->
-          <el-button v-if="isSubscribeExamineCG && row.statue == 11 " style="display:inline-block" type="success" size="mini" @click="handleExamine3(row)">审核5</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine3(row)">审核5</el-button>
+          <el-button v-if="isSubscribeExamineCG && row.statue == 11 " style="display:inline-block" type="success" size="mini" @click="handleExamine5(row)">审核5</el-button>
+
+          <!-- 财务 -->
+          <el-button v-if="isSubscribeExamineCW && row.purchase_type > 0 && row.statue == 5 " style="display:inline-block" type="success" size="mini" @click="handleExamine6(row)">审核6</el-button>
+
           <el-button v-if="isSubscribeDelete && (row.statue == 4||row.statue == 6||row.statue == 8||row.statue == 12)" style="display:inline-block" type="danger" size="mini" @click="form_delete(row)">删除</el-button>
 
 
@@ -174,7 +186,37 @@
                 <el-input ref="providerName" v-model="createTemp.providerName" disabled />
               </el-form-item>
             </el-col>
-
+            <el-col v-if="dialogStatus==='special' && createTemp.purchaseType == '1' || createTemp.purchaseType == '3'" :span="8">
+              <el-form-item label="供应商:" prop="providerId">
+                <el-select v-model="createTemp.providerId" placeholder="供应商" class="filter-item" style="width:100%" :disabled="dialogStatus==='update'">
+                  <el-option v-for="item in providerList" :key="item.id" :label="item.providerName" :value="item.id" />
+                </el-select>
+              </el-form-item>
+            </el-col>
+            <el-col v-if="dialogStatus==='special' && createTemp.purchaseType == '2'" :span="8">
+              <el-form-item label="供应商:" prop="providerId">
+                <el-input ref="providerName" v-model="createTemp.providerName" />
+                <!-- <el-select v-model="createTemp.providerId" placeholder="供应商" class="filter-item" style="width:100%" :disabled="dialogStatus==='update'">
+                  <el-option v-for="item in providerList" :key="item.id" :label="item.providerName" :value="item.id" />
+                </el-select> -->
+              </el-form-item>
+            </el-col>
+            <el-col  :span="8" v-if="dialogStatus==='special' && createTemp.purchaseType == '2'">
+              <el-form-item label="垫付人:" prop="funderId">
+                <el-select v-model="createTemp.funderId" filterable placeholder="垫付人" class="filter-item" style="width:100%" :disabled="dialogStatus==='update'">
+                  <el-option v-for="item in findAllEmploye" :key="item.id" :label="item.name" :value="item.id" />
+                </el-select>
+              </el-form-item>
+            </el-col>
+          </el-row>
+          <el-row v-if="dialogStatus==='special'">
+            <el-col :span="24">
+              <el-form-item label="申购类型:" prop="purchaseType">
+                <el-radio v-model="createTemp.purchaseType" label="1" @change="changeType()">暂估</el-radio>
+                <!-- <el-radio v-model="createTemp.purchaseType" label="2" @change="changeType()">垫付</el-radio> -->
+                <el-radio v-model="createTemp.purchaseType" label="3" @change="changeType()">赠品</el-radio>
+              </el-form-item>
+            </el-col>
           </el-row>
           <el-row>
             <el-col :span="16">
@@ -240,6 +282,7 @@
             <template slot-scope="scope">
               <span v-if="dialogStatus==='create'">{{ scope.row.brandName }}</span>
               <span v-if="dialogStatus==='update'">{{ scope.row.brandName }}</span>
+              <span v-if="dialogStatus==='special'">{{ scope.row.brandName }}</span>
             </template>
           </el-table-column>
           <el-table-column label="计量单位" prop="unit" align="center" min-width="60">
@@ -249,10 +292,20 @@
           </el-table-column>
           <el-table-column label="现有库存" prop="reportery" align="center" min-width="60">
             <template slot-scope="scope">
-              <span>{{ scope.row.reportery }}</span>
+              <span v-if="createTemp.providerId == '' || parseFloat(createTemp.purchaseType) > 0">{{ scope.row.reportery }}</span>
+            </template>
+          </el-table-column>
+          <el-table-column v-if="dialogStatus==='special'" label="价格" prop="price" align="center" min-width="60">
+            <template slot-scope="scope">
+              <span v-if="createTemp.purchaseType == '1'">{{ scope.row.price }}</span>
+              <el-form v-else :model="scope.row" :rules="rules">
+                <el-form-item prop="price">
+                  <el-input v-model="scope.row.price" style="margin-top:15px" />
+                </el-form-item>
+              </el-form>
             </template>
           </el-table-column>
-          <el-table-column label="价格" prop="price" align="center" min-width="60">
+          <el-table-column v-else label="价格" prop="price" align="center" min-width="60">
             <template slot-scope="scope">
               <span v-if="createTemp.providerId == ''">{{ scope.row.price }}</span>
               <el-form v-else :model="scope.row" :rules="rules">
@@ -289,7 +342,9 @@
           </el-table-column>
         </el-table>
         <div slot="footer" class="dialog-footer" style="bottom:10px">
-          <el-button type="primary" :disabled="isokDisable" @click="dialogStatus==='create'?add_dialog_save():edit_dialog_save()">保存并关闭</el-button>
+          <el-button type="primary" :disabled="isokDisable" v-if="dialogStatus==='create'" @click="add_dialog_save()">保存并关闭</el-button>
+          <el-button type="primary" :disabled="isokDisable" v-else-if="dialogStatus==='update'" @click="edit_dialog_save()">保存并关闭</el-button>
+          <el-button type="primary" :disabled="isokDisable" v-else-if="dialogStatus==='special'" @click="special_dialog_save()">保存并关闭</el-button>
           <el-button @click="dialogFormVisible = false;get_table_data()">取消并关闭</el-button>
         </div>
       </div>
@@ -335,12 +390,36 @@
                 <el-date-picker v-model="seeTemp.createTime" :picker-options="pickerOptions" type="date" placeholder="申购日期" format="yyyy-MM-dd" value-format="yyyy-MM-dd" style="width:100%" disabled />
               </el-form-item>
             </el-col>
-            <el-col :span="8">
+            <el-col :span="8" v-if="seeTemp.purchaseType == '2'">
+              <el-form-item label="供应商:" prop="funderProviderName ">
+                <el-input ref="funderProviderName " v-model="seeTemp.funderProviderName " disabled />
+              </el-form-item>
+            </el-col>
+            <el-col :span="8" v-if="seeTemp.purchase_type > 0 && seeTemp.purchaseType !== '2'">
+              <el-form-item label="供应商:" prop="providerName">
+                <el-input ref="providerName" v-model="seeTemp.providerName" disabled />
+              </el-form-item>
+            </el-col>
+            <el-col :span="8" v-if="seeTemp.purchaseType == '2'">
+              <el-form-item label="垫付人:" prop="funder_name">
+                <el-input ref="funder_name" v-model="seeTemp.funder_name" disabled />
+              </el-form-item>
+            </el-col>
+            <el-col :span="8" v-if="seeTemp.purchase_type < 1">
               <el-form-item label="线上采购:" prop="providerName">
                 <el-input ref="providerName" v-model="seeTemp.providerName" disabled />
               </el-form-item>
             </el-col>
           </el-row>
+          <el-row v-if="seeTemp.purchase_type > 0">
+            <el-col :span="24">
+              <el-form-item label="申购类型:" prop="purchaseType">
+                <el-radio v-model="seeTemp.purchaseType" disabled label="1">暂估</el-radio>
+                <!-- <el-radio v-model="seeTemp.purchaseType" disabled label="2">垫付</el-radio> -->
+                <el-radio v-model="seeTemp.purchaseType" disabled label="3">赠品</el-radio>
+              </el-form-item>
+            </el-col>
+          </el-row>
         </el-form>
         <el-table
           :key="tableKey"
@@ -431,23 +510,22 @@
             <el-col>
               <el-form-item label="操作:">
                 <!-- 库管 -->
-                <el-button v-if="isSubscribeExamineKG && seeTemp.statue == 2" type="success" style="display:inline-block" @click="handleExamine(row)">审核1</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine(row)">审核1</el-button>
+                <el-button v-if="isSubscribeExamineKG && seeTemp.statue == 2" type="success" style="display:inline-block" @click="handleExamine1(row)">审核1</el-button>
                <!-- 设备 -->
-               <el-button v-if="isSubscribeExamineSBZG && seeTemp.statue == 3" type="success" style="display:inline-block" @click="handleExamine22(row)">审核2</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine22(row)">审核2</el-button>
-                <!-- 主管 -->
-                <el-button v-if="isSubscribeExamineZG && seeTemp.statue == 9" type="success" style="display:inline-block" @click="handleExamine2(row)">审核3</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine2(row)">审核3</el-button>
+               <el-button v-if="isSubscribeExamineSBZG && seeTemp.statue == 3" type="success" style="display:inline-block" @click="handleExamine2(row)">审核2</el-button>
+                <!-- 供应商主管 -->
+                <el-button v-if="isSubscribeExamineZG && seeTemp.statue == 9" type="success" style="display:inline-block" @click="handleExamine3(row)">审核3</el-button>
 
                 <!-- 场长 -->
-                <el-button v-if=" sdchangzhangshenhe  &&  seeTemp.statue == 5" type="success" style="display:inline-block" @click="handleExamine33(row)">审核4</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine33(row)">审核5</el-button>
+                <el-button v-if=" sdchangzhangshenhe  && (seeTemp.purchase_type < 0 || seeTemp.purchase_type == 0) && seeTemp.statue == 5" type="success" style="display:inline-block" @click="handleExamine4(row)">审核4</el-button>
+                <el-button v-if=" sdchangzhangshenhe  &&  seeTemp.statue == 13" type="success" style="display:inline-block" @click="handleExamine4(row)">审核4</el-button>
 
 
                 <!-- 采购 -->
-                <el-button v-if="isSubscribeExamineCG && seeTemp.statue == 11 " type="success" style="display:inline-block" @click="handleExamine3(row)">审核5</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine3(row)">审核5</el-button>
+                <el-button v-if="isSubscribeExamineCG && seeTemp.statue == 11 " type="success" style="display:inline-block" @click="handleExamine5(row)">审核5</el-button>
+
+
+                <el-button v-if="isSubscribeExamineCW && seeTemp.purchase_type > 0 && seeTemp.statue == 5 " style="display:inline-block" type="success" size="mini" @click="handleExamine6(row)">审核6</el-button>
 
 
               </el-form-item>
@@ -459,6 +537,7 @@
         </div>
       </div>
     </el-dialog>
+
     <!-- 审核 -->
     <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisible_Examine" :close-on-click-modal="false" width="30%">
       <div class="app-examine">
@@ -480,20 +559,23 @@
         </el-form>
       </div>
       <div slot="footer" class="dialog-footer">
-        <el-button v-if="dialogStatus==='examine'" type="primary" :disabled="isokDisable" @click="createExamineData()">确认</el-button>
-        <el-button v-if="dialogStatus==='examine22'" type="primary" :disabled="isokDisable" @click="createExamineData22()">确认</el-button>
+        <el-button v-if="dialogStatus==='examine1'" type="primary" :disabled="isokDisable" @click="createExamineData1()">确认</el-button>
         <el-button v-if="dialogStatus==='examine2'" type="primary" :disabled="isokDisable" @click="createExamineData2()">确认</el-button>
-        <el-button v-if="dialogStatus==='examine33'" type="primary" :disabled="isokDisable" @click="createExamineData33()">确认</el-button>
         <el-button v-if="dialogStatus==='examine3'" type="primary" :disabled="isokDisable" @click="createExamineData3()">确认</el-button>
+        <el-button v-if="dialogStatus==='examine4'" type="primary" :disabled="isokDisable" @click="createExamineData4()">确认</el-button>
+        <el-button v-if="dialogStatus==='examine5'" type="primary" :disabled="isokDisable" @click="createExamineData5()">确认</el-button>
+        <el-button v-if="dialogStatus==='examine6'" type="primary" :disabled="isokDisable" @click="createExamineData6()">确认</el-button>
         <el-button @click="dialogFormVisible_Examine = false;">关闭</el-button>
       </div>
     </el-dialog>
+
+
   </div>
 </template>
 
 <script>
 // / 引入
-import { GetDataByName, GetDataByNames, partslistSGv2, PostDataByName, ExecDataByConfig, checkButtons, failproccess, GetAccount } from '@/api/common'
+import { GetDataByName,postJson, GetDataByNames, partslistSGv2, PostDataByName, ExecDataByConfig, checkButtons, failproccess, GetAccount } from '@/api/common'
 import waves from '@/directive/waves' // waves directive
 import { parseTime, sortChange, json2excel } from '@/utils/index.js'
 // eslint-disable-next-line no-unused-vars
@@ -508,12 +590,13 @@ export default {
   directives: { waves },
   data() {
     return {
-      isSubscribeAdd: [], isSubscribeExamineSBZG:[],isSubscribeTemplate: [], isSubscribeImport: [], isSubscribeExport: [], isSubscribeSee: [], isSubscribeDelete: [], isSubscribeExamineKG: [], isSubscribeExamineCG: [], isSubscribeExamineZG: [],sdchangzhangshenhe: [],
+      isSubscribeAdd: [],isSubscribeSpecial:[], isSubscribeExamineSBZG:[],isSubscribeTemplate: [], isSubscribeImport: [], isSubscribeExport: [], isSubscribeSee: [], isSubscribeDelete: [], isSubscribeExamineKG: [], isSubscribeExamineCG: [],isSubscribeExamineCW:[], isSubscribeExamineZG: [],sdchangzhangshenhe: [],
       isokDisable: false,
       findAllProvider: [],
       findAllPasture: [],
       findAllDepart: [],
       findAllEmploye: [],
+      subscriptionStatusList:[{id:0,name:'正常'},{id:1,name:'暂估'},{id:3,name:'赠品'}],//申购状态
       onlineSubscriptionList: [], createDepartList: [], edit: 0,
       requestParams: [
         { name: 'findAllProvider', offset: 0, pagecount: 0, params: [] },
@@ -533,12 +616,13 @@ export default {
       textMap: {
         update: '编辑',
         create: '新增',
-        see: '查看',
-        examine: '审核1',
-        examine22: '审核2',
-        examine2: '审核3',
-        examine33: '审核4',
-        examine3: '审核5'
+        see: '查看/特殊申购l',
+        examine1: '审核1',
+        examine2: '审核2',
+        examine3: '审核3',
+        examine4: '审核4',
+        examine5: '审核5',
+        special: '特殊申购'
       },
       rules: {
         equipmentName: [{ required: true, message: '必填', trigger: 'blur' }]
@@ -565,7 +649,8 @@ export default {
           loginId: Cookies.get('employeid'),
           menu: 'Subscribe',
           logindeptId: Cookies.get('departmentid'),
-          loginpastureId: Cookies.get('pastureid')
+          loginpastureId: Cookies.get('pastureid'),
+          purchase_type:''
         }
       },
       tableKey: 0,
@@ -589,7 +674,9 @@ export default {
         departmentId: this.$store.state.user.departmentid,
         employeId: this.$store.state.user.employeid,
         createTime: parseTime(new Date(), '{y}-{m}-{d}'),
-        providerId: ''
+        providerId: '',
+        purchaseType:'1',
+        funderId:''
       },
       requestSparePart: {
         name: 'getPartsListSG',
@@ -648,6 +735,7 @@ export default {
           }
         }
       },
+      providerList:[],
       myHeight:document.documentElement.clientHeight - 85- 150
     }
   },
@@ -661,6 +749,7 @@ export default {
     this.get_select_list()
     this.get_table_data()
     this.getPendingList()
+    this.getProviderList()
   },
 
   methods: {
@@ -672,6 +761,11 @@ export default {
       const SubscribeAdd = 'customs:subscribe:add'
       const isSubscribeAdd = checkButtons(this.$store.state.user.buttons, SubscribeAdd)
       this.isSubscribeAdd = isSubscribeAdd
+      // isSubscribeSpecial
+      // 特殊申购
+      const SubscribeSpecial = 'customs:subscribe:special'
+      const isSubscribeSpecial = checkButtons(this.$store.state.user.buttons, SubscribeSpecial)
+      this.isSubscribeSpecial = isSubscribeSpecial
       // 模板
       // eslint-disable-next-line no-redeclare
       const SubscribeTemplate = 'customs:subscribe:template'
@@ -722,6 +816,11 @@ export default {
       const SubscribeExamineCG = 'customs:subscribe:examineCG'
       const isSubscribeExamineCG = checkButtons(this.$store.state.user.buttons, SubscribeExamineCG)
       this.isSubscribeExamineCG = isSubscribeExamineCG
+
+      // 财务审核
+      const SubscribeExamineCW = 'customs:subscribe:examineCW'
+      const isSubscribeExamineCW = checkButtons(this.$store.state.user.buttons, SubscribeExamineCW)
+      this.isSubscribeExamineCW = isSubscribeExamineCW
     },
     getPendingList() {
       this.pending.getdataListParm.parammaps.pastureName = this.getdataListParm.parammaps.pastureName
@@ -849,6 +948,10 @@ export default {
         return '审核中'
       } else if (cellValue.statue == 12) {
         return '未通过'
+      } else if (cellValue.statue == 13) {
+        return '审核中'
+      } else if (cellValue.statue == 14) {
+        return '未通过'
       }
     },
     form_search() {
@@ -864,10 +967,13 @@ export default {
     resetCreateTemp() {
       this.createTemp.pastureId = parseInt(Cookies.get('pastureid'))
       this.createTemp.departmentId = parseInt(Cookies.get('departmentid'))
+      this.createTemp.departmentName = Cookies.get('departmentname')
       this.createTemp.employeId = parseInt(Cookies.get('employeid'))
       this.createTemp.createTime = parseTime(new Date(), '{y}-{m}-{d}')
       this.createTemp.orderNumber = ''
       this.createTemp.providerId = ''
+      this.createTemp.funderId = ''
+      this.createTemp.purchaseType = '1'
       this.listAdd = []
     },
     form_add() {
@@ -900,12 +1006,31 @@ export default {
     },
     sparePartSearch(queryString, cb) {
       console.log('备件模糊查询输入值', queryString)
-      if (this.createTemp.providerId == '') {
-        this.requestSparePart.name = 'getPartsListSG'
-      } else {
-        this.requestSparePart.name = 'getPartsListSGFlex'
-        this.requestSparePart.parammaps.providerId = this.createTemp.providerId
-        this.requestSparePart.parammaps.providerName = this.createTemp.providerName
+      if(this.dialogStatus==='special'){
+        if(this.createTemp.purchaseType == 1 || this.createTemp.purchaseType == '3'){
+          if(this.createTemp.providerId == ''){
+            this.$message({ type: 'warning', message: '请选择供应商' })
+            return false;
+          }else{
+            if(this.createTemp.purchaseType == '3'){
+              this.requestSparePart.name = 'getStockListByGiveaway'
+              this.requestSparePart.parammaps['providerName'] = this.providerList.find(obj => obj.id == this.createTemp.providerId).providerName
+              this.requestSparePart.parammaps['providerId'] = this.createTemp.providerId
+              this.requestSparePart.parammaps['pastureId'] = this.createTemp.pastureId
+            }else{
+              this.requestSparePart.name = 'getPartsListSG'
+              this.requestSparePart.parammaps['providerId'] = this.createTemp.providerId
+            }
+          }
+        }
+      }else{
+        if (this.createTemp.providerId == '') {
+          this.requestSparePart.name = 'getPartsListSG'
+        } else {
+          this.requestSparePart.name = 'getPartsListSGFlex'
+          this.requestSparePart.parammaps.providerId = this.createTemp.providerId
+          this.requestSparePart.parammaps.providerName = this.createTemp.providerName
+        }
       }
       this.requestSparePart.parammaps['partCode'] = queryString
       GetDataByName(this.requestSparePart).then(response => {
@@ -921,28 +1046,14 @@ export default {
       console.log('备件模糊查询选中值', item)
       console.log('备件模糊查询选中值', item.partId)
       console.log(this.listAdd)
+      if(this.dialogStatus==='special' && this.createTemp.purchaseType == '1' && this.createTemp.providerId == ''){
+        this.createTemp.providerId = item.providerId
+      }
       if (this.createTemp.providerId == '') {
         if (this.listAdd.length > 0) {
-          // eslint-disable-next-line no-redeclare
           if (this.listAdd.find(obj => obj.partId == item.partId)) {
             this.$message({ type: 'warning', message: '此备件已存在,请重新选择备件' })
           } else {
-            // this.getParmCreateAmount.parammaps.partCode = item.partCode
-            // GetDataByName(this.getParmCreateAmount).then(response => {
-            //   this.$nextTick(() => {
-            //     console.log('新增根据编号获取备件库存数量', response.data.list[0].reporteryNum)
-            //     item.reportery = response.data.list[0].reporteryNum
-            //     if (item.srcpath !== null && item.picpath) {
-            //       this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-            //       this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-            //     } else {
-            //       item.srcpath = ''
-            //       item.picpath = ''
-            //     }
-            //     this.listAdd.unshift(item)
-            //     this.$forceUpdate()
-            //   })
-            // })
             this.getParmCreateAmount.parammaps.partCode = item.partCode
             partslistSGv2(this.getParmCreateAmount).then(response => {
               this.$nextTick(() => {
@@ -957,28 +1068,18 @@ export default {
                 }
                 this.$set(item, 'amount', '')
                 this.$set(item, 'purpose', '')
+                if(this.dialogStatus==='special' && this.createTemp.purchaseType == '2'){
+                  this.$set(item,'price','')
+                }else if(this.dialogStatus==='special' && this.createTemp.purchaseType == '3'){
+                  this.$set(item,'price','0')
+                  this.$set(item,'amount','0')
+                }
                 this.listAdd.unshift(item)
                 this.$forceUpdate()
               })
             })
           }
         } else {
-          // this.getParmCreateAmount.parammaps.partCode = item.partCode
-          // GetDataByName(this.getParmCreateAmount).then(response => {
-          //   this.$nextTick(() => {
-          //     console.log('新增根据编号获取备件库存数量', response.data.list[0].reporteryNum)
-          //     item.reportery = response.data.list[0].reporteryNum
-          //     if (item.srcpath !== null && item.picpath) {
-          //       this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-          //       this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-          //     } else {
-          //       item.srcpath = ''
-          //       item.picpath = ''
-          //     }
-          //     this.listAdd.unshift(item)
-          //     this.$forceUpdate()
-          //   })
-          // })
           this.getParmCreateAmount.parammaps.partCode = item.partCode
           partslistSGv2(this.getParmCreateAmount).then(response => {
             this.$nextTick(() => {
@@ -993,6 +1094,12 @@ export default {
               }
               this.$set(item, 'amount', '')
               this.$set(item, 'purpose', '')
+              if(this.dialogStatus==='special' && this.createTemp.purchaseType == '2'){
+                this.$set(item,'price','')
+              }else if(this.dialogStatus==='special' && this.createTemp.purchaseType == '3'){
+                this.$set(item,'price','0')
+                this.$set(item,'amount','0')
+              }
               this.listAdd.unshift(item)
               this.$forceUpdate()
             })
@@ -1013,6 +1120,10 @@ export default {
             }
             this.$set(item, 'amount', '')
             this.$set(item, 'purpose', '')
+            if(this.dialogStatus==='special' && this.createTemp.purchaseType == '3'){
+              this.$set(item,'price','0')
+              this.$set(item,'amount','0')
+            }
             this.listAdd.unshift(item)
           }
         } else {
@@ -1025,11 +1136,16 @@ export default {
           }
           this.$set(item, 'amount', '')
           this.$set(item, 'purpose', '')
+          if(this.dialogStatus==='special' && this.createTemp.purchaseType == '3'){
+            this.$set(item,'price','0')
+            this.$set(item,'amount','0')
+          }
           this.listAdd.unshift(item)
           this.$forceUpdate()
         }
         this.$forceUpdate()
       }
+      console.log(this.listAdd,'this.listAdd')
     },
     add_dialog_save() {
       this.isokDisable = true
@@ -1074,12 +1190,12 @@ export default {
               return false
             } else {
               if (parseFloat(this.listAdd[j].price) == 0) {
-                this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后位', duration: 2000 })
+                this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后位', duration: 2000 })
                 return false
               } else {
-                var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,5})?$/
+                var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,2})?$/
                 if (rulesPrice.test(this.listAdd[j].price) == false) {
-                  this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后位', duration: 2000 })
+                  this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后位', duration: 2000 })
                   return false
                 }
               }
@@ -1173,6 +1289,7 @@ export default {
       this.dialogStatus = 'see'
       this.dialogFormVisibleSee = true
       this.seeTemp = Object.assign({}, row)
+      this.seeTemp.purchaseType = String(row.purchase_type)
       console.log('查看上方数据(从table读取)', this.seeTemp)
       this.listSee = []
       this.getdataListSee.parammaps.id = this.seeTemp.id
@@ -1182,8 +1299,7 @@ export default {
 
 
 
-      // if (this.seeTemp.priceClass === 1) {
-
+      if (this.seeTemp.purchase_type < 0 || this.seeTemp.purchase_type == 0 ) {
           if (this.seeTemp.statue === 2) {
             this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核' },{ title: '设备主管审核' }, { title: '供应主管审核' }, { title: '场长审核' },{ title: '采购审核' }]
             this.active = 1
@@ -1205,8 +1321,6 @@ export default {
           } else if (this.seeTemp.statue === 6) {
             this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson, status: 'error', reason: reason }, { title: '场长审核' }, { title: '采购审核' }]
             this.active = 4
-
-
           }  else if (this.seeTemp.statue === 11) {
             this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson   }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson }, { title: '场长审核', date: this.seeTemp.fielddate, name: this.seeTemp.fieldPerson }, { title: '采购审核' }]
             this.active = 5
@@ -1221,44 +1335,52 @@ export default {
             this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson }, { title: '场长审核', date: this.seeTemp.fielddate, name: this.seeTemp.fieldPerson },{ title: '采购审核', date: this.seeTemp.CGChargedate, name: this.seeTemp.CGChargePerson, status: 'error', reason: reason }]
             this.active = 6
           }
-      // } else {
-        // if (this.seeTemp.statue === 2) {
-        //     this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核' },{ title: '设备主管审核' }, { title: '供应主管审核' },  { title: '采购审核' }]
-        //     this.active = 1
-        //   } else if (this.seeTemp.statue === 3) {
-        //     this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },{ title: '设备主管审核' }, { title: '供应主管审核' },   { title: '采购审核' }]
-        //     this.active = 2
-        //   } else if (this.seeTemp.statue === 4) {
-        //     this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson, status: 'error', reason: reason },{ title: '设备主管审核' }, { title: '供应主管审核' },{ title: '采购审核' }]
-        //     this.active = 2
-        //   } else if (this.seeTemp.statue === 9) {
-        //     this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson },{ title: '供应主管审核' },  { title: '采购审核' }]
-        //     this.active = 3
-        //   } else if (this.seeTemp.statue === 10) {
-        //     this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson, status: 'error', reason: reason  }, { title: '供应主管审核' },  { title: '采购审核' }]
-        //     this.active = 3
-        //   }  else if (this.seeTemp.statue === 5) {
-        //     this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson   }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson },   { title: '采购审核' }]
-        //     this.active = 4
-        //   } else if (this.seeTemp.statue === 6) {
-        //     this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson, status: 'error', reason: reason },   { title: '采购审核' }]
-        //     this.active = 4
-
-
-
-
-
-
-
-
-        //   } else if (this.seeTemp.statue === 7) {
-        //     this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson },   { title: '采购审核', date: this.seeTemp.CGChargedate, name: this.seeTemp.CGChargePerson }]
-        //     this.active = 6
-        //   } else if (this.seeTemp.statue === 8) {
-        //     this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson },  { title: '采购审核', date: this.seeTemp.CGChargedate, name: this.seeTemp.CGChargePerson, status: 'error', reason: reason }]
-        //     this.active = 6
-        //   }
-      // }
+      } else if(this.seeTemp.purchase_type == 3){
+        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }]
+        this.active = 1
+      }else {
+        // 待写
+        if (this.seeTemp.statue === 2) {
+          this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核' },{ title: '设备主管审核' }, { title: '供应主管审核' }, { title: '财务审核' },{ title: '场长审核' },{ title: '采购审核' }]
+          this.active = 1
+        } else if (this.seeTemp.statue === 3) {
+          this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },{ title: '设备主管审核' }, { title: '供应主管审核' }, { title: '财务审核' }, { title: '场长审核' }, { title: '采购审核' }]
+          this.active = 2
+        } else if (this.seeTemp.statue === 4) {
+          this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson, status: 'error', reason: reason },{ title: '设备主管审核' }, { title: '供应主管审核' }, { title: '财务审核' }, { title: '场长审核' },{ title: '采购审核' }]
+          this.active = 2
+        } else if (this.seeTemp.statue === 9) {
+          this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson },{ title: '供应主管审核' },  { title: '财务审核' },{ title: '场长审核' },{ title: '采购审核' }]
+          this.active = 3
+        } else if (this.seeTemp.statue === 10) {
+          this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson, status: 'error', reason: reason  }, { title: '供应主管审核' }, { title: '财务审核' }, { title: '场长审核' },{ title: '采购审核' }]
+          this.active = 3
+        }  else if (this.seeTemp.statue === 5) {
+          this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson   }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson },  { title: '财务审核' },{ title: '场长审核' }, { title: '采购审核' }]
+          this.active = 4
+        } else if (this.seeTemp.statue === 6) {
+          this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson, status: 'error', reason: reason },  { title: '财务审核' },{ title: '场长审核' }, { title: '采购审核' }]
+          this.active = 4
+        } else if (this.seeTemp.statue === 13) {
+          this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson   }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson },  { title: '财务审核', date: this.seeTemp.financedate, name: this.seeTemp.financeName },{ title: '场长审核',}, { title: '采购审核' }]
+          this.active = 5
+        } else if (this.seeTemp.statue === 14) {
+          this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson  },  { title: '财务审核',date: this.seeTemp.financedate, name: this.seeTemp.financeName, status: 'error', reason: reason },{ title: '场长审核' }, { title: '采购审核' }]
+          this.active = 5
+        }  else if (this.seeTemp.statue === 11) {
+          this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson   }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson },  { title: '财务审核', date: this.seeTemp.financedate, name: this.seeTemp.financeName },{ title: '场长审核', date: this.seeTemp.fielddate, name: this.seeTemp.fieldPerson }, { title: '采购审核' }]
+          this.active = 6
+        } else if (this.seeTemp.statue === 12) {
+          this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson  },  { title: '财务审核', date: this.seeTemp.financedate, name: this.seeTemp.financeName },{ title: '场长审核' , date: this.seeTemp.fielddate, name: this.seeTemp.fieldPerson, status: 'error', reason: reason }, { title: '采购审核' }]
+          this.active = 6
+        } else if (this.seeTemp.statue === 7) {
+          this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson }, { title: '财务审核', date: this.seeTemp.financedate, name: this.seeTemp.financeName }, { title: '场长审核', date: this.seeTemp.fielddate, name: this.seeTemp.fieldPerson }, { title: '采购审核', date: this.seeTemp.CGChargedate, name: this.seeTemp.CGChargePerson }]
+          this.active = 7
+        } else if (this.seeTemp.statue === 8) {
+          this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson },  { title: '财务审核', date: this.seeTemp.financedate, name: this.seeTemp.financeName },{ title: '场长审核', date: this.seeTemp.fielddate, name: this.seeTemp.fieldPerson },{ title: '采购审核', date: this.seeTemp.CGChargedate, name: this.seeTemp.CGChargePerson, status: 'error', reason: reason }]
+          this.active = 7
+        }
+      }
 
 
     },
@@ -1345,12 +1467,12 @@ export default {
               return false
             } else {
               if (parseFloat(this.listAdd[j].price) == 0) {
-                this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后位', duration: 2000 })
+                this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后位', duration: 2000 })
                 return false
               } else {
-                var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,5})?$/
+                var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,2})?$/
                 if (rulesPrice.test(this.listAdd[j].price) == false) {
-                  this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后位', duration: 2000 })
+                  this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后位', duration: 2000 })
                   return false
                 }
               }
@@ -1522,7 +1644,7 @@ export default {
         })
       })
     },
-    handleExamine(row) {
+    handleExamine1(row) {
       console.log('点击了库管审核')
       if (row == undefined) {
         this.examineTemp = this.seeTemp
@@ -1533,7 +1655,7 @@ export default {
         this.$set(this.examineTemp, 'statue', 1)
         this.$set(this.examineTemp, 'workflowNote', '')
       }
-      this.dialogStatus = 'examine'
+      this.dialogStatus = 'examine1'
       this.dialogFormVisible_Examine = true
       this.statueReason = false
     },
@@ -1544,7 +1666,7 @@ export default {
         this.statueReason = false
       }
     },
-    createExamineData() {
+    createExamineData1() {
       console.log('点击了库管审核')
       this.isokDisable = true
       setTimeout(() => {
@@ -1565,6 +1687,7 @@ export default {
           this.requestParam.parammaps.workflowNote = this.examineTemp.workflowNote
           PostDataByName(this.requestParam).then(response => {
             console.log('审核确认发送参数', this.requestParam)
+            this.isokDisable = false
             if (response.msg !== 'fail') {
               this.get_table_data()
               this.dialogFormVisible_Examine = false
@@ -1584,7 +1707,7 @@ export default {
       })
     },
 
-    handleExamine22(row) {
+    handleExamine2(row) {
       console.log('点击了设备主管审核')
       if (row == undefined) {
         this.examineTemp = this.seeTemp
@@ -1595,11 +1718,11 @@ export default {
         this.$set(this.examineTemp, 'statue', 1)
         this.$set(this.examineTemp, 'workflowNote', '')
       }
-      this.dialogStatus = 'examine22'
+      this.dialogStatus = 'examine2'
       this.dialogFormVisible_Examine = true
       this.statueReason = false
     },
-    createExamineData22() {
+    createExamineData2() {
       console.log('点击了设备主管审核')
       this.isokDisable = true
       setTimeout(() => {
@@ -1619,6 +1742,7 @@ export default {
           this.requestParam.parammaps.empId	 = Cookies.get('employeid')
           this.requestParam.parammaps.workflowNote = this.examineTemp.workflowNote
           PostDataByName(this.requestParam).then(response => {
+            this.isokDisable = false
             console.log('审核确认发送参数', this.requestParam)
             if (response.msg !== 'fail') {
               this.get_table_data()
@@ -1638,7 +1762,7 @@ export default {
         }
       })
     },
-    handleExamine2(row) {
+    handleExamine3(row) {
       console.log('点击了供应主管审核')
       if (row == undefined) {
         this.examineTemp = this.seeTemp
@@ -1649,11 +1773,11 @@ export default {
         this.$set(this.examineTemp, 'statue', 1)
         this.$set(this.examineTemp, 'workflowNote', '')
       }
-      this.dialogStatus = 'examine2'
+      this.dialogStatus = 'examine3'
       this.dialogFormVisible_Examine = true
       this.statueReason = false
     },
-    createExamineData2() {
+    createExamineData3() {
       console.log('点击了供应主管审核')
       this.isokDisable = true
       setTimeout(() => {
@@ -1674,6 +1798,7 @@ export default {
           this.requestParam.parammaps.workflowNote = this.examineTemp.workflowNote
           PostDataByName(this.requestParam).then(response => {
             console.log('审核确认发送参数', this.requestParam)
+            this.isokDisable = false
             if (response.msg !== 'fail') {
               this.get_table_data()
               this.dialogFormVisible_Examine = false
@@ -1692,7 +1817,7 @@ export default {
         }
       })
     },
-    handleExamine33(row) {
+    handleExamine4(row) {
       console.log('点击了场长审核')
       if (row == undefined) {
         this.examineTemp = this.seeTemp
@@ -1703,11 +1828,11 @@ export default {
         this.$set(this.examineTemp, 'workflowNote', '')
         this.$set(this.examineTemp, 'statue', 1)
       }
-      this.dialogStatus = 'examine33'
+      this.dialogStatus = 'examine4'
       this.dialogFormVisible_Examine = true
       this.statueReason = false
     },
-    createExamineData33() {
+    createExamineData4() {
       console.log('点击了场长审核')
       this.isokDisable = true
       setTimeout(() => {
@@ -1741,6 +1866,7 @@ export default {
             }}
           }
           ExecDataByConfig(this.requestParam).then(response => {
+            this.isokDisable = false
             if (response.msg !== 'fail') {
               this.get_table_data()
               this.dialogFormVisible_Examine = false
@@ -1754,7 +1880,7 @@ export default {
         }
       })
     },
-    handleExamine3(row) {
+    handleExamine5(row) {
       console.log('点击了采购审核')
       if (row == undefined) {
         this.examineTemp = this.seeTemp
@@ -1765,16 +1891,16 @@ export default {
         this.$set(this.examineTemp, 'workflowNote', '')
         this.$set(this.examineTemp, 'statue', 1)
       }
-      this.dialogStatus = 'examine3'
+      this.dialogStatus = 'examine5'
       this.dialogFormVisible_Examine = true
       this.statueReason = false
     },
-    createExamineData3() {
+    createExamineData5() {
       console.log('点击了采购审核')
       this.isokDisable = true
       setTimeout(() => {
         this.isokDisable = false
-      }, 1000)
+      }, 10000)
       this.$refs['examineTemp'].validate(valid => {
         if (valid) {
           this.requestParam = {}
@@ -1801,6 +1927,7 @@ export default {
             }}
           }
           ExecDataByConfig(this.requestParam).then(response => {
+            this.isokDisable = false
             if (response.msg !== 'fail') {
               this.get_table_data()
               this.dialogFormVisible_Examine = false
@@ -1813,7 +1940,210 @@ export default {
           })
         }
       })
-    }
+    },
+    handleExamine6(row) {
+      console.log('点击了财务审核')
+      if (row == undefined) {
+        this.examineTemp = this.seeTemp
+        this.$set(this.seeTemp, 'statue', 1)
+        this.$set(this.seeTemp, 'workflowNote', '')
+      } else {
+        this.examineTemp = Object.assign({}, row)
+        this.$set(this.examineTemp, 'workflowNote', '')
+        this.$set(this.examineTemp, 'statue', 1)
+      }
+      this.dialogStatus = 'examine6'
+      this.dialogFormVisible_Examine = true
+      this.statueReason = false
+    },
+    createExamineData6() {
+      console.log('点击了财务审核')
+      this.isokDisable = true
+      setTimeout(() => {
+        this.isokDisable = false
+      }, 10000)
+      this.$refs['examineTemp'].validate(valid => {
+        if (valid) {
+          this.requestParam = {}
+          this.requestParam.name = 'partpurchaseFinanceId'
+          this.requestParam.parammaps = {}
+          this.requestParam.parammaps.id = this.examineTemp.id
+          if (this.examineTemp.statue == 1) {
+            this.requestParam.parammaps.statue = 13
+          } else if (this.examineTemp.statue == 2) {
+            this.requestParam.parammaps.statue = 14
+          }
+          this.requestParam.parammaps.financeId	 = Cookies.get('employeid')
+          this.requestParam.parammaps.workflowNote = this.examineTemp.workflowNote
+          PostDataByName(this.requestParam).then(response => {
+            console.log('审核确认发送参数', this.requestParam)
+            this.isokDisable = false
+            if (response.msg !== 'fail') {
+              this.get_table_data()
+              this.dialogFormVisible_Examine = false
+              this.dialogFormVisible_See = false
+              this.statueReason = false
+              this.$notify({
+                title: '成功',
+                message: '审核成功',
+                type: 'success',
+                duration: 2000
+              })
+            } else {
+              failproccess(response, this.$notify)
+            }
+          })
+        }
+      })
+    },
+    handle_specialSubscription(){
+      this.resetCreateTemp()
+      this.edit = 1
+      this.getDepartParam.parammaps.pastureId = this.createTemp.pastureId
+      this.getCreateDepartDownList()
+      this.dialogStatus = 'special'
+      this.dialogFormVisible = true
+      this.$nextTick(() => {
+        this.$refs['createTemp'].clearValidate()
+      })
+      this.getCreateNumber()
+
+    },
+    getProviderList(){
+      let data = {
+        "name":"getProviderList",
+        "page":1,"offset":1,"pagecount":100,
+        "returntype":"Map","parammaps":{"providerName":""}
+      }
+      GetDataByName(data).then(response => {
+        if (response.data.list !== null) {
+          this.providerList = response.data.list
+        }else{
+          this.providerList = []
+        }
+      })
+    },
+    changeType(){
+      this.listAdd = []
+      this.$set(this.createTemp,'providerId','')
+      this.$set(this.createTemp,'providerName','')
+    },
+    special_dialog_save(){
+      console.log('特殊申购保存')
+      this.isokDisable = true
+      setTimeout(() => {
+        this.isokDisable = false
+      }, 1000)
+      this.$refs['createTemp'].validate(valid => {
+        if (valid) {
+          console.log(this.listAdd)
+          if (this.createTemp.orderNumber == '' || this.createTemp.orderNumber == null || this.createTemp.orderNumber == undefined) {
+            GetDataByName(this.getParmCreateNumber).then(response => {
+              this.$nextTick(() => {
+                console.log('新增申购单号', response.data.list[0].orderCode)
+                this.createTemp.orderNumber = response.data.list[0].orderCode
+                this.$forceUpdate()
+                this.special_dialog_saveSave()
+              })
+            })
+          } else {
+            this.special_dialog_saveSave()
+          }
+        }
+      })
+    },
+    special_dialog_saveSave(){
+
+      if (this.listAdd.length !== 0) {
+        for (var j = 0; j < this.listAdd.length; j++) {
+          console.log(this.listAdd[j].amount)
+          if (this.listAdd[j].amount == null || this.listAdd[j].amount === '') {
+            this.$message({ type: 'warning', message: '请检查申购数量是否未填写', duration: 2000 })
+            return false
+          } else {
+            var rulesAmount = /^[1-9]\d*$/
+            if (!rulesAmount.test(this.listAdd[j].amount)) {
+              this.$message({ type: 'error', message: '申购数量请输入正整数', duration: 2000 })
+              return false
+            }
+          }
+          if(this.createTemp.purchaseType == '2'){
+            if (this.createTemp.providerId !== '') {
+              if (this.listAdd[j].price == '') {
+                this.$message({ type: 'warning', message: '请检查单价是否为空', duration: 2000 })
+                return false
+              } else {
+                if (parseFloat(this.listAdd[j].price) == 0) {
+                  this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后两位', duration: 2000 })
+                  return false
+                } else {
+                  var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,2})?$/
+                  if (rulesPrice.test(this.listAdd[j].price) == false) {
+                    this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后两位', duration: 2000 })
+                    return false
+                  }
+                }
+              }
+            }
+          }
+        }
+        if(this.createTemp.purchaseType == '1' || this.createTemp.purchaseType == '3' ){
+          if(this.createTemp.providerId == ''){
+            this.$message({ type: 'error', message: '请选择供应商', duration: 2000 })
+            return false
+          }
+        }else{
+          // if(this.createTemp.providerId == ''){
+          //   this.$message({ type: 'error', message: '请选择供应商', duration: 2000 })
+          //   return false
+          // }
+          if(this.createTemp.funderId == ''){
+            this.$message({ type: 'error', message: '请选择垫付人', duration: 2000 })
+            return false
+          }
+        }
+        let url = 'authdata/spare/parts/requisitions'
+        for(let i=0;i<this.listAdd.length;i++){
+          this.$set(this.listAdd[i],'contractId',String(this.listAdd[i].contractId))
+        }
+        let data = {
+          "pastureId": parseInt(this.createTemp.pastureId),
+          "departmentId": parseInt(this.createTemp.departmentId),
+          'departmentName':this.createTemp.departmentName,
+          "orderNumber": this.createTemp.orderNumber,
+          "createTime": this.createTemp.createTime,
+          "employeId": this.createTemp.employeId,
+          "providerName": this.createTemp.providerName,
+          "purchaseType": parseInt(this.createTemp.purchaseType),
+          "spot_list":this.listAdd
+        }
+        if(this.createTemp.purchaseType == '1' || this.createTemp.purchaseType == '3'){
+          data.providerId = this.createTemp.providerId
+          data.providerName =  this.providerList.find(obj => obj.id == this.createTemp.providerId).providerName
+        }
+        if(this.createTemp.funderId){
+          data.funderId = this.createTemp.funderId
+        }
+        postJson(url, data).then(response => {
+          if (response.msg !== 'fail') {
+            this.get_table_data()
+            this.dialogFormVisible = false
+            this.$notify({ title: '成功', message: '保存成功', type: 'success', duration: 2000 })
+          } else {
+            failproccess(response, this.$notify)
+          }
+        })
+        return true
+      } else {
+        this.$message({
+          title: '',
+          message: '请选择备件',
+          type: 'warning',
+          duration: 2000
+        })
+        return false
+      }
+    },
   }
 }
 </script>

+ 0 - 1617
src/views/custom/subscribe/index1.vue

@@ -1,1617 +0,0 @@
-<template>
-  <div class="app-container">
-    <div v-if="isPercentage" class="percentage" style="width: 210px;height: 90px;background: #fff;position: fixed;bottom: 0;left: 0;z-index: 9999999999999;">
-      <h4 style="padding-left: 10px;line-height: 0;">导出进度:</h4>
-      <el-progress style="padding-left: 10px;" :text-inside="true" :stroke-width="26" :percentage="percentage" />
-    </div>
-    <div class="filter-container">
-      <el-select v-model="getdataListParm.parammaps.pastureName" style="width: 140px;" placeholder="牧场" class="filter-item" @change="changePastureName">
-        <el-option v-for="item in findAllPasture" :key="item.id" :label="item.name" :value="item.name" />
-      </el-select>
-      <el-input v-model="getdataListParm.parammaps.orderNumber" placeholder="申购单号" style="width: 200px;" class="filter-item" />
-      <el-select v-model="getdataListParm.parammaps.stuteSH" style="width: 140px;" clearable placeholder="审核状态" class="filter-item">
-        <el-option v-for="item in statues" :key="item.id" :label="item.name" :value="item.id" />
-      </el-select>
-      <el-select v-model="getdataListParm.parammaps.departmentId" clearable style="width: 140px;" placeholder="申购部门" class="filter-item">
-        <el-option v-for="item in findAllDepart" :key="item.id" :label="item.name" :value="item.id" />
-      </el-select>
-      <el-input v-model="getdataListParm.parammaps.empName" placeholder="申购人" style="width: 200px;" class="filter-item" />
-      <!-- <el-select v-model="getdataListParm.parammaps.empName " style="width: 140px;" placeholder="申购人" class="filter-item">
-        <el-option v-for="item in findAllEmploye" :key="item.id" :label="item.name" :value="item.id" />
-      </el-select> -->
-      <el-date-picker ref="inputDatetime" v-model="getdataListParm.parammaps.inputDatetime" class="inputDatetime" type="datetimerange" style="width: 250px;top:-3px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" />
-      <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="form_search">搜索</el-button>
-      <div>
-
-        <el-button v-if="isSubscribeAdd" class="filter-item" type="primary" icon="el-icon-edit" @click="form_add">新增</el-button>
-        <el-button v-if="isSubscribeExport" v-waves class="filter-item" type="success" icon="el-icon-upload2" @click="handleDownload">导出</el-button>
-        <el-radio-group v-model="radioAll" style="margin-top:-9px" @change="changeAll()">
-          <el-radio-button label="全部" />
-          <el-badge :value="pending.total" class="item">
-            <el-radio-button label="待处理" />
-          </el-badge>
-          <el-radio-button label="已处理" />
-        </el-radio-group>
-      </div>
-    </div>
-    <div class="filter-button" />
-
-    <el-table
-      :key="tableKey"
-      v-loading="listLoading"
-      element-loading-text="给我一点时间"
-      :data="list"
-      border
-      fit
-      highlight-current-row
-      style="width: 100%;"
-      :row-style="rowStyle"
-      :cell-style="cellStyle"
-      class="elTable"
-      :max-height="myHeight"
-    >
-      <el-table-column label="序号" align="center" type="index" width="50px">
-        <template slot-scope="scope">
-          <span>{{ scope.$index + (pageNum-1) * pageSize + 1 }}</span>
-        </template>
-      </el-table-column>
-      <el-table-column label="申购单号" min-width="150px" align="center">
-        <template slot-scope="scope">
-          <span>{{ scope.row.orderNumber }}</span>
-        </template>
-      </el-table-column>
-      <el-table-column label="牧场" min-width="90px" align="center">
-        <template slot-scope="scope">
-          <span>{{ scope.row.pastureName }}</span>
-        </template>
-      </el-table-column>
-      <el-table-column label="申购部门" min-width="80px" align="center">
-        <template slot-scope="scope">
-          <span>{{ scope.row.departmentName }}</span>
-        </template>
-      </el-table-column>
-
-      <el-table-column label="申购人" min-width="80px" align="center">
-        <template slot-scope="scope">
-          <span>{{ scope.row.empname }}</span>
-        </template>
-      </el-table-column>
-      <el-table-column label="申购日期" sortable prop="inputTime" min-width="80px" align="center" />
-      <el-table-column label="审核状态" min-width="80px" align="center" :formatter="statue" />
-      <el-table-column label="操作" align="center" width="250" class-name="small-padding fixed-width" fixed="right">
-        <template slot-scope="{row}">
-          <el-button v-if="isSubscribeSee" type="primary" size="mini" @click="form_see(row)">查看</el-button>
-          <el-button v-if="row.statue == 4||row.statue == 6||row.statue == 8" style="display:inline-block" type="success" size="mini" @click="form_edit(row)">编辑</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="form_edit(row)">编辑</el-button>
-          <!-- 库管 -->
-          <el-button v-if="isSubscribeExamineKG && row.statue == 2" style="display:inline-block" type="success" size="mini" @click="handleExamine(row)">审核1</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine(row)">审核1</el-button>
-          <!-- 主管 -->
-          <el-button v-if="isSubscribeExamineZG && row.statue == 3" style="display:inline-block" type="success" size="mini" @click="handleExamine2(row)">审核2</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine2(row)">审核2</el-button>
-          <!-- 采购 -->
-          <el-button v-if="isSubscribeExamineCG && row.statue == 5" style="display:inline-block" type="success" size="mini" @click="handleExamine3(row)">审核3</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine3(row)">审核3</el-button>
-          <el-button v-if="isSubscribeDelete && (row.statue == 4||row.statue == 6||row.statue == 8)" style="display:inline-block" type="danger" size="mini" @click="form_delete(row)">删除</el-button>
-          <el-button v-else style="display:none" type="danger" size="mini" @click="form_delete(row)">删除</el-button>
-        </template>
-      </el-table-column>
-    </el-table>
-    <pagination v-show="total>0" :total="total" :page.sync="getdataListParm.offset" :limit.sync="getdataListParm.pagecount" @pagination="get_table_data" />
-    <!-- 弹出层新增or修改 -->
-    <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisible" :close-on-click-modal="false" width="90%">
-      <div class="app-container">
-        <el-form
-          ref="createTemp"
-          :rules="rules"
-          :model="createTemp"
-          label-position="right"
-          label-width="100px"
-          style="width: 90%;margin:0 auto;"
-        >
-          <el-row>
-            <el-col :span="8">
-              <el-form-item label="申购单号:" prop="orderNumber">
-                <el-input ref="orderNumber" v-model="createTemp.orderNumber" disabled />
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="牧场:" prop="pastureId">
-                <el-select v-model="createTemp.pastureId" placeholder="牧场" class="filter-item" style="width:100%" :disabled="dialogStatus==='update'" @change="changePasture">
-                  <el-option v-for="item in findAllPasture" :key="item.id" :label="item.name" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="申购部门:" prop="departmentId">
-                <el-select v-model="createTemp.departmentId" placeholder="申购部门" class="filter-item" style="width:100%" :disabled="dialogStatus==='update'" @change="changeDepart">
-                  <el-option v-for="item in createDepartList" :key="item.id" :label="item.name" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-          </el-row>
-          <el-row>
-            <el-col :span="8">
-              <el-form-item label="申购人:" prop="employeId">
-                <el-select v-model="createTemp.employeId" placeholder="申购人" class="filter-item" style="width:100%" :disabled="dialogStatus==='update'">
-                  <el-option v-for="item in findAllEmploye" :key="item.id" :label="item.name" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="申购日期:" prop="createTime">
-                <el-date-picker v-model="createTemp.createTime" :picker-options="pickerOptions" type="date" placeholder="申购日期" format="yyyy-MM-dd" value-format="yyyy-MM-dd" style="width:100%" :disabled="dialogStatus==='update'" />
-              </el-form-item>
-            </el-col>
-            <el-col v-if="dialogStatus==='create'" :span="8">
-              <el-form-item label="线上采购:" prop="providerId">
-                <el-select v-model="createTemp.providerId" placeholder="线上采购" clearable class="filter-item" style="width:100%" @change="changeProvider">
-                  <el-option v-for="item in onlineSubscriptionList" :key="item.id" :label="item.providerName" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-            <el-col v-if="dialogStatus==='update'" :span="8">
-              <el-form-item label="线上采购:" prop="providerName">
-                <el-input ref="providerName" v-model="createTemp.providerName" disabled />
-              </el-form-item>
-            </el-col>
-
-          </el-row>
-          <el-row>
-            <el-col :span="16">
-              <el-form-item label="备件:" prop="partCode">
-                <el-autocomplete
-                  v-model="createTemp.partCode"
-                  value-key="name"
-                  class="inline-input"
-                  :fetch-suggestions="sparePartSearch"
-                  placeholder="请输入备件编号或备件名称或备件规格"
-                  style="width:100%"
-                  @select="handleSelectSparePart"
-                >
-                  <template slot-scope="{ item }">
-                    <b>备件编号:</b><div class="name" style="display: inline;">{{ item.partCode }}</div>&nbsp;
-                    |  &nbsp;<b>备件名称:</b><span class="addr">{{ item.partName }}</span>&nbsp;
-                    |  &nbsp;<b>备件规格:</b><span class="addr">{{ item.specification }}</span>
-                  </template>
-                </el-autocomplete>
-              </el-form-item>
-            </el-col>
-          </el-row>
-        </el-form>
-        <el-table
-          :key="tableKey"
-          v-loading="listLoading"
-          element-loading-text="给我一点时间"
-          :data="listAdd"
-          border
-          fit
-          highlight-current-row
-          style="width: 100%;margin-bottom:30px"
-          :row-style="rowStyle"
-          :cell-style="cellStyle"
-          class="elTable"
-        >
-          <!-- table表格 -->
-          <el-table-column label="序号" align="center" type="index" width="50px" />
-          <el-table-column label="备件编号" prop="partCode" align="center" min-width="90">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partCode }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件名称" prop="partName" align="center" min-width="90">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件规格" prop="specification" min-width="80px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.specification }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件图片" prop="picpath" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <el-popover placement="right" title="" trigger="hover">
-                <img v-if="scope.row.picpath !== ''" :src="scope.row.picpath">
-                <img v-if="scope.row.picpath !== ''" slot="reference" :src="scope.row.picpath" :alt="scope.row.srcpath" style="height: 100px;width:100px;">
-              </el-popover>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件品牌" prop="brand" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span v-if="dialogStatus==='create'">{{ scope.row.brandName }}</span>
-              <span v-if="dialogStatus==='update'">{{ scope.row.brandName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="计量单位" prop="unit" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span>{{ scope.row.unit }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="现有库存" prop="reportery" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span>{{ scope.row.reportery }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="价格" prop="price" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span v-if="createTemp.providerId == ''">{{ scope.row.price }}</span>
-              <el-form v-else :model="scope.row" :rules="rules">
-                <el-form-item prop="price">
-                  <el-input v-model="scope.row.price" style="margin-top:15px" />
-                </el-form-item>
-              </el-form>
-            </template>
-          </el-table-column>
-          <el-table-column label="申购数量" min-width="120px" align="center" valign="middle">
-            <template slot-scope="scope">
-              <el-form :model="scope.row" :rules="rules">
-                <el-form-item prop="amount">
-                  <el-input v-model="scope.row.amount" style="margin-top:15px" />
-                </el-form-item>
-              </el-form>
-            </template>
-          </el-table-column>
-          <el-table-column label="备注" min-width="110px" align="center" valign="middle">
-            <template slot-scope="scope">
-              <el-input v-model="scope.row.purpose" />
-            </template>
-          </el-table-column>
-          <el-table-column
-            label="操作"
-            align="center"
-            width="100"
-            class-name="small-padding fixed-width"
-            fixed="right"
-          >
-            <template slot-scope="{row}">
-              <a class="del" @click="partDelete(row)">删除</a>
-            </template>
-          </el-table-column>
-        </el-table>
-        <div slot="footer" class="dialog-footer" style="bottom:10px">
-          <el-button type="primary" :disabled="isokDisable" @click="dialogStatus==='create'?add_dialog_save():edit_dialog_save()">保存并关闭</el-button>
-          <el-button @click="dialogFormVisible = false;get_table_data()">取消并关闭</el-button>
-        </div>
-      </div>
-    </el-dialog>
-    <!-- 查看 -->
-    <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisibleSee" :close-on-click-modal="false" width="90%">
-      <div class="app-containerSee">
-        <el-form
-          ref="seeTemp"
-          :rules="rules"
-          :model="seeTemp"
-          label-position="right"
-          label-width="100px"
-          style="width: 90%;margin:0 auto;"
-        >
-          <el-row>
-            <el-col :span="8">
-              <el-form-item label="申购单号:" prop="orderNumber">
-                <el-input ref="orderNumber" v-model="seeTemp.orderNumber" disabled />
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="牧场:" prop="pastureId">
-                <el-select v-model="seeTemp.pastureId" placeholder="牧场" class="filter-item" disabled style="width:100%">
-                  <el-option v-for="item in findAllPasture" :key="item.id" :label="item.name" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="申购部门:" prop="departmentName">
-                <el-input ref="departmentName" v-model="seeTemp.departmentName" disabled />
-              </el-form-item>
-            </el-col>
-          </el-row>
-          <el-row>
-            <el-col :span="8">
-              <el-form-item label="申购人:" prop="empname">
-                <el-input ref="empname" v-model="seeTemp.empname" disabled />
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="申购日期:" prop="createTime">
-                <el-date-picker v-model="seeTemp.createTime" :picker-options="pickerOptions" type="date" placeholder="申购日期" format="yyyy-MM-dd" value-format="yyyy-MM-dd" style="width:100%" disabled />
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="线上采购:" prop="providerName">
-                <el-input ref="providerName" v-model="seeTemp.providerName" disabled />
-              </el-form-item>
-            </el-col>
-          </el-row>
-        </el-form>
-        <el-table
-          :key="tableKey"
-          v-loading="listLoadingSee"
-          element-loading-text="给我一点时间"
-          :data="listSee"
-          border
-          fit
-          highlight-current-row
-          style="width: 100%;margin-bottom:30px"
-          :row-style="rowStyle"
-          :cell-style="cellStyle"
-          class="elTable"
-          @sort-change="tableSort"
-        >
-          <el-table-column type="index" label="序号" align="center" width="50px" />
-          <el-table-column label="备件编号" prop="partCode" align="center" min-width="90">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partCode }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件名称" prop="partName" align="center" min-width="90">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件规格" prop="specification" min-width="90px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.specification }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件图片" prop="picpath" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <el-popover placement="right" title="" trigger="hover">
-                <img v-if="scope.row.picpath !== ''" :src="scope.row.picpath">
-                <img v-if="scope.row.picpath !== ''" slot="reference" :src="scope.row.picpath" :alt="scope.row.srcpath" style="height: 100px;width:100px;">
-              </el-popover>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件品牌" prop="brandName" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span>{{ scope.row.brandName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="计量单位" prop="unit" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span>{{ scope.row.unit }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="现有库存" sortable prop="storageAmount" align="center" min-width="60" />
-          <el-table-column label="价格" sortable prop="price" align="center" min-width="60" />
-          <el-table-column label="申购数量" sortable prop="amount" align="center" min-width="60" />
-          <el-table-column label="备注" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.purpose }}</span>
-            </template>
-          </el-table-column>
-        </el-table>
-        <el-form
-          ref="seeTemp"
-          :rules="rules"
-          :model="seeTemp"
-          label-position="right"
-          label-width="100px"
-          style="width: 90%;margin:0 auto;"
-        >
-          <el-row>
-            <el-col>
-              <el-form-item label="流程进度" />
-              <el-steps :active="active" align-center finish-status="success">
-                <el-step
-                  v-for="(item,index) in activeList"
-                  :key="index"
-                  :title="item.title"
-                  :status="item.status"
-                >
-                  <template slot="description">
-                    <div class="step-row">
-                      <div>{{ item.name }}&nbsp;&nbsp;{{ item.date }}</div>
-                      <div>{{ item.reason }}</div>
-                    </div>
-                  </template>
-                </el-step>
-              </el-steps>
-            </el-col>
-          </el-row>
-          <el-row>
-            <el-col>
-              <el-form-item label="操作:">
-                <!-- 库管 -->
-                <el-button v-if="isSubscribeExamineKG && seeTemp.statue == 2" type="success" style="display:inline-block" @click="handleExamine(row)">审核1</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine(row)">审核1</el-button>
-                <!-- 主管 -->
-                <el-button v-if="isSubscribeExamineZG && seeTemp.statue == 3" type="success" style="display:inline-block" @click="handleExamine2(row)">审核2</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine2(row)">审核2</el-button>
-                <!-- 采购 -->
-                <el-button v-if="isSubscribeExamineCG && seeTemp.statue == 5" type="success" style="display:inline-block" @click="handleExamine3(row)">审核3</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine3(row)">审核3</el-button>
-              </el-form-item>
-            </el-col>
-          </el-row>
-        </el-form>
-        <div slot="footer" class="dialog-footer" style="bottom:5px;">
-          <el-button @click="dialogFormVisibleSee = false">关闭</el-button>
-        </div>
-      </div>
-    </el-dialog>
-    <!-- 审核 -->
-    <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisible_Examine" :close-on-click-modal="false" width="30%">
-      <div class="app-examine">
-        <h3 style="width: 100%;margin:0 0 0 5%;line-height:50px;">请确认审核结果:</h3>
-        <el-form ref="examineTemp" :rules="rules" :model="examineTemp" label-position="right" style="width: 50%;margin:0 auto;">
-          <el-row style="width:88%;height:150px;margin:0 auto;">
-            <el-col :span="20">
-              <el-form-item>
-                <el-radio-group v-model="examineTemp.statue" @change="changeStatue">
-                  <el-radio :label="1" checked>通过</el-radio>
-                  <el-radio :label="2">不通过</el-radio>
-                </el-radio-group>
-              </el-form-item>
-            </el-col>
-            <el-col v-if="statueReason" :span="20">
-              <el-input v-model="examineTemp.workflowNote" type="textarea" :autosize="{ minRows: 2, maxRows: 4}" placeholder="请输入不通过原因" />
-            </el-col>
-          </el-row>
-        </el-form>
-      </div>
-      <div slot="footer" class="dialog-footer">
-        <el-button v-if="dialogStatus==='examine'" type="primary" :disabled="isokDisable" @click="createExamineData()">确认</el-button>
-        <el-button v-if="dialogStatus==='examine2'" type="primary" :disabled="isokDisable" @click="createExamineData2()">确认</el-button>
-        <el-button v-if="dialogStatus==='examine3'" type="primary" :disabled="isokDisable" @click="createExamineData3()">确认</el-button>
-        <el-button @click="dialogFormVisible_Examine = false;">关闭</el-button>
-      </div>
-    </el-dialog>
-  </div>
-</template>
-
-<script>
-// / 引入
-import { GetDataByName, GetDataByNames, PostDataByName, ExecDataByConfig, checkButtons, failproccess, GetAccount } from '@/api/common'
-import waves from '@/directive/waves' // waves directive
-import { parseTime, sortChange, json2excel } from '@/utils/index.js'
-// eslint-disable-next-line no-unused-vars
-import { validateEMail } from '@/utils/validate.js'
-import Pagination from '@/components/Pagination' // secondary package based on el-pagination
-import { MessageBox } from 'element-ui'
-import Cookies from 'js-cookie'
-import { getToken } from '@/utils/auth'
-export default {
-  name: 'Subscribe',
-  components: { Pagination },
-  directives: { waves },
-  data() {
-    return {
-      myHeight:document.documentElement.clientHeight - 85- 150,
-      isSubscribeAdd: [], isSubscribeTemplate: [], isSubscribeImport: [], isSubscribeExport: [], isSubscribeSee: [], isSubscribeDelete: [], isSubscribeExamineKG: [], isSubscribeExamineCG: [], isSubscribeExamineZG: [],
-      isokDisable: false,
-      findAllProvider: [],
-      findAllPasture: [],
-      findAllDepart: [],
-      findAllEmploye: [],
-      onlineSubscriptionList: [], createDepartList: [], edit: 0,
-      requestParams: [
-        { name: 'findAllProvider', offset: 0, pagecount: 0, params: [] },
-        { name: 'findAllPasture', offset: 0, pagecount: 0, returntype: 'Map', parammaps: { 'id': Cookies.get('pastureid') }},
-        { name: 'findAllEmploye', offset: 0, pagecount: 0, parammaps: { 'pastureId': Cookies.get('pastureid') }},
-        { name: 'getflexProviderList', offset: 0, pagecount: 0, parammaps: {}}
-      ],
-      getDepartParam: {
-        name: 'findAllDepart', offset: 0, pagecount: 0,
-        parammaps: { 'pastureId': Cookies.get('pastureid'), 'eId': Cookies.get('employeid') }
-      },
-      pickerOptions: {
-        disabledDate(time) {
-          return time.getTime() > Date.now()// 当天之前的时间可选
-        }
-      },
-      textMap: {
-        update: '编辑',
-        create: '新增',
-        see: '查看',
-        examine: '审核1',
-        examine2: '审核2',
-        examine3: '审核3'
-      },
-      rules: {
-        equipmentName: [{ required: true, message: '必填', trigger: 'blur' }]
-      },
-      rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
-      cellStyle: { padding: 0 + 'px' },
-      statues: [{ id: '0', name: '审核中' }, { id: '1', name: '已通过' }, { id: '2', name: '未通过' }],
-      radioAll: '全部',
-      getdataListParm: {
-        name: 'getpartpurchaseList',
-        page: 1,
-        offset: 1,
-        pagecount: 10,
-        returntype: 'Map',
-        parammaps: {
-          pastureName: Cookies.get('pasturename'),
-          empId: Cookies.get('employeid'),
-          orderNumber: '',
-          stuteSH: '',
-          departmentId: '',
-          inputDatetime: '',
-          startTime: '',
-          stopTime: '',
-          loginId: Cookies.get('employeid'),
-          menu: 'Subscribe',
-          logindeptId: Cookies.get('departmentid'),
-          loginpastureId: Cookies.get('pastureid')
-        }
-      },
-      tableKey: 0,
-      listLoading: true,
-      total: 0,
-      list: [],
-      dialogStatus: '',
-      dialogFormVisible: false,
-      dialogFormVisibleSee: false,
-      listLoadingSee: true,
-      listSee: [],
-      totalSee: 0,
-      seeTemp: {},
-      getdataListSee: {
-        name: 'getpartpurchaseBybig',
-        returntype: 'Map',
-        parammaps: {}
-      },
-      createTemp: {
-        pastureId: this.$store.state.user.pastureid,
-        departmentId: this.$store.state.user.departmentid,
-        employeId: this.$store.state.user.employeid,
-        createTime: parseTime(new Date(), '{y}-{m}-{d}'),
-        providerId: ''
-      },
-      requestSparePart: {
-        name: 'getPartsListSG',
-        page: 1,
-        offset: 1,
-        pagecount: 20,
-        returntype: 'Map',
-        parammaps: {
-          pastureId: Cookies.get('pastureid')
-        }
-      },
-      getParmCreateNumber: {
-        name: 'autoCreatCode',
-        page: 0,
-        offset: 0,
-        pagecount: 0,
-        returntype: 'Map',
-        parammaps: {
-          pastureId: Cookies.get('pastureid'),
-          codeType: 'SG'
-        }
-      },
-      getParmCreateAmount: {
-        name: 'getPartsListSGv2',
-        page: 0,
-        offset: 0,
-        pagecount: 0,
-        returntype: 'Map',
-        parammaps: {
-          pastureId: Cookies.get('pastureid')
-        }
-      },
-      listAdd: [],
-      postDataPramas: {},
-      requestParam: {},
-      dialogFormVisible_Examine: false,
-      examineTemp: {
-        statue: 1
-      },
-      statueReason: false,
-      activeList: [],
-      active: 3,
-      buttons: [],
-      downloadParam: {},
-      isPercentage: false,
-      percentage: 1,
-      pending: {
-        total: 0,
-        getdataListParm: {
-          name: 'getpartpurchaseWebListNO', page: 1, offset: 1, getTotal: 'total3', pagecount: 10, returntype: 'Map',
-          parammaps: {
-            loginId: Cookies.get('employeid'),
-            menu: 'Subscribe', logindeptId: Cookies.get('departmentid'), loginpastureId: Cookies.get('pastureid'),
-            empId: Cookies.get('employeid'), pastureId: Cookies.get('pastureid'), deptId: Cookies.get('departmentid')
-          }
-        }
-      }
-    }
-  },
-
-  created() {
-    const that = this
-    GetDataByName({ 'name': 'getUserPCButtons', 'parammaps': { 'jwt_username': Cookies.get('name') }}).then(response => {
-      that.buttons = response.data.list
-      that.get_auto_buttons()
-    })
-    this.get_select_list()
-    this.get_table_data()
-    this.getPendingList()
-  },
-
-  methods: {
-    tableSort(column) {
-      sortChange(column, this.listSee)
-    },
-    get_auto_buttons() {
-      // 新增
-      const SubscribeAdd = 'customs:subscribe:add'
-      const isSubscribeAdd = checkButtons(this.$store.state.user.buttons, SubscribeAdd)
-      this.isSubscribeAdd = isSubscribeAdd
-      // 模板
-      // eslint-disable-next-line no-redeclare
-      const SubscribeTemplate = 'customs:subscribe:template'
-      const isSubscribeTemplate = checkButtons(this.$store.state.user.buttons, SubscribeTemplate)
-      this.isSubscribeTemplate = isSubscribeTemplate
-      // 导入
-      // eslint-disable-next-line no-redeclare
-      const SubscribeImport = 'customs:subscribe:import'
-      const isSubscribeImport = checkButtons(this.$store.state.user.buttons, SubscribeImport)
-      this.isSubscribeImport = isSubscribeImport
-      // 导出
-      // eslint-disable-next-line no-redeclare
-      const SubscribeExport = 'customs:subscribe:export'
-      const isSubscribeExport = checkButtons(this.$store.state.user.buttons, SubscribeExport)
-      this.isSubscribeExport = isSubscribeExport
-      // 查看
-      // eslint-disable-next-line no-redeclare
-      const SubscribeSee = 'customs:subscribe:see'
-      const isSubscribeSee = checkButtons(this.$store.state.user.buttons, SubscribeSee)
-      this.isSubscribeSee = isSubscribeSee
-      // 删除
-      // eslint-disable-next-line no-redeclare
-      const SubscribeDelete = 'customs:subscribe:delete'
-      const isSubscribeDelete = checkButtons(this.$store.state.user.buttons, SubscribeDelete)
-      this.isSubscribeDelete = isSubscribeDelete
-      // 库管审核
-      // eslint-disable-next-line no-redeclare
-      const SubscribeExamineKG = 'customs:subscribe:examineKG'
-      const isSubscribeExamineKG = checkButtons(this.$store.state.user.buttons, SubscribeExamineKG)
-      this.isSubscribeExamineKG = isSubscribeExamineKG
-      // 主管审核
-      // eslint-disable-next-line no-redeclare
-      const SubscribeExamineZG = 'customs:subscribe:examineZG'
-      const isSubscribeExamineZG = checkButtons(this.$store.state.user.buttons, SubscribeExamineZG)
-      this.isSubscribeExamineZG = isSubscribeExamineZG
-      // 采购审核
-      // eslint-disable-next-line no-redeclare
-      const SubscribeExamineCG = 'customs:subscribe:examineCG'
-      const isSubscribeExamineCG = checkButtons(this.$store.state.user.buttons, SubscribeExamineCG)
-      this.isSubscribeExamineCG = isSubscribeExamineCG
-    },
-    getPendingList() {
-      this.pending.getdataListParm.parammaps.pastureName = this.getdataListParm.parammaps.pastureName
-      this.pending.getdataListParm.parammaps.orderNumber = this.getdataListParm.parammaps.orderNumber
-      this.pending.getdataListParm.parammaps.stuteSH = this.getdataListParm.parammaps.stuteSH
-      this.pending.getdataListParm.parammaps.departmentId = this.getdataListParm.parammaps.departmentId
-      this.pending.getdataListParm.parammaps.inputDatetime = this.getdataListParm.parammaps.inputDatetime
-      this.pending.getdataListParm.parammaps.loginId = this.getdataListParm.parammaps.loginId
-      this.pending.getdataListParm.parammaps.menu = this.getdataListParm.parammaps.menu
-      this.pending.getdataListParm.parammaps.logindeptId = this.getdataListParm.parammaps.logindeptId
-      this.pending.getdataListParm.parammaps.loginpastureId = this.getdataListParm.parammaps.loginpastureId
-      this.pending.getdataListParm.parammaps.empId = this.getdataListParm.parammaps.empId
-      this.pending.getdataListParm.parammaps.pastureId = Cookies.get('pastureid')
-      this.pending.getdataListParm.parammaps.deptId = Cookies.get('departmentid')
-      GetDataByName(this.pending.getdataListParm).then(response => {
-        this.pending.total = response.data.total3
-      })
-    },
-    get_table_data() {
-      this.listLoading = true
-      if (this.$refs['inputDatetime'] !== undefined && this.$refs['inputDatetime'].value !== null) {
-        this.getdataListParm.parammaps.startTime = this.$refs['inputDatetime'].value[0]
-        this.getdataListParm.parammaps.stopTime = this.$refs['inputDatetime'].value[1]
-      } else {
-        this.getdataListParm.parammaps.startTime = ''
-        this.getdataListParm.parammaps.stopTime = ''
-      }
-      GetDataByName(this.getdataListParm).then(response => {
-        if (response.data.list !== null) {
-          console.log('table数据', response.data.list)
-          this.list = response.data.list
-          this.pageNum = response.data.pageNum
-          this.pageSize = response.data.pageSize
-        } else {
-          this.list = []
-        }
-        this.total = response.data.total
-
-        setTimeout(() => {
-          this.listLoading = false
-        }, 100)
-      })
-    },
-    changeAll() {
-      console.log(this.radioAll)
-      if (this.radioAll === '全部') {
-        this.getdataListParm.name = 'getpartpurchaseList'
-        this.getdataListParm.offset = 1
-        this.getdataListParm.parammaps = {
-          pastureName: Cookies.get('pasturename'),
-          orderNumber: '',
-          departmentId: '',
-          inputDatetime: '',
-          startTime: '',
-          stopTime: '',
-          loginId: Cookies.get('employeid'),
-          menu: 'Subscribe',
-          logindeptId: Cookies.get('departmentid'),
-          loginpastureId: Cookies.get('pastureid')
-        }
-        this.get_table_data()
-      } else if (this.radioAll === '待处理') {
-        this.getdataListParm.name = 'getpartpurchaseWebListNO'
-        this.getdataListParm.offset = 1
-        this.getdataListParm.parammaps = {
-          pastureName: this.getdataListParm.parammaps.pastureName,
-          orderNumber: this.getdataListParm.parammaps.orderNumber,
-          stuteSH: this.getdataListParm.parammaps.stuteSH,
-          departmentId: this.getdataListParm.parammaps.departmentId,
-          inputDatetime: this.getdataListParm.parammaps.inputDatetime,
-          startTime: this.getdataListParm.parammaps.startTime,
-          stopTime: this.getdataListParm.parammaps.stopTime,
-          loginId: Cookies.get('employeid'),
-          menu: 'Subscribe',
-          logindeptId: Cookies.get('departmentid'),
-          loginpastureId: Cookies.get('pastureid'),
-          empId: Cookies.get('employeid'),
-          pastureId: Cookies.get('pastureid'),
-          deptId: Cookies.get('departmentid')
-        }
-        this.get_table_data()
-      } else if (this.radioAll === '已处理') {
-        this.getdataListParm.name = 'getpartpurchaseWebList'
-        this.getdataListParm.offset = 1
-        this.getdataListParm.parammaps = {
-          pastureName: this.getdataListParm.parammaps.pastureName,
-          orderNumber: this.getdataListParm.parammaps.orderNumber,
-          stuteSH: this.getdataListParm.parammaps.stuteSH,
-          departmentId: this.getdataListParm.parammaps.departmentId,
-          inputDatetime: this.getdataListParm.parammaps.inputDatetime,
-          startTime: this.getdataListParm.parammaps.startTime,
-          stopTime: this.getdataListParm.parammaps.stopTime,
-          loginId: Cookies.get('employeid'),
-          menu: 'Subscribe',
-          logindeptId: Cookies.get('departmentid'),
-          loginpastureId: Cookies.get('pastureid'),
-          empId: Cookies.get('employeid'),
-          pastureId: Cookies.get('pastureid'),
-          deptId: Cookies.get('departmentid')
-        }
-        this.get_table_data()
-      }
-    },
-    statue: function(cellValue) {
-      // console.log(cellValue.isZeroStock)
-      if (cellValue.statue == 2) {
-        return '审核中'
-      } else if (cellValue.statue == 3) {
-        return '审核中'
-      } else if (cellValue.statue == 4) {
-        return '未通过'
-      } else if (cellValue.statue == 5) {
-        return '审核中'
-      } else if (cellValue.statue == 6) {
-        return '未通过'
-      } else if (cellValue.statue == 7) {
-        return '已通过'
-      } else if (cellValue.statue == 8) {
-        return '未通过'
-      }
-    },
-    form_search() {
-      console.log('点击了table搜索')
-      if (this.getdataListParm.parammaps.inputDatetime === null) {
-        this.getdataListParm.parammaps.inputDatetime = ''
-      }
-      this.getdataListParm.offset = 1
-      this.listLoading = true
-      this.get_table_data()
-      this.getPendingList()
-    },
-    resetCreateTemp() {
-      this.createTemp.pastureId = parseInt(Cookies.get('pastureid'))
-      this.createTemp.departmentId = parseInt(Cookies.get('departmentid'))
-      this.createTemp.employeId = parseInt(Cookies.get('employeid'))
-      this.createTemp.createTime = parseTime(new Date(), '{y}-{m}-{d}')
-      this.createTemp.orderNumber = ''
-      this.createTemp.providerId = ''
-      this.listAdd = []
-    },
-    form_add() {
-      this.resetCreateTemp()
-      this.edit = 1
-      this.getDepartParam.parammaps.pastureId = this.createTemp.pastureId
-      this.getCreateDepartDownList()
-      this.dialogStatus = 'create'
-      this.dialogFormVisible = true
-      this.$nextTick(() => {
-        this.$refs['createTemp'].clearValidate()
-      })
-      this.getCreateNumber()
-    },
-    getCreateNumber() {
-      GetDataByName(this.getParmCreateNumber).then(response => {
-        this.$nextTick(() => {
-          console.log('新增申购单号', response.data.list[0].orderCode)
-          this.createTemp.orderNumber = response.data.list[0].orderCode
-          this.$forceUpdate()
-        })
-      })
-    },
-    // getPartsListSG
-    changeProvider(item) {
-      if (item !== '') {
-        this.createTemp.providerName = this.onlineSubscriptionList.find(obj => obj.id == item).providerName
-      }
-      this.listAdd = []
-    },
-    sparePartSearch(queryString, cb) {
-      console.log('备件模糊查询输入值', queryString)
-      if (this.createTemp.providerId == '') {
-        this.requestSparePart.name = 'getPartsListSG'
-      } else {
-        this.requestSparePart.name = 'getPartsListSGFlex'
-        this.requestSparePart.parammaps.providerId = this.createTemp.providerId
-        this.requestSparePart.parammaps.providerName = this.createTemp.providerName
-      }
-      this.requestSparePart.parammaps['partCode'] = queryString
-      GetDataByName(this.requestSparePart).then(response => {
-        console.log('备件模糊查询搜索data', response.data.list)
-        if (response.data.list == null) {
-          cb([])
-        } else {
-          cb(response.data.list)
-        }
-      })
-    },
-    handleSelectSparePart(item) {
-      console.log('备件模糊查询选中值', item)
-      console.log('备件模糊查询选中值', item.partId)
-      console.log(this.listAdd)
-      if (this.createTemp.providerId == '') {
-        if (this.listAdd.length > 0) {
-          // eslint-disable-next-line no-redeclare
-          if (this.listAdd.find(obj => obj.partId == item.partId)) {
-            this.$message({ type: 'warning', message: '此备件已存在,请重新选择备件' })
-          } else {
-            // this.getParmCreateAmount.parammaps.partCode = item.partCode
-            // GetDataByName(this.getParmCreateAmount).then(response => {
-            //   this.$nextTick(() => {
-            //     console.log('新增根据编号获取备件库存数量', response.data.list[0].reporteryNum)
-            //     item.reportery = response.data.list[0].reporteryNum
-            //     if (item.srcpath !== null && item.picpath) {
-            //       this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-            //       this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-            //     } else {
-            //       item.srcpath = ''
-            //       item.picpath = ''
-            //     }
-            //     this.listAdd.unshift(item)
-            //     this.$forceUpdate()
-            //   })
-            // })
-            this.getParmCreateAmount.parammaps.partCode = item.partCode
-            GetDataByName(this.getParmCreateAmount).then(response => {
-              this.$nextTick(() => {
-                console.log('新增根据编号获取备件库存数量', response.data.list[0])
-                item = response.data.list[0]
-                if (item.srcpath !== null && item.picpath !== null && item.srcpath !== undefined && item.picpath !== undefined) {
-                  this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-                  this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-                } else {
-                  item.srcpath = ''
-                  item.picpath = ''
-                }
-                this.$set(item, 'amount', '')
-                this.$set(item, 'purpose', '')
-                this.listAdd.unshift(item)
-                this.$forceUpdate()
-              })
-            })
-          }
-        } else {
-          // this.getParmCreateAmount.parammaps.partCode = item.partCode
-          // GetDataByName(this.getParmCreateAmount).then(response => {
-          //   this.$nextTick(() => {
-          //     console.log('新增根据编号获取备件库存数量', response.data.list[0].reporteryNum)
-          //     item.reportery = response.data.list[0].reporteryNum
-          //     if (item.srcpath !== null && item.picpath) {
-          //       this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-          //       this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-          //     } else {
-          //       item.srcpath = ''
-          //       item.picpath = ''
-          //     }
-          //     this.listAdd.unshift(item)
-          //     this.$forceUpdate()
-          //   })
-          // })
-          this.getParmCreateAmount.parammaps.partCode = item.partCode
-          GetDataByName(this.getParmCreateAmount).then(response => {
-            this.$nextTick(() => {
-              console.log('新增根据编号获取备件库存数量', response.data.list[0])
-              item = response.data.list[0]
-              if (item.srcpath !== null && item.picpath !== null && item.srcpath !== undefined && item.picpath !== undefined) {
-                this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-                this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-              } else {
-                item.srcpath = ''
-                item.picpath = ''
-              }
-              this.$set(item, 'amount', '')
-              this.$set(item, 'purpose', '')
-              this.listAdd.unshift(item)
-              this.$forceUpdate()
-            })
-          })
-        }
-        this.$forceUpdate()
-      } else {
-        if (this.listAdd.length > 0) {
-          if (this.listAdd.find(obj => obj.partId == item.partId)) {
-            this.$message({ type: 'warning', message: '此备件已存在,请重新选择备件' })
-          } else {
-            if (item.srcpath !== null && item.picpath !== null && item.srcpath !== undefined && item.picpath !== undefined) {
-              this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-              this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-            } else {
-              item.srcpath = ''
-              item.picpath = ''
-            }
-            this.$set(item, 'amount', '')
-            this.$set(item, 'purpose', '')
-            this.listAdd.unshift(item)
-          }
-        } else {
-          if (item.srcpath !== null && item.picpath !== null && item.srcpath !== undefined && item.picpath !== undefined) {
-            this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-            this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-          } else {
-            item.srcpath = ''
-            item.picpath = ''
-          }
-          this.$set(item, 'amount', '')
-          this.$set(item, 'purpose', '')
-          this.listAdd.unshift(item)
-          this.$forceUpdate()
-        }
-        this.$forceUpdate()
-      }
-    },
-    add_dialog_save() {
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['createTemp'].validate(valid => {
-        if (valid) {
-          console.log(this.listAdd)
-          if (this.createTemp.orderNumber == '' || this.createTemp.orderNumber == null || this.createTemp.orderNumber == undefined) {
-            GetDataByName(this.getParmCreateNumber).then(response => {
-              this.$nextTick(() => {
-                console.log('新增申购单号', response.data.list[0].orderCode)
-                this.createTemp.orderNumber = response.data.list[0].orderCode
-                this.$forceUpdate()
-                this.add_dialog_saveSave()
-              })
-            })
-          } else {
-            this.add_dialog_saveSave()
-          }
-        }
-      })
-    },
-    add_dialog_saveSave() {
-      if (this.listAdd.length !== 0) {
-        for (var j = 0; j < this.listAdd.length; j++) {
-          console.log(this.listAdd[j].amount)
-          if (this.listAdd[j].amount == null || this.listAdd[j].amount === '') {
-            this.$message({ type: 'warning', message: '请检查申购数量是否未填写', duration: 2000 })
-            return false
-          } else {
-            var rulesAmount = /^[1-9]\d*$/
-            if (!rulesAmount.test(this.listAdd[j].amount)) {
-              this.$message({ type: 'error', message: '申购数量请输入正整数', duration: 2000 })
-              return false
-            }
-          }
-          if (this.createTemp.providerId !== '') {
-            if (this.listAdd[j].price == '') {
-              this.$message({ type: 'warning', message: '请检查单价是否为空', duration: 2000 })
-              return false
-            } else {
-              if (parseFloat(this.listAdd[j].price) == 0) {
-                this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                return false
-              } else {
-                var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,5})?$/
-                if (rulesPrice.test(this.listAdd[j].price) == false) {
-                  this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                  return false
-                }
-              }
-            }
-          }
-        }
-        this.postDataPramas.common = { 'returnmap': '0' }
-        this.postDataPramas.data = []
-        this.postDataPramas.data[0] = { 'name': 'insertBigPartpurchase', 'type': 'e', 'parammaps': {
-          pastureId: this.createTemp.pastureId,
-          departmentId: this.createTemp.departmentId,
-          orderNumber: this.createTemp.orderNumber,
-          useType: this.createTemp.useType,
-          createTime: this.createTemp.createTime,
-          employeId: this.createTemp.employeId,
-          providerId: this.createTemp.providerId
-        }}
-        // eslint-disable-next-line no-irregular-whitespace
-        this.postDataPramas.data[1] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.listAdd }}
-        this.postDataPramas.data[1].children = []
-        this.postDataPramas.data[1].children[0] = { 'name': 'insertPartpurchase', 'type': 'e', 'parammaps': {
-          bigId: '@insertBigPartpurchase.LastInsertId',
-          pastureId: '@insertSpotList.pastureId',
-          partId: '@insertSpotList.partId',
-          partCode: '@insertSpotList.partCode',
-          partName: '@insertSpotList.partName',
-          specification: '@insertSpotList.specification',
-          unit: '@insertSpotList.unit',
-          brandId: '@insertSpotList.brandId',
-          storageAmount: '@insertSpotList.reportery',
-          purpose: '@insertSpotList.purpose',
-          amount: '@insertSpotList.amount',
-          price: '@insertSpotList.price',
-          contractId: '@insertSpotList.contractId'
-        }}
-        ExecDataByConfig(this.postDataPramas).then(response => {
-          console.log('新增保存发送参数', this.postDataPramas)
-          if (response.msg === 'fail') {
-            this.$notify({
-              title: '保存失败',
-              message: response.data,
-              type: 'warning',
-              duration: 2000
-            })
-          } else {
-            this.dialogFormVisible = false
-            this.getdataListParm.parammaps.inputDatetime = ''
-            this.get_table_data()
-            this.getPendingList()
-            this.$notify({
-              title: '',
-              message: '保存成功',
-              type: 'success',
-              duration: 2000
-            })
-          }
-        })
-        return true
-      } else {
-        this.$message({
-          title: '',
-          message: '请选择备件',
-          type: 'warning',
-          duration: 2000
-        })
-        return false
-      }
-    },
-    partDelete(row) {
-      console.log(this.listAdd)
-      MessageBox.confirm('设备名称:' + row.partName, '确认删除?', {
-        confirmButtonText: '确认',
-        cancelButtonText: '取消',
-        type: 'warning'
-      }).then(() => {
-        // console.log(this.list2)
-        for (var i = 0; i < this.listAdd.length; i++) {
-          console.log(this.listAdd[i])
-          if (this.listAdd[i].id === row.id) {
-            var listAddIndex = this.listAdd.indexOf(this.listAdd[i])
-          }
-          if (listAddIndex > -1) {
-            this.listAdd.splice(listAddIndex, 1)
-            return
-          }
-        }
-      })
-    },
-    // 查看
-    form_see(row) {
-      this.dialogStatus = 'see'
-      this.dialogFormVisibleSee = true
-      this.seeTemp = Object.assign({}, row)
-      console.log('查看上方数据(从table读取)', this.seeTemp)
-      this.listSee = []
-      this.getdataListSee.parammaps.id = this.seeTemp.id
-      this.getSeeList()
-      // 流程图
-      var reason = '未通过原因:' + this.seeTemp.workflowNote
-      if (this.seeTemp.statue === 2) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核' }, { title: '供应主管审核' }, { title: '采购审核' }]
-        this.active = 1
-      } else if (this.seeTemp.statue === 3) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '供应主管审核' }, { title: '采购审核' }]
-        this.active = 2
-      } else if (this.seeTemp.statue === 4) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson, status: 'error', reason: reason }, { title: '供应主管审核' }, { title: '采购审核' }]
-        this.active = 2
-      } else if (this.seeTemp.statue === 5) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson }, { title: '采购审核' }]
-        this.active = 3
-      } else if (this.seeTemp.statue === 6) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson, status: 'error', reason: reason }, { title: '采购审核' }]
-        this.active = 3
-      } else if (this.seeTemp.statue === 7) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson }, { title: '采购审核', date: this.seeTemp.CGChargedate, name: this.seeTemp.CGChargePerson }]
-        this.active = 4
-      } else if (this.seeTemp.statue === 8) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson }, { title: '采购审核', date: this.seeTemp.CGChargedate, name: this.seeTemp.CGChargePerson, status: 'error', reason: reason }]
-        this.active = 4
-      }
-    },
-    getSeeList() {
-      GetDataByName(this.getdataListSee).then(response => {
-        if (response.data.list !== null) {
-          console.log('查看下方table数据', response.data.list)
-          this.listSee = response.data.list
-          this.listAdd = response.data.list
-          for (let i = 0; i < response.data.list.length; i++) {
-            if (response.data.list[i].srcpath !== null && response.data.list[i].picpath !== null && response.data.list[i].srcpath !== undefined && response.data.list[i].picpath !== undefined) {
-              console.log(process.env.VUE_APP_BASE_API + response.data.list[i].srcpath, '=======1')
-              this.listSee[i].srcpath = process.env.VUE_APP_BASE_API + response.data.list[i].srcpath
-              this.listSee[i].picpath = process.env.VUE_APP_BASE_API + response.data.list[i].picpath
-              this.listAdd[i].srcpath = this.listSee[i].srcpath
-              this.listAdd[i].picpath = this.listSee[i].picpath
-              // this.seeTemp.providerName = response.data.list.providerName
-              this.pageNumSee = response.data.pageNum
-              this.pageSizeSee = response.data.pageSize
-            } else {
-              this.listSee[i].srcpath = ''
-              this.listSee[i].picpath = ''
-              this.listAdd[i].srcpath = ''
-              this.listAdd[i].picpath = ''
-            }
-            console.log(process.env.VUE_APP_BASE_API)
-            console.log(this.listSee, '============')
-          }
-        }
-        if (response.data.total) {
-          this.totalSee = response.data.total
-        }
-        setTimeout(() => {
-          this.listLoadingSee = false
-        }, 100)
-      })
-    },
-    form_edit(row) {
-      this.edit = 0
-      this.getDepartParam.parammaps.pastureId = row.pastureId
-      this.getCreateDepartDownList()
-      if (row.providerId == undefined) {
-        row.providerId = ''
-        row.providerName = ''
-      }
-      this.createTemp = Object.assign({}, row) // copy obj
-      this.dialogStatus = 'update'
-      this.dialogFormVisible = true
-      this.$nextTick(() => {
-        this.$refs['createTemp'].clearValidate()
-      })
-      this.getdataListSee.parammaps.id = this.createTemp.id
-      this.getSeeList()
-    },
-    edit_dialog_save() {
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['createTemp'].validate(valid => {
-        if (valid) {
-          this.edit_dialog_saveSave()
-        }
-      })
-    },
-    edit_dialog_saveSave() {
-      if (this.listAdd.length !== 0) {
-        for (var j = 0; j < this.listAdd.length; j++) {
-          console.log(this.listAdd[j].amount)
-          // eslint-disable-next-line use-isnan
-          if (this.listAdd[j].amount == null || this.listAdd[j].amount === '') {
-            this.$message({ type: 'warning', message: '请检查申购数量是否未填写', duration: 2000 })
-            return false
-          } else {
-            var rulesAmount = /^[1-9]\d*$/
-            if (!rulesAmount.test(this.listAdd[j].amount)) {
-              this.$message({ type: 'error', message: '申购数量请输入正整数', duration: 2000 })
-              return false
-            }
-          }
-          if (this.createTemp.providerId !== '') {
-            if (this.listAdd[j].price == '') {
-              this.$message({ type: 'warning', message: '请检查单价是否为空', duration: 2000 })
-              return false
-            } else {
-              if (parseFloat(this.listAdd[j].price) == 0) {
-                this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                return false
-              } else {
-                var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,5})?$/
-                if (rulesPrice.test(this.listAdd[j].price) == false) {
-                  this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                  return false
-                }
-              }
-            }
-          }
-        }
-        this.postDataPramas.common = { 'returnmap': '0' }
-        this.postDataPramas.data = []
-        this.postDataPramas.data[0] = { 'name': 'updatepartpurchaseCharge', 'type': 'e', 'parammaps': {
-          id: this.createTemp.id
-        }}
-        this.postDataPramas.data[1] = { 'name': 'deletePartpurchase', 'type': 'e', 'parammaps': {
-          bigId: this.createTemp.id
-        }}
-        // eslint-disable-next-line no-irregular-whitespace
-        this.postDataPramas.data[2] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.listAdd }}
-        this.postDataPramas.data[2].children = []
-        this.postDataPramas.data[2].children[0] = { 'name': 'insertPartpurchase', 'type': 'e', 'parammaps': {
-          bigId: this.createTemp.id,
-          pastureId: '@insertSpotList.pastureId',
-          partId: '@insertSpotList.partId',
-          partCode: '@insertSpotList.partCode',
-          partName: '@insertSpotList.partName',
-          specification: '@insertSpotList.specification',
-          unit: '@insertSpotList.unit',
-          brandId: '@insertSpotList.brandId',
-          storageAmount: '@insertSpotList.reportery',
-          purpose: '@insertSpotList.purpose',
-          amount: '@insertSpotList.amount',
-          price: '@insertSpotList.price',
-          contractId: '@insertSpotList.contractId'
-        }}
-        ExecDataByConfig(this.postDataPramas).then(response => {
-          console.log('新增保存发送参数', this.postDataPramas)
-          if (response.msg === 'fail') {
-            this.$notify({
-              title: '保存失败',
-              message: response.data,
-              type: 'warning',
-              duration: 2000
-            })
-          } else {
-            this.dialogFormVisible = false
-            this.getdataListParm.parammaps.inputDatetime = ''
-            this.get_table_data()
-            this.$notify({
-              title: '',
-              message: '保存成功',
-              type: 'success',
-              duration: 2000
-            })
-          }
-        })
-        return true
-      } else {
-        this.$message({
-          title: '',
-          message: '请选择备件',
-          type: 'warning',
-          duration: 2000
-        })
-        return false
-      }
-    },
-    get_select_list() {
-      GetDataByNames(this.requestParams).then(response => {
-        this.findAllProvider = response.data.findAllProvider.list
-        this.findAllPasture = response.data.findAllPasture.list
-        this.findAllEmploye = response.data.findAllEmploye.list
-        this.onlineSubscriptionList = response.data.getflexProviderList.list
-        this.getDepartDownList()
-      })
-    },
-    getDepartDownList() {
-      GetDataByName(this.getDepartParam).then(response => {
-        this.findAllDepart = response.data.list
-      })
-    },
-    changePastureName(item) {
-      this.getDepartParam.parammaps.pastureId = this.findAllPasture.find(obj => obj.name == item).id
-      this.getdataListParm.parammaps.departmentId = ''
-      this.getDepartDownList()
-    },
-    getCreateDepartDownList() {
-      GetDataByName(this.getDepartParam).then(response => {
-        this.createDepartList = response.data.list
-        if (this.edit == 1) {
-          if (this.createDepartList.find(obj => obj.id == Cookies.get('departmentid'))) {
-            this.createTemp.departmentId = parseInt(Cookies.get('departmentid'))
-            this.createTemp.departmentName = this.createDepartList.find(obj => obj.id == Cookies.get('departmentid')).name
-          } else {
-            this.createTemp.departmentId = response.data.list[0].id
-            this.createTemp.departmentName = response.data.list[0].name
-          }
-        }
-      })
-    },
-    changePasture(item) {
-      this.getDepartParam.parammaps.pastureId = item
-      this.edit = 1
-      this.getCreateDepartDownList()
-    },
-    changeDepart(item) {
-      this.createTemp.departmentName = this.createDepartList.find(obj => obj.id == item).name
-    },
-    handleDownload() {
-      console.log('点击了下载')
-      this.$alert('备件申购正在导出中,请勿刷新或离开本页面,若导出时间过长,建议缩小导出数据范围重新导出', {})
-      this.isPercentage = true
-      this.percentage = 1
-      var timer = setInterval(() => {
-        this.percentage += 5
-        if (this.percentage > 95) {
-          this.percentage = 99
-          clearInterval(timer)
-        }
-        this.percentage = this.percentage
-      }, 1000)
-      this.downloadParam.name = 'downloadPartpurchaseList'
-      this.downloadParam.parammaps = this.getdataListParm.parammaps
-      GetAccount(this.downloadParam).then(response => {
-        if (response.data.list !== '') {
-          this.percentage = 99
-          setTimeout(() => {
-            this.isPercentage = false
-          }, 2000)
-        }
-        this.$nextTick(() => {
-          const ExcelDatas = [
-            {
-              tHeader: ['牧场', '申购单号', '申购时间', '备件编号', '备件名称', '规格型号', '品牌', '单位', '申购数量', '申购部门', '申购人', '备注'],
-              filterVal: ['pastureName', 'orderNumber', 'inputTime', 'partCode', 'partName', 'specification', 'brandName', 'unit', 'amount', 'departmentName', 'empname', 'purpose'],
-              tableDatas: response.data.list,
-              sheetName: '备件申购'
-            }
-          ]
-          json2excel(ExcelDatas, '备件申购', true, 'xlsx')
-        })
-      })
-    },
-    form_delete(row) {
-      console.log('点击了删除')
-      MessageBox.confirm('确认删除此条信息?', {
-        confirmButtonText: '确认',
-        cancelButtonText: '取消',
-        type: 'warning'
-      }).then(() => {
-        this.postDataPramas.common = { 'returnmap': '0' }
-        this.postDataPramas.data = []
-        this.postDataPramas.data[0] = { 'name': 'deleteBigPartpurchase', 'type': 'e', 'parammaps': {
-          id: row.id
-        }}
-        this.postDataPramas.data[1] = { 'name': 'deletePartpurchase', 'type': 'e', 'parammaps': {
-          bigId: row.id
-        }}
-        ExecDataByConfig(this.postDataPramas).then(response => {
-          this.get_table_data()
-          this.$notify({
-            title: '成功',
-            message: '删除成功',
-            type: 'success',
-            duration: 2000
-          })
-        })
-      }).catch(() => {
-        this.$message({
-          type: 'info',
-          message: '已取消删除'
-        })
-      })
-    },
-    handleExamine(row) {
-      console.log('点击了库管审核')
-      if (row == undefined) {
-        this.examineTemp = this.seeTemp
-        this.$set(this.seeTemp, 'statue', 1)
-        this.$set(this.seeTemp, 'workflowNote', '')
-      } else {
-        this.examineTemp = Object.assign({}, row)
-        this.$set(this.examineTemp, 'statue', 1)
-        this.$set(this.examineTemp, 'workflowNote', '')
-      }
-      this.dialogStatus = 'examine'
-      this.dialogFormVisible_Examine = true
-      this.statueReason = false
-    },
-    changeStatue(val) {
-      if (val == 2) {
-        this.statueReason = true
-      } else {
-        this.statueReason = false
-      }
-    },
-    createExamineData() {
-      console.log('点击了库管审核')
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['examineTemp'].validate(valid => {
-        if (valid) {
-          this.requestParam = {}
-          this.requestParam.name = 'partpurchaseCharge'
-          this.requestParam.parammaps = {}
-          this.requestParam.parammaps.id = this.examineTemp.id
-          if (this.examineTemp.statue == 1) {
-            this.requestParam.parammaps.statue = 3
-          } else if (this.examineTemp.statue == 2) {
-            this.requestParam.parammaps.statue = 4
-          }
-          this.requestParam.parammaps.empId	 = Cookies.get('employeid')
-          this.requestParam.parammaps.workflowNote = this.examineTemp.workflowNote
-          PostDataByName(this.requestParam).then(response => {
-            console.log('审核确认发送参数', this.requestParam)
-            if (response.msg !== 'fail') {
-              this.get_table_data()
-              this.dialogFormVisible_Examine = false
-              this.dialogFormVisible_See = false
-              this.statueReason = false
-              this.$notify({
-                title: '成功',
-                message: '审核成功',
-                type: 'success',
-                duration: 2000
-              })
-            } else {
-              failproccess(response, this.$notify)
-            }
-          })
-        }
-      })
-    },
-    handleExamine2(row) {
-      console.log('点击了供应主管审核')
-      if (row == undefined) {
-        this.examineTemp = this.seeTemp
-        this.$set(this.seeTemp, 'statue', 1)
-        this.$set(this.seeTemp, 'workflowNote', '')
-      } else {
-        this.examineTemp = Object.assign({}, row)
-        this.$set(this.examineTemp, 'statue', 1)
-        this.$set(this.examineTemp, 'workflowNote', '')
-      }
-      this.dialogStatus = 'examine2'
-      this.dialogFormVisible_Examine = true
-      this.statueReason = false
-    },
-    createExamineData2() {
-      console.log('点击了供应主管审核')
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['examineTemp'].validate(valid => {
-        if (valid) {
-          this.requestParam = {}
-          this.requestParam.name = 'partpurchaseCharge3'
-          this.requestParam.parammaps = {}
-          this.requestParam.parammaps.id = this.examineTemp.id
-          if (this.examineTemp.statue == 1) {
-            this.requestParam.parammaps.statue = 5
-          } else if (this.examineTemp.statue == 2) {
-            this.requestParam.parammaps.statue = 6
-          }
-          this.requestParam.parammaps.empId	 = Cookies.get('employeid')
-          this.requestParam.parammaps.workflowNote = this.examineTemp.workflowNote
-          PostDataByName(this.requestParam).then(response => {
-            console.log('审核确认发送参数', this.requestParam)
-            if (response.msg !== 'fail') {
-              this.get_table_data()
-              this.dialogFormVisible_Examine = false
-              this.dialogFormVisible_See = false
-              this.statueReason = false
-              this.$notify({
-                title: '成功',
-                message: '审核成功',
-                type: 'success',
-                duration: 2000
-              })
-            } else {
-              failproccess(response, this.$notify)
-            }
-          })
-        }
-      })
-    },
-    handleExamine3(row) {
-      console.log('点击了采购审核')
-      if (row == undefined) {
-        this.examineTemp = this.seeTemp
-        this.$set(this.seeTemp, 'statue', 1)
-        this.$set(this.seeTemp, 'workflowNote', '')
-      } else {
-        this.examineTemp = Object.assign({}, row)
-        this.$set(this.examineTemp, 'workflowNote', '')
-        this.$set(this.examineTemp, 'statue', 1)
-      }
-      this.dialogStatus = 'examine3'
-      this.dialogFormVisible_Examine = true
-      this.statueReason = false
-    },
-    createExamineData3() {
-      console.log('点击了采购审核')
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['examineTemp'].validate(valid => {
-        if (valid) {
-          this.requestParam = {}
-          this.requestParam.parammaps = {}
-          this.requestParam.common = { 'returnmap': '0' }
-          this.requestParam.data = []
-          if (this.examineTemp.statue == 1) {
-            this.requestParam.data[0] = { 'name': 'partpurchaseCharge1', 'type': 'e', 'parammaps': {
-              id: this.examineTemp.id,
-              statue: 7,
-              empId: Cookies.get('employeid'),
-              workflowNote: this.examineTemp.workflowNote
-            }}
-            this.requestParam.data[1] = { 'name': 'createBuydetailBySG', 'type': 'e', 'parammaps': {
-              id: this.examineTemp.id,
-              pastureId: this.examineTemp.pastureId
-            }}
-          } else if (this.examineTemp.statue == 2) {
-            this.requestParam.data[0] = { 'name': 'partpurchaseCharge1', 'type': 'e', 'parammaps': {
-              id: this.examineTemp.id,
-              statue: 8,
-              empId: Cookies.get('employeid'),
-              workflowNote: this.examineTemp.workflowNote
-            }}
-          }
-          ExecDataByConfig(this.requestParam).then(response => {
-            if (response.msg !== 'fail') {
-              this.get_table_data()
-              this.dialogFormVisible_Examine = false
-              this.dialogFormVisible_See = false
-              this.statueReason = false
-              this.$notify({ title: '成功', message: '审核成功', type: 'success', duration: 2000 })
-            } else {
-              failproccess(response, this.$notify)
-            }
-          })
-        }
-      })
-    }
-  }
-}
-</script>
-<style lang="scss" scoped>
-  .pagination-container{
-    display: block !important;
-  }
-  /deep/ .el-badge__content.is-fixed{
-    z-index: 1;
-  }
-</style>
-<style lang="scss">
-.el-step__head.is-success {
-    color: #409EFF;
-    border-color: #409EFF;
-}
-.el-step__title.is-success{
-  color: #409EFF;
-}
-.el-step__head.is-process{
-  color: #409EFF;
-  border-color: #409EFF;
-  .el-step__icon.is-text{
-    background: #409EFF;
-    color: #fff;
-  }
-}
-.step-row{
-  color: #000;
-}
-</style>

+ 0 - 1700
src/views/custom/subscribe/index2.vue

@@ -1,1700 +0,0 @@
-<template>
-  <div class="app-container">
-    <div v-if="isPercentage" class="percentage" style="width: 210px;height: 90px;background: #fff;position: fixed;bottom: 0;left: 0;z-index: 9999999999999;">
-      <h4 style="padding-left: 10px;line-height: 0;">导出进度:</h4>
-      <el-progress style="padding-left: 10px;" :text-inside="true" :stroke-width="26" :percentage="percentage" />
-    </div>
-    <div class="filter-container">
-      <el-select v-model="getdataListParm.parammaps.pastureName" style="width: 140px;" placeholder="牧场" class="filter-item" @change="changePastureName">
-        <el-option v-for="item in findAllPasture" :key="item.id" :label="item.name" :value="item.name" />
-      </el-select>
-      <el-input v-model="getdataListParm.parammaps.orderNumber" placeholder="申购单号" style="width: 200px;" class="filter-item" />
-      <el-select v-model="getdataListParm.parammaps.stuteSH" style="width: 140px;" clearable placeholder="审核状态" class="filter-item">
-        <el-option v-for="item in statues" :key="item.id" :label="item.name" :value="item.id" />
-      </el-select>
-      <el-select v-model="getdataListParm.parammaps.departmentId" clearable style="width: 140px;" placeholder="申购部门" class="filter-item">
-        <el-option v-for="item in findAllDepart" :key="item.id" :label="item.name" :value="item.id" />
-      </el-select>
-      <el-input v-model="getdataListParm.parammaps.empName" placeholder="申购人" style="width: 200px;" class="filter-item" />
-      <!-- <el-select v-model="getdataListParm.parammaps.empName " style="width: 140px;" placeholder="申购人" class="filter-item">
-        <el-option v-for="item in findAllEmploye" :key="item.id" :label="item.name" :value="item.id" />
-      </el-select> -->
-      <el-date-picker ref="inputDatetime" v-model="getdataListParm.parammaps.inputDatetime" class="inputDatetime" type="datetimerange" style="width: 250px;top:-3px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" />
-      <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="form_search">搜索</el-button>
-      <div>
-
-        <el-button v-if="isSubscribeAdd" class="filter-item" type="primary" icon="el-icon-edit" @click="form_add">新增</el-button>
-        <el-button v-if="isSubscribeExport" v-waves class="filter-item" type="success" icon="el-icon-upload2" @click="handleDownload">导出</el-button>
-        <el-radio-group v-model="radioAll" style="margin-top:-9px" @change="changeAll()">
-          <el-radio-button label="全部" />
-          <el-badge :value="pending.total" class="item">
-            <el-radio-button label="待处理" />
-          </el-badge>
-          <el-radio-button label="已处理" />
-        </el-radio-group>
-      </div>
-    </div>
-    <div class="filter-button" />
-
-    <el-table
-      :key="tableKey"
-      v-loading="listLoading"
-      element-loading-text="给我一点时间"
-      :data="list"
-      border
-      fit
-      highlight-current-row
-      style="width: 100%;"
-      :row-style="rowStyle"
-      :cell-style="cellStyle"
-      class="elTable"
-      :max-height="myHeight"
-    >
-      <el-table-column label="序号" align="center" type="index" width="50px">
-        <template slot-scope="scope">
-          <span>{{ scope.$index + (pageNum-1) * pageSize + 1 }}</span>
-        </template>
-      </el-table-column>
-      <el-table-column label="申购单号" min-width="150px" align="center">
-        <template slot-scope="scope">
-          <span>{{ scope.row.orderNumber }}</span>
-        </template>
-      </el-table-column>
-      <el-table-column label="牧场" min-width="90px" align="center">
-        <template slot-scope="scope">
-          <span>{{ scope.row.pastureName }}</span>
-        </template>
-      </el-table-column>
-      <el-table-column label="申购部门" min-width="80px" align="center">
-        <template slot-scope="scope">
-          <span>{{ scope.row.departmentName }}</span>
-        </template>
-      </el-table-column>
-
-      <el-table-column label="申购人" min-width="80px" align="center">
-        <template slot-scope="scope">
-          <span>{{ scope.row.empname }}</span>
-        </template>
-      </el-table-column>
-      <el-table-column label="申购日期" sortable prop="inputTime" min-width="80px" align="center" />
-      <el-table-column label="审核状态" min-width="80px" align="center" :formatter="statue" />
-      <el-table-column label="操作" align="center" width="250" class-name="small-padding fixed-width" fixed="right">
-        <template slot-scope="{row}">
-          <el-button v-if="isSubscribeSee" type="primary" size="mini" @click="form_see(row)">查看</el-button>
-          <el-button v-if="row.statue == 4||row.statue == 6||row.statue == 8" style="display:inline-block" type="success" size="mini" @click="form_edit(row)">编辑</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="form_edit(row)">编辑</el-button>
-          <!-- 库管 -->
-          <el-button v-if="isSubscribeExamineKG && row.statue == 2" style="display:inline-block" type="success" size="mini" @click="handleExamine(row)">审核1</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine(row)">审核1</el-button>
-
-          <!-- 设备 -->
-          <el-button v-if="isSubscribeExamineSBZG && row.statue == 3" style="display:inline-block" type="success" size="mini" @click="handleExamine22(row)">审核2</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine22(row)">审核2</el-button>
-
-          <!-- 主管 -->
-          <el-button v-if="isSubscribeExamineZG && row.statue == 9" style="display:inline-block" type="success" size="mini" @click="handleExamine2(row)">审核3</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine2(row)">审核3</el-button>
-          <!-- 采购 -->
-          <el-button v-if="isSubscribeExamineCG && row.statue == 5" style="display:inline-block" type="success" size="mini" @click="handleExamine3(row)">审核4</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine3(row)">审核4</el-button>
-          <el-button v-if="isSubscribeDelete && (row.statue == 4||row.statue == 6||row.statue == 8)" style="display:inline-block" type="danger" size="mini" @click="form_delete(row)">删除</el-button>
-          <el-button v-else style="display:none" type="danger" size="mini" @click="form_delete(row)">删除</el-button>
-        </template>
-      </el-table-column>
-    </el-table>
-    <pagination v-show="total>0" :total="total" :page.sync="getdataListParm.offset" :limit.sync="getdataListParm.pagecount" @pagination="get_table_data" />
-    <!-- 弹出层新增or修改 -->
-    <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisible" :close-on-click-modal="false" width="90%">
-      <div class="app-container">
-        <el-form
-          ref="createTemp"
-          :rules="rules"
-          :model="createTemp"
-          label-position="right"
-          label-width="100px"
-          style="width: 90%;margin:0 auto;"
-        >
-          <el-row>
-            <el-col :span="8">
-              <el-form-item label="申购单号:" prop="orderNumber">
-                <el-input ref="orderNumber" v-model="createTemp.orderNumber" disabled />
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="牧场:" prop="pastureId">
-                <el-select v-model="createTemp.pastureId" placeholder="牧场" class="filter-item" style="width:100%" :disabled="dialogStatus==='update'" @change="changePasture">
-                  <el-option v-for="item in findAllPasture" :key="item.id" :label="item.name" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="申购部门:" prop="departmentId">
-                <el-select v-model="createTemp.departmentId" placeholder="申购部门" class="filter-item" style="width:100%" :disabled="dialogStatus==='update'" @change="changeDepart">
-                  <el-option v-for="item in createDepartList" :key="item.id" :label="item.name" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-          </el-row>
-          <el-row>
-            <el-col :span="8">
-              <el-form-item label="申购人:" prop="employeId">
-                <el-select v-model="createTemp.employeId" placeholder="申购人" class="filter-item" style="width:100%" :disabled="dialogStatus==='update'">
-                  <el-option v-for="item in findAllEmploye" :key="item.id" :label="item.name" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="申购日期:" prop="createTime">
-                <el-date-picker v-model="createTemp.createTime" :picker-options="pickerOptions" type="date" placeholder="申购日期" format="yyyy-MM-dd" value-format="yyyy-MM-dd" style="width:100%" :disabled="dialogStatus==='update'" />
-              </el-form-item>
-            </el-col>
-            <el-col v-if="dialogStatus==='create'" :span="8">
-              <el-form-item label="线上采购:" prop="providerId">
-                <el-select v-model="createTemp.providerId" placeholder="线上采购" clearable class="filter-item" style="width:100%" @change="changeProvider">
-                  <el-option v-for="item in onlineSubscriptionList" :key="item.id" :label="item.providerName" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-            <el-col v-if="dialogStatus==='update'" :span="8">
-              <el-form-item label="线上采购:" prop="providerName">
-                <el-input ref="providerName" v-model="createTemp.providerName" disabled />
-              </el-form-item>
-            </el-col>
-
-          </el-row>
-          <el-row>
-            <el-col :span="16">
-              <el-form-item label="备件:" prop="partCode">
-                <el-autocomplete
-                  v-model="createTemp.partCode"
-                  value-key="name"
-                  class="inline-input"
-                  :fetch-suggestions="sparePartSearch"
-                  placeholder="请输入备件编号或备件名称或备件规格"
-                  style="width:100%"
-                  @select="handleSelectSparePart"
-                >
-                  <template slot-scope="{ item }">
-                    <b>备件编号:</b><div class="name" style="display: inline;">{{ item.partCode }}</div>&nbsp;
-                    |  &nbsp;<b>备件名称:</b><span class="addr">{{ item.partName }}</span>&nbsp;
-                    |  &nbsp;<b>备件规格:</b><span class="addr">{{ item.specification }}</span>
-                  </template>
-                </el-autocomplete>
-              </el-form-item>
-            </el-col>
-          </el-row>
-        </el-form>
-        <el-table
-          :key="tableKey"
-          v-loading="listLoading"
-          element-loading-text="给我一点时间"
-          :data="listAdd"
-          border
-          fit
-          highlight-current-row
-          style="width: 100%;margin-bottom:30px"
-          :row-style="rowStyle"
-          :cell-style="cellStyle"
-          class="elTable"
-        >
-          <!-- table表格 -->
-          <el-table-column label="序号" align="center" type="index" width="50px" />
-          <el-table-column label="备件编号" prop="partCode" align="center" min-width="90">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partCode }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件名称" prop="partName" align="center" min-width="90">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件规格" prop="specification" min-width="80px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.specification }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件图片" prop="picpath" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <el-popover placement="right" title="" trigger="hover">
-                <img v-if="scope.row.picpath !== ''" :src="scope.row.picpath">
-                <img v-if="scope.row.picpath !== ''" slot="reference" :src="scope.row.picpath" :alt="scope.row.srcpath" style="height: 100px;width:100px;">
-              </el-popover>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件品牌" prop="brand" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span v-if="dialogStatus==='create'">{{ scope.row.brandName }}</span>
-              <span v-if="dialogStatus==='update'">{{ scope.row.brandName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="计量单位" prop="unit" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span>{{ scope.row.unit }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="现有库存" prop="reportery" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span>{{ scope.row.reportery }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="价格" prop="price" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span v-if="createTemp.providerId == ''">{{ scope.row.price }}</span>
-              <el-form v-else :model="scope.row" :rules="rules">
-                <el-form-item prop="price">
-                  <el-input v-model="scope.row.price" style="margin-top:15px" />
-                </el-form-item>
-              </el-form>
-            </template>
-          </el-table-column>
-          <el-table-column label="申购数量" min-width="120px" align="center" valign="middle">
-            <template slot-scope="scope">
-              <el-form :model="scope.row" :rules="rules">
-                <el-form-item prop="amount">
-                  <el-input v-model="scope.row.amount" style="margin-top:15px" />
-                </el-form-item>
-              </el-form>
-            </template>
-          </el-table-column>
-          <el-table-column label="备注" min-width="110px" align="center" valign="middle">
-            <template slot-scope="scope">
-              <el-input v-model="scope.row.purpose" />
-            </template>
-          </el-table-column>
-          <el-table-column
-            label="操作"
-            align="center"
-            width="100"
-            class-name="small-padding fixed-width"
-            fixed="right"
-          >
-            <template slot-scope="{row}">
-              <a class="del" @click="partDelete(row)">删除</a>
-            </template>
-          </el-table-column>
-        </el-table>
-        <div slot="footer" class="dialog-footer" style="bottom:10px">
-          <el-button type="primary" :disabled="isokDisable" @click="dialogStatus==='create'?add_dialog_save():edit_dialog_save()">保存并关闭</el-button>
-          <el-button @click="dialogFormVisible = false;get_table_data()">取消并关闭</el-button>
-        </div>
-      </div>
-    </el-dialog>
-    <!-- 查看 -->
-    <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisibleSee" :close-on-click-modal="false" width="90%">
-      <div class="app-containerSee">
-        <el-form
-          ref="seeTemp"
-          :rules="rules"
-          :model="seeTemp"
-          label-position="right"
-          label-width="100px"
-          style="width: 90%;margin:0 auto;"
-        >
-          <el-row>
-            <el-col :span="8">
-              <el-form-item label="申购单号:" prop="orderNumber">
-                <el-input ref="orderNumber" v-model="seeTemp.orderNumber" disabled />
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="牧场:" prop="pastureId">
-                <el-select v-model="seeTemp.pastureId" placeholder="牧场" class="filter-item" disabled style="width:100%">
-                  <el-option v-for="item in findAllPasture" :key="item.id" :label="item.name" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="申购部门:" prop="departmentName">
-                <el-input ref="departmentName" v-model="seeTemp.departmentName" disabled />
-              </el-form-item>
-            </el-col>
-          </el-row>
-          <el-row>
-            <el-col :span="8">
-              <el-form-item label="申购人:" prop="empname">
-                <el-input ref="empname" v-model="seeTemp.empname" disabled />
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="申购日期:" prop="createTime">
-                <el-date-picker v-model="seeTemp.createTime" :picker-options="pickerOptions" type="date" placeholder="申购日期" format="yyyy-MM-dd" value-format="yyyy-MM-dd" style="width:100%" disabled />
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="线上采购:" prop="providerName">
-                <el-input ref="providerName" v-model="seeTemp.providerName" disabled />
-              </el-form-item>
-            </el-col>
-          </el-row>
-        </el-form>
-        <el-table
-          :key="tableKey"
-          v-loading="listLoadingSee"
-          element-loading-text="给我一点时间"
-          :data="listSee"
-          border
-          fit
-          highlight-current-row
-          style="width: 100%;margin-bottom:30px"
-          :row-style="rowStyle"
-          :cell-style="cellStyle"
-          class="elTable"
-          @sort-change="tableSort"
-        >
-          <el-table-column type="index" label="序号" align="center" width="50px" />
-          <el-table-column label="备件编号" prop="partCode" align="center" min-width="90">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partCode }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件名称" prop="partName" align="center" min-width="90">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件规格" prop="specification" min-width="90px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.specification }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件图片" prop="picpath" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <el-popover placement="right" title="" trigger="hover">
-                <img v-if="scope.row.picpath !== ''" :src="scope.row.picpath">
-                <img v-if="scope.row.picpath !== ''" slot="reference" :src="scope.row.picpath" :alt="scope.row.srcpath" style="height: 100px;width:100px;">
-              </el-popover>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件品牌" prop="brandName" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span>{{ scope.row.brandName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="计量单位" prop="unit" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span>{{ scope.row.unit }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="现有库存" sortable prop="storageAmount" align="center" min-width="60" />
-          <el-table-column label="价格" sortable prop="price" align="center" min-width="60" />
-          <el-table-column label="申购数量" sortable prop="amount" align="center" min-width="60" />
-          <el-table-column label="备注" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.purpose }}</span>
-            </template>
-          </el-table-column>
-        </el-table>
-        <el-form
-          ref="seeTemp"
-          :rules="rules"
-          :model="seeTemp"
-          label-position="right"
-          label-width="100px"
-          style="width: 90%;margin:0 auto;"
-        >
-          <el-row>
-            <el-col>
-              <el-form-item label="流程进度" />
-              <el-steps :active="active" align-center finish-status="success">
-                <el-step
-                  v-for="(item,index) in activeList"
-                  :key="index"
-                  :title="item.title"
-                  :status="item.status"
-                >
-                  <template slot="description">
-                    <div class="step-row">
-                      <div>{{ item.name }}&nbsp;&nbsp;{{ item.date }}</div>
-                      <div>{{ item.reason }}</div>
-                    </div>
-                  </template>
-                </el-step>
-              </el-steps>
-            </el-col>
-          </el-row>
-          <el-row>
-            <el-col>
-              <el-form-item label="操作:">
-                <!-- 库管 -->
-                <el-button v-if="isSubscribeExamineKG && seeTemp.statue == 2" type="success" style="display:inline-block" @click="handleExamine(row)">审核1</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine(row)">审核1</el-button>
-               <!-- 设备 -->
-               <el-button v-if="isSubscribeExamineSBZG && seeTemp.statue == 3" type="success" style="display:inline-block" @click="handleExamine22(row)">审核2</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine22(row)">审核2</el-button>
-                <!-- 主管 -->
-                <el-button v-if="isSubscribeExamineZG && seeTemp.statue == 9" type="success" style="display:inline-block" @click="handleExamine2(row)">审核3</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine2(row)">审核3</el-button>
-                <!-- 采购 -->
-                <el-button v-if="isSubscribeExamineCG && seeTemp.statue == 5" type="success" style="display:inline-block" @click="handleExamine3(row)">审核4</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine3(row)">审核4</el-button>
- 
-         
-              </el-form-item>
-            </el-col>
-          </el-row>
-        </el-form>
-        <div slot="footer" class="dialog-footer" style="bottom:5px;">
-          <el-button @click="dialogFormVisibleSee = false">关闭</el-button>
-        </div>
-      </div>
-    </el-dialog>
-    <!-- 审核 -->
-    <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisible_Examine" :close-on-click-modal="false" width="30%">
-      <div class="app-examine">
-        <h3 style="width: 100%;margin:0 0 0 5%;line-height:50px;">请确认审核结果:</h3>
-        <el-form ref="examineTemp" :rules="rules" :model="examineTemp" label-position="right" style="width: 50%;margin:0 auto;">
-          <el-row style="width:88%;height:150px;margin:0 auto;">
-            <el-col :span="20">
-              <el-form-item>
-                <el-radio-group v-model="examineTemp.statue" @change="changeStatue">
-                  <el-radio :label="1" checked>通过</el-radio>
-                  <el-radio :label="2">不通过</el-radio>
-                </el-radio-group>
-              </el-form-item>
-            </el-col>
-            <el-col v-if="statueReason" :span="20">
-              <el-input v-model="examineTemp.workflowNote" type="textarea" :autosize="{ minRows: 2, maxRows: 4}" placeholder="请输入不通过原因" />
-            </el-col>
-          </el-row>
-        </el-form>
-      </div>
-      <div slot="footer" class="dialog-footer">
-        <el-button v-if="dialogStatus==='examine'" type="primary" :disabled="isokDisable" @click="createExamineData()">确认</el-button>
-        <el-button v-if="dialogStatus==='examine22'" type="primary" :disabled="isokDisable" @click="createExamineData22()">确认</el-button>
-        <el-button v-if="dialogStatus==='examine2'" type="primary" :disabled="isokDisable" @click="createExamineData2()">确认</el-button>
-        <el-button v-if="dialogStatus==='examine3'" type="primary" :disabled="isokDisable" @click="createExamineData3()">确认</el-button>
-        <el-button @click="dialogFormVisible_Examine = false;">关闭</el-button>
-      </div>
-    </el-dialog>
-  </div>
-</template>
-
-<script>
-// / 引入
-import { GetDataByName, GetDataByNames, PostDataByName, ExecDataByConfig, checkButtons, failproccess, GetAccount } from '@/api/common'
-import waves from '@/directive/waves' // waves directive
-import { parseTime, sortChange, json2excel } from '@/utils/index.js'
-// eslint-disable-next-line no-unused-vars
-import { validateEMail } from '@/utils/validate.js'
-import Pagination from '@/components/Pagination' // secondary package based on el-pagination
-import { MessageBox } from 'element-ui'
-import Cookies from 'js-cookie'
-import { getToken } from '@/utils/auth'
-export default {
-  name: 'Subscribe',
-  components: { Pagination },
-  directives: { waves },
-  data() {
-    return {
-      myHeight:document.documentElement.clientHeight - 85- 150,
-      isSubscribeAdd: [], isSubscribeExamineSBZG:[],isSubscribeTemplate: [], isSubscribeImport: [], isSubscribeExport: [], isSubscribeSee: [], isSubscribeDelete: [], isSubscribeExamineKG: [], isSubscribeExamineCG: [], isSubscribeExamineZG: [],
-      isokDisable: false,
-      findAllProvider: [],
-      findAllPasture: [],
-      findAllDepart: [],
-      findAllEmploye: [],
-      onlineSubscriptionList: [], createDepartList: [], edit: 0,
-      requestParams: [
-        { name: 'findAllProvider', offset: 0, pagecount: 0, params: [] },
-        { name: 'findAllPasture', offset: 0, pagecount: 0, returntype: 'Map', parammaps: { 'id': Cookies.get('pastureid') }},
-        { name: 'findAllEmploye', offset: 0, pagecount: 0, parammaps: { 'pastureId': Cookies.get('pastureid') }},
-        { name: 'getflexProviderList', offset: 0, pagecount: 0, parammaps: {}}
-      ],
-      getDepartParam: {
-        name: 'findAllDepart', offset: 0, pagecount: 0,
-        parammaps: { 'pastureId': Cookies.get('pastureid'), 'eId': Cookies.get('employeid') }
-      },
-      pickerOptions: {
-        disabledDate(time) {
-          return time.getTime() > Date.now()// 当天之前的时间可选
-        }
-      },
-      textMap: {
-        update: '编辑',
-        create: '新增',
-        see: '查看',
-        examine: '审核1',
-        examine22: '审核2',
-        examine2: '审核3',
-        examine3: '审核4'
-      },
-      rules: {
-        equipmentName: [{ required: true, message: '必填', trigger: 'blur' }]
-      },
-      rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
-      cellStyle: { padding: 0 + 'px' },
-      statues: [{ id: '0', name: '审核中' }, { id: '1', name: '已通过' }, { id: '2', name: '未通过' }],
-      radioAll: '全部',
-      getdataListParm: {
-        name: 'getpartpurchaseList',
-        page: 1,
-        offset: 1,
-        pagecount: 10,
-        returntype: 'Map',
-        parammaps: {
-          pastureName: Cookies.get('pasturename'),
-          empId: Cookies.get('employeid'),
-          orderNumber: '',
-          stuteSH: '',
-          departmentId: '',
-          inputDatetime: '',
-          startTime: '',
-          stopTime: '',
-          loginId: Cookies.get('employeid'),
-          menu: 'Subscribe',
-          logindeptId: Cookies.get('departmentid'),
-          loginpastureId: Cookies.get('pastureid')
-        }
-      },
-      tableKey: 0,
-      listLoading: true,
-      total: 0,
-      list: [],
-      dialogStatus: '',
-      dialogFormVisible: false,
-      dialogFormVisibleSee: false,
-      listLoadingSee: true,
-      listSee: [],
-      totalSee: 0,
-      seeTemp: {},
-      getdataListSee: {
-        name: 'getpartpurchaseBybig',
-        returntype: 'Map',
-        parammaps: {}
-      },
-      createTemp: {
-        pastureId: this.$store.state.user.pastureid,
-        departmentId: this.$store.state.user.departmentid,
-        employeId: this.$store.state.user.employeid,
-        createTime: parseTime(new Date(), '{y}-{m}-{d}'),
-        providerId: ''
-      },
-      requestSparePart: {
-        name: 'getPartsListSG',
-        page: 1,
-        offset: 1,
-        pagecount: 20,
-        returntype: 'Map',
-        parammaps: {
-          pastureId: Cookies.get('pastureid')
-        }
-      },
-      getParmCreateNumber: {
-        name: 'autoCreatCode',
-        page: 0,
-        offset: 0,
-        pagecount: 0,
-        returntype: 'Map',
-        parammaps: {
-          pastureId: Cookies.get('pastureid'),
-          codeType: 'SG'
-        }
-      },
-      getParmCreateAmount: {
-        name: 'getPartsListSGv2',
-        page: 0,
-        offset: 0,
-        pagecount: 0,
-        returntype: 'Map',
-        parammaps: {
-          pastureId: Cookies.get('pastureid')
-        }
-      },
-      listAdd: [],
-      postDataPramas: {},
-      requestParam: {},
-      dialogFormVisible_Examine: false,
-      examineTemp: {
-        statue: 1
-      },
-      statueReason: false,
-      activeList: [],
-      active: 3,
-      buttons: [],
-      downloadParam: {},
-      isPercentage: false,
-      percentage: 1,
-      pending: {
-        total: 0,
-        getdataListParm: {
-          name: 'getpartpurchaseWebListNO', page: 1, offset: 1, getTotal: 'total3', pagecount: 10, returntype: 'Map',
-          parammaps: {
-            loginId: Cookies.get('employeid'),
-            menu: 'Subscribe', logindeptId: Cookies.get('departmentid'), loginpastureId: Cookies.get('pastureid'),
-            empId: Cookies.get('employeid'), pastureId: Cookies.get('pastureid'), deptId: Cookies.get('departmentid')
-          }
-        }
-      }
-    }
-  },
-
-  created() {
-    const that = this
-    GetDataByName({ 'name': 'getUserPCButtons', 'parammaps': { 'jwt_username': Cookies.get('name') }}).then(response => {
-      that.buttons = response.data.list
-      that.get_auto_buttons()
-    })
-    this.get_select_list()
-    this.get_table_data()
-    this.getPendingList()
-  },
-
-  methods: {
-    tableSort(column) {
-      sortChange(column, this.listSee)
-    },
-    get_auto_buttons() {
-      // 新增
-      const SubscribeAdd = 'customs:subscribe:add'
-      const isSubscribeAdd = checkButtons(this.$store.state.user.buttons, SubscribeAdd)
-      this.isSubscribeAdd = isSubscribeAdd
-      // 模板
-      // eslint-disable-next-line no-redeclare
-      const SubscribeTemplate = 'customs:subscribe:template'
-      const isSubscribeTemplate = checkButtons(this.$store.state.user.buttons, SubscribeTemplate)
-      this.isSubscribeTemplate = isSubscribeTemplate
-      // 导入
-      // eslint-disable-next-line no-redeclare
-      const SubscribeImport = 'customs:subscribe:import'
-      const isSubscribeImport = checkButtons(this.$store.state.user.buttons, SubscribeImport)
-      this.isSubscribeImport = isSubscribeImport
-      // 导出
-      // eslint-disable-next-line no-redeclare
-      const SubscribeExport = 'customs:subscribe:export'
-      const isSubscribeExport = checkButtons(this.$store.state.user.buttons, SubscribeExport)
-      this.isSubscribeExport = isSubscribeExport
-      // 查看
-      // eslint-disable-next-line no-redeclare
-      const SubscribeSee = 'customs:subscribe:see'
-      const isSubscribeSee = checkButtons(this.$store.state.user.buttons, SubscribeSee)
-      this.isSubscribeSee = isSubscribeSee
-      // 删除
-      // eslint-disable-next-line no-redeclare
-      const SubscribeDelete = 'customs:subscribe:delete'
-      const isSubscribeDelete = checkButtons(this.$store.state.user.buttons, SubscribeDelete)
-      this.isSubscribeDelete = isSubscribeDelete
-      // 库管审核
-      // eslint-disable-next-line no-redeclare
-      const SubscribeExamineKG = 'customs:subscribe:examineKG'
-      const isSubscribeExamineKG = checkButtons(this.$store.state.user.buttons, SubscribeExamineKG)
-      this.isSubscribeExamineKG = isSubscribeExamineKG
-// 设备主管审核
-      const SubscribeExamineSBZG = 'customs:subscribe:examineSBZG'
-      const isSubscribeExamineSBZG = checkButtons(this.$store.state.user.buttons, SubscribeExamineSBZG)
-      this.isSubscribeExamineSBZG = isSubscribeExamineSBZG
-
-
-      // 主管审核
-      // eslint-disable-next-line no-redeclare
-      const SubscribeExamineZG = 'customs:subscribe:examineZG'
-      const isSubscribeExamineZG = checkButtons(this.$store.state.user.buttons, SubscribeExamineZG)
-      this.isSubscribeExamineZG = isSubscribeExamineZG
-      // 采购审核
-      // eslint-disable-next-line no-redeclare
-      const SubscribeExamineCG = 'customs:subscribe:examineCG'
-      const isSubscribeExamineCG = checkButtons(this.$store.state.user.buttons, SubscribeExamineCG)
-      this.isSubscribeExamineCG = isSubscribeExamineCG
-    },
-    getPendingList() {
-      this.pending.getdataListParm.parammaps.pastureName = this.getdataListParm.parammaps.pastureName
-      this.pending.getdataListParm.parammaps.orderNumber = this.getdataListParm.parammaps.orderNumber
-      this.pending.getdataListParm.parammaps.stuteSH = this.getdataListParm.parammaps.stuteSH
-      this.pending.getdataListParm.parammaps.departmentId = this.getdataListParm.parammaps.departmentId
-      this.pending.getdataListParm.parammaps.inputDatetime = this.getdataListParm.parammaps.inputDatetime
-      this.pending.getdataListParm.parammaps.loginId = this.getdataListParm.parammaps.loginId
-      this.pending.getdataListParm.parammaps.menu = this.getdataListParm.parammaps.menu
-      this.pending.getdataListParm.parammaps.logindeptId = this.getdataListParm.parammaps.logindeptId
-      this.pending.getdataListParm.parammaps.loginpastureId = this.getdataListParm.parammaps.loginpastureId
-      this.pending.getdataListParm.parammaps.empId = this.getdataListParm.parammaps.empId
-      this.pending.getdataListParm.parammaps.pastureId = Cookies.get('pastureid')
-      this.pending.getdataListParm.parammaps.deptId = Cookies.get('departmentid')
-      GetDataByName(this.pending.getdataListParm).then(response => {
-        this.pending.total = response.data.total3
-      })
-    },
-    get_table_data() {
-      this.listLoading = true
-      if (this.$refs['inputDatetime'] !== undefined && this.$refs['inputDatetime'].value !== null) {
-        this.getdataListParm.parammaps.startTime = this.$refs['inputDatetime'].value[0]
-        this.getdataListParm.parammaps.stopTime = this.$refs['inputDatetime'].value[1]
-      } else {
-        this.getdataListParm.parammaps.startTime = ''
-        this.getdataListParm.parammaps.stopTime = ''
-      }
-      GetDataByName(this.getdataListParm).then(response => {
-        if (response.data.list !== null) {
-          console.log('table数据', response.data.list)
-          this.list = response.data.list
-          this.pageNum = response.data.pageNum
-          this.pageSize = response.data.pageSize
-        } else {
-          this.list = []
-        }
-        this.total = response.data.total
-
-        setTimeout(() => {
-          this.listLoading = false
-        }, 100)
-      })
-    },
-    changeAll() {
-      console.log(this.radioAll)
-      if (this.radioAll === '全部') {
-        this.getdataListParm.name = 'getpartpurchaseList'
-        this.getdataListParm.offset = 1
-        this.getdataListParm.parammaps = {
-          pastureName: Cookies.get('pasturename'),
-          orderNumber: '',
-          departmentId: '',
-          inputDatetime: '',
-          startTime: '',
-          stopTime: '',
-          loginId: Cookies.get('employeid'),
-          menu: 'Subscribe',
-          logindeptId: Cookies.get('departmentid'),
-          loginpastureId: Cookies.get('pastureid')
-        }
-        this.get_table_data()
-      } else if (this.radioAll === '待处理') {
-        this.getdataListParm.name = 'getpartpurchaseWebListNO'
-        this.getdataListParm.offset = 1
-        this.getdataListParm.parammaps = {
-          pastureName: this.getdataListParm.parammaps.pastureName,
-          orderNumber: this.getdataListParm.parammaps.orderNumber,
-          stuteSH: this.getdataListParm.parammaps.stuteSH,
-          departmentId: this.getdataListParm.parammaps.departmentId,
-          inputDatetime: this.getdataListParm.parammaps.inputDatetime,
-          startTime: this.getdataListParm.parammaps.startTime,
-          stopTime: this.getdataListParm.parammaps.stopTime,
-          loginId: Cookies.get('employeid'),
-          menu: 'Subscribe',
-          logindeptId: Cookies.get('departmentid'),
-          loginpastureId: Cookies.get('pastureid'),
-          empId: Cookies.get('employeid'),
-          pastureId: Cookies.get('pastureid'),
-          deptId: Cookies.get('departmentid')
-        }
-        this.get_table_data()
-      } else if (this.radioAll === '已处理') {
-        this.getdataListParm.name = 'getpartpurchaseWebList'
-        this.getdataListParm.offset = 1
-        this.getdataListParm.parammaps = {
-          pastureName: this.getdataListParm.parammaps.pastureName,
-          orderNumber: this.getdataListParm.parammaps.orderNumber,
-          stuteSH: this.getdataListParm.parammaps.stuteSH,
-          departmentId: this.getdataListParm.parammaps.departmentId,
-          inputDatetime: this.getdataListParm.parammaps.inputDatetime,
-          startTime: this.getdataListParm.parammaps.startTime,
-          stopTime: this.getdataListParm.parammaps.stopTime,
-          loginId: Cookies.get('employeid'),
-          menu: 'Subscribe',
-          logindeptId: Cookies.get('departmentid'),
-          loginpastureId: Cookies.get('pastureid'),
-          empId: Cookies.get('employeid'),
-          pastureId: Cookies.get('pastureid'),
-          deptId: Cookies.get('departmentid')
-        }
-        this.get_table_data()
-      }
-    },
-    statue: function(cellValue) {
-      // console.log(cellValue.isZeroStock)
-      if (cellValue.statue == 2) {
-        return '审核中'
-      } else if (cellValue.statue == 3) {
-        return '审核中'
-      } else if (cellValue.statue == 4) {
-        return '未通过'
-      } else if (cellValue.statue == 5) {
-        return '审核中'
-      } else if (cellValue.statue == 6) {
-        return '未通过'
-      } else if (cellValue.statue == 7) {
-        return '已通过'
-      } else if (cellValue.statue == 8) {
-        return '未通过'
-      } else if (cellValue.statue == 9) {
-        return '审核中'
-      } else if (cellValue.statue == 10) {
-        return '未通过'
-      }
-    },
-    form_search() {
-      console.log('点击了table搜索')
-      if (this.getdataListParm.parammaps.inputDatetime === null) {
-        this.getdataListParm.parammaps.inputDatetime = ''
-      }
-      this.getdataListParm.offset = 1
-      this.listLoading = true
-      this.get_table_data()
-      this.getPendingList()
-    },
-    resetCreateTemp() {
-      this.createTemp.pastureId = parseInt(Cookies.get('pastureid'))
-      this.createTemp.departmentId = parseInt(Cookies.get('departmentid'))
-      this.createTemp.employeId = parseInt(Cookies.get('employeid'))
-      this.createTemp.createTime = parseTime(new Date(), '{y}-{m}-{d}')
-      this.createTemp.orderNumber = ''
-      this.createTemp.providerId = ''
-      this.listAdd = []
-    },
-    form_add() {
-      this.resetCreateTemp()
-      this.edit = 1
-      this.getDepartParam.parammaps.pastureId = this.createTemp.pastureId
-      this.getCreateDepartDownList()
-      this.dialogStatus = 'create'
-      this.dialogFormVisible = true
-      this.$nextTick(() => {
-        this.$refs['createTemp'].clearValidate()
-      })
-      this.getCreateNumber()
-    },
-    getCreateNumber() {
-      GetDataByName(this.getParmCreateNumber).then(response => {
-        this.$nextTick(() => {
-          console.log('新增申购单号', response.data.list[0].orderCode)
-          this.createTemp.orderNumber = response.data.list[0].orderCode
-          this.$forceUpdate()
-        })
-      })
-    },
-    // getPartsListSG
-    changeProvider(item) {
-      if (item !== '') {
-        this.createTemp.providerName = this.onlineSubscriptionList.find(obj => obj.id == item).providerName
-      }
-      this.listAdd = []
-    },
-    sparePartSearch(queryString, cb) {
-      console.log('备件模糊查询输入值', queryString)
-      if (this.createTemp.providerId == '') {
-        this.requestSparePart.name = 'getPartsListSG'
-      } else {
-        this.requestSparePart.name = 'getPartsListSGFlex'
-        this.requestSparePart.parammaps.providerId = this.createTemp.providerId
-        this.requestSparePart.parammaps.providerName = this.createTemp.providerName
-      }
-      this.requestSparePart.parammaps['partCode'] = queryString
-      GetDataByName(this.requestSparePart).then(response => {
-        console.log('备件模糊查询搜索data', response.data.list)
-        if (response.data.list == null) {
-          cb([])
-        } else {
-          cb(response.data.list)
-        }
-      })
-    },
-    handleSelectSparePart(item) {
-      console.log('备件模糊查询选中值', item)
-      console.log('备件模糊查询选中值', item.partId)
-      console.log(this.listAdd)
-      if (this.createTemp.providerId == '') {
-        if (this.listAdd.length > 0) {
-          // eslint-disable-next-line no-redeclare
-          if (this.listAdd.find(obj => obj.partId == item.partId)) {
-            this.$message({ type: 'warning', message: '此备件已存在,请重新选择备件' })
-          } else {
-            // this.getParmCreateAmount.parammaps.partCode = item.partCode
-            // GetDataByName(this.getParmCreateAmount).then(response => {
-            //   this.$nextTick(() => {
-            //     console.log('新增根据编号获取备件库存数量', response.data.list[0].reporteryNum)
-            //     item.reportery = response.data.list[0].reporteryNum
-            //     if (item.srcpath !== null && item.picpath) {
-            //       this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-            //       this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-            //     } else {
-            //       item.srcpath = ''
-            //       item.picpath = ''
-            //     }
-            //     this.listAdd.unshift(item)
-            //     this.$forceUpdate()
-            //   })
-            // })
-            this.getParmCreateAmount.parammaps.partCode = item.partCode
-            GetDataByName(this.getParmCreateAmount).then(response => {
-              this.$nextTick(() => {
-                console.log('新增根据编号获取备件库存数量', response.data.list[0])
-                item = response.data.list[0]
-                if (item.srcpath !== null && item.picpath !== null && item.srcpath !== undefined && item.picpath !== undefined) {
-                  this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-                  this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-                } else {
-                  item.srcpath = ''
-                  item.picpath = ''
-                }
-                this.$set(item, 'amount', '')
-                this.$set(item, 'purpose', '')
-                this.listAdd.unshift(item)
-                this.$forceUpdate()
-              })
-            })
-          }
-        } else {
-          // this.getParmCreateAmount.parammaps.partCode = item.partCode
-          // GetDataByName(this.getParmCreateAmount).then(response => {
-          //   this.$nextTick(() => {
-          //     console.log('新增根据编号获取备件库存数量', response.data.list[0].reporteryNum)
-          //     item.reportery = response.data.list[0].reporteryNum
-          //     if (item.srcpath !== null && item.picpath) {
-          //       this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-          //       this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-          //     } else {
-          //       item.srcpath = ''
-          //       item.picpath = ''
-          //     }
-          //     this.listAdd.unshift(item)
-          //     this.$forceUpdate()
-          //   })
-          // })
-          this.getParmCreateAmount.parammaps.partCode = item.partCode
-          GetDataByName(this.getParmCreateAmount).then(response => {
-            this.$nextTick(() => {
-              console.log('新增根据编号获取备件库存数量', response.data.list[0])
-              item = response.data.list[0]
-              if (item.srcpath !== null && item.picpath !== null && item.srcpath !== undefined && item.picpath !== undefined) {
-                this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-                this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-              } else {
-                item.srcpath = ''
-                item.picpath = ''
-              }
-              this.$set(item, 'amount', '')
-              this.$set(item, 'purpose', '')
-              this.listAdd.unshift(item)
-              this.$forceUpdate()
-            })
-          })
-        }
-        this.$forceUpdate()
-      } else {
-        if (this.listAdd.length > 0) {
-          if (this.listAdd.find(obj => obj.partId == item.partId)) {
-            this.$message({ type: 'warning', message: '此备件已存在,请重新选择备件' })
-          } else {
-            if (item.srcpath !== null && item.picpath !== null && item.srcpath !== undefined && item.picpath !== undefined) {
-              this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-              this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-            } else {
-              item.srcpath = ''
-              item.picpath = ''
-            }
-            this.$set(item, 'amount', '')
-            this.$set(item, 'purpose', '')
-            this.listAdd.unshift(item)
-          }
-        } else {
-          if (item.srcpath !== null && item.picpath !== null && item.srcpath !== undefined && item.picpath !== undefined) {
-            this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-            this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-          } else {
-            item.srcpath = ''
-            item.picpath = ''
-          }
-          this.$set(item, 'amount', '')
-          this.$set(item, 'purpose', '')
-          this.listAdd.unshift(item)
-          this.$forceUpdate()
-        }
-        this.$forceUpdate()
-      }
-    },
-    add_dialog_save() {
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['createTemp'].validate(valid => {
-        if (valid) {
-          console.log(this.listAdd)
-          if (this.createTemp.orderNumber == '' || this.createTemp.orderNumber == null || this.createTemp.orderNumber == undefined) {
-            GetDataByName(this.getParmCreateNumber).then(response => {
-              this.$nextTick(() => {
-                console.log('新增申购单号', response.data.list[0].orderCode)
-                this.createTemp.orderNumber = response.data.list[0].orderCode
-                this.$forceUpdate()
-                this.add_dialog_saveSave()
-              })
-            })
-          } else {
-            this.add_dialog_saveSave()
-          }
-        }
-      })
-    },
-    add_dialog_saveSave() {
-      if (this.listAdd.length !== 0) {
-        for (var j = 0; j < this.listAdd.length; j++) {
-          console.log(this.listAdd[j].amount)
-          if (this.listAdd[j].amount == null || this.listAdd[j].amount === '') {
-            this.$message({ type: 'warning', message: '请检查申购数量是否未填写', duration: 2000 })
-            return false
-          } else {
-            var rulesAmount = /^[1-9]\d*$/
-            if (!rulesAmount.test(this.listAdd[j].amount)) {
-              this.$message({ type: 'error', message: '申购数量请输入正整数', duration: 2000 })
-              return false
-            }
-          }
-          if (this.createTemp.providerId !== '') {
-            if (this.listAdd[j].price == '') {
-              this.$message({ type: 'warning', message: '请检查单价是否为空', duration: 2000 })
-              return false
-            } else {
-              if (parseFloat(this.listAdd[j].price) == 0) {
-                this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                return false
-              } else {
-                var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,5})?$/
-                if (rulesPrice.test(this.listAdd[j].price) == false) {
-                  this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                  return false
-                }
-              }
-            }
-          }
-        }
-        this.postDataPramas.common = { 'returnmap': '0' }
-        this.postDataPramas.data = []
-        this.postDataPramas.data[0] = { 'name': 'insertBigPartpurchase', 'type': 'e', 'parammaps': {
-          pastureId: this.createTemp.pastureId,
-          departmentId: this.createTemp.departmentId,
-          orderNumber: this.createTemp.orderNumber,
-          useType: this.createTemp.useType,
-          createTime: this.createTemp.createTime,
-          employeId: this.createTemp.employeId,
-          providerId: this.createTemp.providerId
-        }}
-        // eslint-disable-next-line no-irregular-whitespace
-        this.postDataPramas.data[1] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.listAdd }}
-        this.postDataPramas.data[1].children = []
-        this.postDataPramas.data[1].children[0] = { 'name': 'insertPartpurchase', 'type': 'e', 'parammaps': {
-          bigId: '@insertBigPartpurchase.LastInsertId',
-          pastureId: '@insertSpotList.pastureId',
-          partId: '@insertSpotList.partId',
-          partCode: '@insertSpotList.partCode',
-          partName: '@insertSpotList.partName',
-          specification: '@insertSpotList.specification',
-          unit: '@insertSpotList.unit',
-          brandId: '@insertSpotList.brandId',
-          storageAmount: '@insertSpotList.reportery',
-          purpose: '@insertSpotList.purpose',
-          amount: '@insertSpotList.amount',
-          price: '@insertSpotList.price',
-          contractId: '@insertSpotList.contractId'
-        }}
-        ExecDataByConfig(this.postDataPramas).then(response => {
-          console.log('新增保存发送参数', this.postDataPramas)
-          if (response.msg === 'fail') {
-            this.$notify({
-              title: '保存失败',
-              message: response.data,
-              type: 'warning',
-              duration: 2000
-            })
-          } else {
-            this.dialogFormVisible = false
-            this.getdataListParm.parammaps.inputDatetime = ''
-            this.get_table_data()
-            this.getPendingList()
-            this.$notify({
-              title: '',
-              message: '保存成功',
-              type: 'success',
-              duration: 2000
-            })
-          }
-        })
-        return true
-      } else {
-        this.$message({
-          title: '',
-          message: '请选择备件',
-          type: 'warning',
-          duration: 2000
-        })
-        return false
-      }
-    },
-    partDelete(row) {
-      console.log(this.listAdd)
-      MessageBox.confirm('设备名称:' + row.partName, '确认删除?', {
-        confirmButtonText: '确认',
-        cancelButtonText: '取消',
-        type: 'warning'
-      }).then(() => {
-        // console.log(this.list2)
-        for (var i = 0; i < this.listAdd.length; i++) {
-          console.log(this.listAdd[i])
-          if (this.listAdd[i].id === row.id) {
-            var listAddIndex = this.listAdd.indexOf(this.listAdd[i])
-          }
-          if (listAddIndex > -1) {
-            this.listAdd.splice(listAddIndex, 1)
-            return
-          }
-        }
-      })
-    },
-    // 查看
-    form_see(row) {
-      this.dialogStatus = 'see'
-      this.dialogFormVisibleSee = true
-      this.seeTemp = Object.assign({}, row)
-      console.log('查看上方数据(从table读取)', this.seeTemp)
-      this.listSee = []
-      this.getdataListSee.parammaps.id = this.seeTemp.id
-      this.getSeeList()
-      // 流程图
-      var reason = '未通过原因:' + this.seeTemp.workflowNote
-      if (this.seeTemp.statue === 2) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核' },{ title: '设备主管审核' }, { title: '供应主管审核' }, { title: '采购审核' }]
-        this.active = 1
-      } else if (this.seeTemp.statue === 3) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },{ title: '设备主管审核' }, { title: '供应主管审核' }, { title: '采购审核' }]
-        this.active = 2
-      } else if (this.seeTemp.statue === 4) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson, status: 'error', reason: reason },{ title: '设备主管审核' }, { title: '供应主管审核' }, { title: '采购审核' }]
-        this.active = 2
-      } else if (this.seeTemp.statue === 9) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson },{ title: '供应主管审核' }, { title: '采购审核' }]
-        this.active = 3
-      } else if (this.seeTemp.statue === 10) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson, status: 'error', reason: reason  }, { title: '供应主管审核' }, { title: '采购审核' }]
-        this.active = 3
-      }  else if (this.seeTemp.statue === 5) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson   }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson }, { title: '采购审核' }]
-        this.active = 4
-      } else if (this.seeTemp.statue === 6) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson, status: 'error', reason: reason }, { title: '采购审核' }]
-        this.active = 4
-      } else if (this.seeTemp.statue === 7) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson }, { title: '采购审核', date: this.seeTemp.CGChargedate, name: this.seeTemp.CGChargePerson }]
-        this.active = 5
-      } else if (this.seeTemp.statue === 8) {
-        this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson }, { title: '采购审核', date: this.seeTemp.CGChargedate, name: this.seeTemp.CGChargePerson, status: 'error', reason: reason }]
-        this.active = 5
-      }
-    },
-    getSeeList() {
-      GetDataByName(this.getdataListSee).then(response => {
-        if (response.data.list !== null) {
-          console.log('查看下方table数据', response.data.list)
-          this.listSee = response.data.list
-          this.listAdd = response.data.list
-          for (let i = 0; i < response.data.list.length; i++) {
-            if (response.data.list[i].srcpath !== null && response.data.list[i].picpath !== null && response.data.list[i].srcpath !== undefined && response.data.list[i].picpath !== undefined) {
-              console.log(process.env.VUE_APP_BASE_API + response.data.list[i].srcpath, '=======1')
-              this.listSee[i].srcpath = process.env.VUE_APP_BASE_API + response.data.list[i].srcpath
-              this.listSee[i].picpath = process.env.VUE_APP_BASE_API + response.data.list[i].picpath
-              this.listAdd[i].srcpath = this.listSee[i].srcpath
-              this.listAdd[i].picpath = this.listSee[i].picpath
-              // this.seeTemp.providerName = response.data.list.providerName
-              this.pageNumSee = response.data.pageNum
-              this.pageSizeSee = response.data.pageSize
-            } else {
-              this.listSee[i].srcpath = ''
-              this.listSee[i].picpath = ''
-              this.listAdd[i].srcpath = ''
-              this.listAdd[i].picpath = ''
-            }
-            console.log(process.env.VUE_APP_BASE_API)
-            console.log(this.listSee, '============')
-          }
-        }
-        if (response.data.total) {
-          this.totalSee = response.data.total
-        }
-        setTimeout(() => {
-          this.listLoadingSee = false
-        }, 100)
-      })
-    },
-    form_edit(row) {
-      this.edit = 0
-      this.getDepartParam.parammaps.pastureId = row.pastureId
-      this.getCreateDepartDownList()
-      if (row.providerId == undefined) {
-        row.providerId = ''
-        row.providerName = ''
-      }
-      this.createTemp = Object.assign({}, row) // copy obj
-      this.dialogStatus = 'update'
-      this.dialogFormVisible = true
-      this.$nextTick(() => {
-        this.$refs['createTemp'].clearValidate()
-      })
-      this.getdataListSee.parammaps.id = this.createTemp.id
-      this.getSeeList()
-    },
-    edit_dialog_save() {
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['createTemp'].validate(valid => {
-        if (valid) {
-          this.edit_dialog_saveSave()
-        }
-      })
-    },
-    edit_dialog_saveSave() {
-      if (this.listAdd.length !== 0) {
-        for (var j = 0; j < this.listAdd.length; j++) {
-          console.log(this.listAdd[j].amount)
-          // eslint-disable-next-line use-isnan
-          if (this.listAdd[j].amount == null || this.listAdd[j].amount === '') {
-            this.$message({ type: 'warning', message: '请检查申购数量是否未填写', duration: 2000 })
-            return false
-          } else {
-            var rulesAmount = /^[1-9]\d*$/
-            if (!rulesAmount.test(this.listAdd[j].amount)) {
-              this.$message({ type: 'error', message: '申购数量请输入正整数', duration: 2000 })
-              return false
-            }
-          }
-          if (this.createTemp.providerId !== '') {
-            if (this.listAdd[j].price == '') {
-              this.$message({ type: 'warning', message: '请检查单价是否为空', duration: 2000 })
-              return false
-            } else {
-              if (parseFloat(this.listAdd[j].price) == 0) {
-                this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                return false
-              } else {
-                var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,5})?$/
-                if (rulesPrice.test(this.listAdd[j].price) == false) {
-                  this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                  return false
-                }
-              }
-            }
-          }
-        }
-        this.postDataPramas.common = { 'returnmap': '0' }
-        this.postDataPramas.data = []
-        this.postDataPramas.data[0] = { 'name': 'updatepartpurchaseCharge', 'type': 'e', 'parammaps': {
-          id: this.createTemp.id
-        }}
-        this.postDataPramas.data[1] = { 'name': 'deletePartpurchase', 'type': 'e', 'parammaps': {
-          bigId: this.createTemp.id
-        }}
-        // eslint-disable-next-line no-irregular-whitespace
-        this.postDataPramas.data[2] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.listAdd }}
-        this.postDataPramas.data[2].children = []
-        this.postDataPramas.data[2].children[0] = { 'name': 'insertPartpurchase', 'type': 'e', 'parammaps': {
-          bigId: this.createTemp.id,
-          pastureId: '@insertSpotList.pastureId',
-          partId: '@insertSpotList.partId',
-          partCode: '@insertSpotList.partCode',
-          partName: '@insertSpotList.partName',
-          specification: '@insertSpotList.specification',
-          unit: '@insertSpotList.unit',
-          brandId: '@insertSpotList.brandId',
-          storageAmount: '@insertSpotList.reportery',
-          purpose: '@insertSpotList.purpose',
-          amount: '@insertSpotList.amount',
-          price: '@insertSpotList.price',
-          contractId: '@insertSpotList.contractId'
-        }}
-        ExecDataByConfig(this.postDataPramas).then(response => {
-          console.log('新增保存发送参数', this.postDataPramas)
-          if (response.msg === 'fail') {
-            this.$notify({
-              title: '保存失败',
-              message: response.data,
-              type: 'warning',
-              duration: 2000
-            })
-          } else {
-            this.dialogFormVisible = false
-            this.getdataListParm.parammaps.inputDatetime = ''
-            this.get_table_data()
-            this.$notify({
-              title: '',
-              message: '保存成功',
-              type: 'success',
-              duration: 2000
-            })
-          }
-        })
-        return true
-      } else {
-        this.$message({
-          title: '',
-          message: '请选择备件',
-          type: 'warning',
-          duration: 2000
-        })
-        return false
-      }
-    },
-    get_select_list() {
-      GetDataByNames(this.requestParams).then(response => {
-        this.findAllProvider = response.data.findAllProvider.list
-        this.findAllPasture = response.data.findAllPasture.list
-        this.findAllEmploye = response.data.findAllEmploye.list
-        this.onlineSubscriptionList = response.data.getflexProviderList.list
-        this.getDepartDownList()
-      })
-    },
-    getDepartDownList() {
-      GetDataByName(this.getDepartParam).then(response => {
-        this.findAllDepart = response.data.list
-      })
-    },
-    changePastureName(item) {
-      this.getDepartParam.parammaps.pastureId = this.findAllPasture.find(obj => obj.name == item).id
-      this.getdataListParm.parammaps.departmentId = ''
-      this.getDepartDownList()
-    },
-    getCreateDepartDownList() {
-      GetDataByName(this.getDepartParam).then(response => {
-        this.createDepartList = response.data.list
-        if (this.edit == 1) {
-          if (this.createDepartList.find(obj => obj.id == Cookies.get('departmentid'))) {
-            this.createTemp.departmentId = parseInt(Cookies.get('departmentid'))
-            this.createTemp.departmentName = this.createDepartList.find(obj => obj.id == Cookies.get('departmentid')).name
-          } else {
-            this.createTemp.departmentId = response.data.list[0].id
-            this.createTemp.departmentName = response.data.list[0].name
-          }
-        }
-      })
-    },
-    changePasture(item) {
-      this.getDepartParam.parammaps.pastureId = item
-      this.edit = 1
-      this.getCreateDepartDownList()
-    },
-    changeDepart(item) {
-      this.createTemp.departmentName = this.createDepartList.find(obj => obj.id == item).name
-    },
-    handleDownload() {
-      console.log('点击了下载')
-      this.$alert('备件申购正在导出中,请勿刷新或离开本页面,若导出时间过长,建议缩小导出数据范围重新导出', {})
-      this.isPercentage = true
-      this.percentage = 1
-      var timer = setInterval(() => {
-        this.percentage += 5
-        if (this.percentage > 95) {
-          this.percentage = 99
-          clearInterval(timer)
-        }
-        this.percentage = this.percentage
-      }, 1000)
-      this.downloadParam.name = 'downloadPartpurchaseList'
-      this.downloadParam.parammaps = this.getdataListParm.parammaps
-      GetAccount(this.downloadParam).then(response => {
-        if (response.data.list !== '') {
-          this.percentage = 99
-          setTimeout(() => {
-            this.isPercentage = false
-          }, 2000)
-        }
-        this.$nextTick(() => {
-          const ExcelDatas = [
-            {
-              tHeader: ['牧场', '申购单号', '申购时间', '备件编号', '备件名称', '规格型号', '品牌', '单位', '申购数量', '申购部门', '申购人', '备注'],
-              filterVal: ['pastureName', 'orderNumber', 'inputTime', 'partCode', 'partName', 'specification', 'brandName', 'unit', 'amount', 'departmentName', 'empname', 'purpose'],
-              tableDatas: response.data.list,
-              sheetName: '备件申购'
-            }
-          ]
-          json2excel(ExcelDatas, '备件申购', true, 'xlsx')
-        })
-      })
-    },
-    form_delete(row) {
-      console.log('点击了删除')
-      MessageBox.confirm('确认删除此条信息?', {
-        confirmButtonText: '确认',
-        cancelButtonText: '取消',
-        type: 'warning'
-      }).then(() => {
-        this.postDataPramas.common = { 'returnmap': '0' }
-        this.postDataPramas.data = []
-        this.postDataPramas.data[0] = { 'name': 'deleteBigPartpurchase', 'type': 'e', 'parammaps': {
-          id: row.id
-        }}
-        this.postDataPramas.data[1] = { 'name': 'deletePartpurchase', 'type': 'e', 'parammaps': {
-          bigId: row.id
-        }}
-        ExecDataByConfig(this.postDataPramas).then(response => {
-          this.get_table_data()
-          this.$notify({
-            title: '成功',
-            message: '删除成功',
-            type: 'success',
-            duration: 2000
-          })
-        })
-      }).catch(() => {
-        this.$message({
-          type: 'info',
-          message: '已取消删除'
-        })
-      })
-    },
-    handleExamine(row) {
-      console.log('点击了库管审核')
-      if (row == undefined) {
-        this.examineTemp = this.seeTemp
-        this.$set(this.seeTemp, 'statue', 1)
-        this.$set(this.seeTemp, 'workflowNote', '')
-      } else {
-        this.examineTemp = Object.assign({}, row)
-        this.$set(this.examineTemp, 'statue', 1)
-        this.$set(this.examineTemp, 'workflowNote', '')
-      }
-      this.dialogStatus = 'examine'
-      this.dialogFormVisible_Examine = true
-      this.statueReason = false
-    },
-    changeStatue(val) {
-      if (val == 2) {
-        this.statueReason = true
-      } else {
-        this.statueReason = false
-      }
-    },
-    createExamineData() {
-      console.log('点击了库管审核')
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['examineTemp'].validate(valid => {
-        if (valid) {
-          this.requestParam = {}
-          this.requestParam.name = 'partpurchaseCharge'
-          this.requestParam.parammaps = {}
-          this.requestParam.parammaps.id = this.examineTemp.id
-          if (this.examineTemp.statue == 1) {
-            this.requestParam.parammaps.statue = 3
-          } else if (this.examineTemp.statue == 2) {
-            this.requestParam.parammaps.statue = 4
-          }
-          this.requestParam.parammaps.empId	 = Cookies.get('employeid')
-          this.requestParam.parammaps.workflowNote = this.examineTemp.workflowNote
-          PostDataByName(this.requestParam).then(response => {
-            console.log('审核确认发送参数', this.requestParam)
-            if (response.msg !== 'fail') {
-              this.get_table_data()
-              this.dialogFormVisible_Examine = false
-              this.dialogFormVisible_See = false
-              this.statueReason = false
-              this.$notify({
-                title: '成功',
-                message: '审核成功',
-                type: 'success',
-                duration: 2000
-              })
-            } else {
-              failproccess(response, this.$notify)
-            }
-          })
-        }
-      })
-    },
-
-    handleExamine22(row) {
-      console.log('点击了设备主管审核')
-      if (row == undefined) {
-        this.examineTemp = this.seeTemp
-        this.$set(this.seeTemp, 'statue', 1)
-        this.$set(this.seeTemp, 'workflowNote', '')
-      } else {
-        this.examineTemp = Object.assign({}, row)
-        this.$set(this.examineTemp, 'statue', 1)
-        this.$set(this.examineTemp, 'workflowNote', '')
-      }
-      this.dialogStatus = 'examine22'
-      this.dialogFormVisible_Examine = true
-      this.statueReason = false
-    },
-    createExamineData22() {
-      console.log('点击了设备主管审核')
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['examineTemp'].validate(valid => {
-        if (valid) {
-          this.requestParam = {}
-          this.requestParam.name = 'partpurchaseEquipment'
-          this.requestParam.parammaps = {}
-          this.requestParam.parammaps.id = this.examineTemp.id
-          if (this.examineTemp.statue == 1) {
-            this.requestParam.parammaps.statue = 9
-          } else if (this.examineTemp.statue == 2) {
-            this.requestParam.parammaps.statue = 10
-          }
-          this.requestParam.parammaps.empId	 = Cookies.get('employeid')
-          this.requestParam.parammaps.workflowNote = this.examineTemp.workflowNote
-          PostDataByName(this.requestParam).then(response => {
-            console.log('审核确认发送参数', this.requestParam)
-            if (response.msg !== 'fail') {
-              this.get_table_data()
-              this.dialogFormVisible_Examine = false
-              this.dialogFormVisible_See = false
-              this.statueReason = false
-              this.$notify({
-                title: '成功',
-                message: '审核成功',
-                type: 'success',
-                duration: 2000
-              })
-            } else {
-              failproccess(response, this.$notify)
-            }
-          })
-        }
-      })
-    },
-    handleExamine2(row) {
-      console.log('点击了供应主管审核')
-      if (row == undefined) {
-        this.examineTemp = this.seeTemp
-        this.$set(this.seeTemp, 'statue', 1)
-        this.$set(this.seeTemp, 'workflowNote', '')
-      } else {
-        this.examineTemp = Object.assign({}, row)
-        this.$set(this.examineTemp, 'statue', 1)
-        this.$set(this.examineTemp, 'workflowNote', '')
-      }
-      this.dialogStatus = 'examine2'
-      this.dialogFormVisible_Examine = true
-      this.statueReason = false
-    },
-    createExamineData2() {
-      console.log('点击了供应主管审核')
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['examineTemp'].validate(valid => {
-        if (valid) {
-          this.requestParam = {}
-          this.requestParam.name = 'partpurchaseCharge3'
-          this.requestParam.parammaps = {}
-          this.requestParam.parammaps.id = this.examineTemp.id
-          if (this.examineTemp.statue == 1) {
-            this.requestParam.parammaps.statue = 5
-          } else if (this.examineTemp.statue == 2) {
-            this.requestParam.parammaps.statue = 6
-          }
-          this.requestParam.parammaps.empId	 = Cookies.get('employeid')
-          this.requestParam.parammaps.workflowNote = this.examineTemp.workflowNote
-          PostDataByName(this.requestParam).then(response => {
-            console.log('审核确认发送参数', this.requestParam)
-            if (response.msg !== 'fail') {
-              this.get_table_data()
-              this.dialogFormVisible_Examine = false
-              this.dialogFormVisible_See = false
-              this.statueReason = false
-              this.$notify({
-                title: '成功',
-                message: '审核成功',
-                type: 'success',
-                duration: 2000
-              })
-            } else {
-              failproccess(response, this.$notify)
-            }
-          })
-        }
-      })
-    },
-    handleExamine3(row) {
-      console.log('点击了采购审核')
-      if (row == undefined) {
-        this.examineTemp = this.seeTemp
-        this.$set(this.seeTemp, 'statue', 1)
-        this.$set(this.seeTemp, 'workflowNote', '')
-      } else {
-        this.examineTemp = Object.assign({}, row)
-        this.$set(this.examineTemp, 'workflowNote', '')
-        this.$set(this.examineTemp, 'statue', 1)
-      }
-      this.dialogStatus = 'examine3'
-      this.dialogFormVisible_Examine = true
-      this.statueReason = false
-    },
-    createExamineData3() {
-      console.log('点击了采购审核')
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['examineTemp'].validate(valid => {
-        if (valid) {
-          this.requestParam = {}
-          this.requestParam.parammaps = {}
-          this.requestParam.common = { 'returnmap': '0' }
-          this.requestParam.data = []
-          if (this.examineTemp.statue == 1) {
-            this.requestParam.data[0] = { 'name': 'partpurchaseCharge1', 'type': 'e', 'parammaps': {
-              id: this.examineTemp.id,
-              statue: 7,
-              empId: Cookies.get('employeid'),
-              workflowNote: this.examineTemp.workflowNote
-            }}
-            this.requestParam.data[1] = { 'name': 'createBuydetailBySG', 'type': 'e', 'parammaps': {
-              id: this.examineTemp.id,
-              pastureId: this.examineTemp.pastureId
-            }}
-          } else if (this.examineTemp.statue == 2) {
-            this.requestParam.data[0] = { 'name': 'partpurchaseCharge1', 'type': 'e', 'parammaps': {
-              id: this.examineTemp.id,
-              statue: 8,
-              empId: Cookies.get('employeid'),
-              workflowNote: this.examineTemp.workflowNote
-            }}
-          }
-          ExecDataByConfig(this.requestParam).then(response => {
-            if (response.msg !== 'fail') {
-              this.get_table_data()
-              this.dialogFormVisible_Examine = false
-              this.dialogFormVisible_See = false
-              this.statueReason = false
-              this.$notify({ title: '成功', message: '审核成功', type: 'success', duration: 2000 })
-            } else {
-              failproccess(response, this.$notify)
-            }
-          })
-        }
-      })
-    }
-  }
-}
-</script>
-<style lang="scss" scoped>
-  .pagination-container{
-    display: block !important;
-  }
-  /deep/ .el-badge__content.is-fixed{
-    z-index: 1;
-  }
-</style>
-<style lang="scss">
-.el-step__head.is-success {
-    color: #409EFF;
-    border-color: #409EFF;
-}
-.el-step__title.is-success{
-  color: #409EFF;
-}
-.el-step__head.is-process{
-  color: #409EFF;
-  border-color: #409EFF;
-  .el-step__icon.is-text{
-    background: #409EFF;
-    color: #fff;
-  }
-}
-.step-row{
-  color: #000;
-}
-</style>

+ 0 - 1847
src/views/custom/subscribe/index3.vue

@@ -1,1847 +0,0 @@
-<template>
-  <div class="app-container">
-    <div v-if="isPercentage" class="percentage" style="width: 210px;height: 90px;background: #fff;position: fixed;bottom: 0;left: 0;z-index: 9999999999999;">
-      <h4 style="padding-left: 10px;line-height: 0;">导出进度:</h4>
-      <el-progress style="padding-left: 10px;" :text-inside="true" :stroke-width="26" :percentage="percentage" />
-    </div>
-    <div class="filter-container">
-      <el-select v-model="getdataListParm.parammaps.pastureName" style="width: 140px;" placeholder="牧场" class="filter-item" @change="changePastureName">
-        <el-option v-for="item in findAllPasture" :key="item.id" :label="item.name" :value="item.name" />
-      </el-select>
-      <el-input v-model="getdataListParm.parammaps.orderNumber" placeholder="申购单号" style="width: 200px;" class="filter-item" />
-      <el-select v-model="getdataListParm.parammaps.stuteSH" style="width: 140px;" clearable placeholder="审核状态" class="filter-item">
-        <el-option v-for="item in statues" :key="item.id" :label="item.name" :value="item.id" />
-      </el-select>
-      <el-select v-model="getdataListParm.parammaps.departmentId" clearable style="width: 140px;" placeholder="申购部门" class="filter-item">
-        <el-option v-for="item in findAllDepart" :key="item.id" :label="item.name" :value="item.id" />
-      </el-select>
-      <el-input v-model="getdataListParm.parammaps.empName" placeholder="申购人" style="width: 200px;" class="filter-item" />
-      <!-- <el-select v-model="getdataListParm.parammaps.empName " style="width: 140px;" placeholder="申购人" class="filter-item">
-        <el-option v-for="item in findAllEmploye" :key="item.id" :label="item.name" :value="item.id" />
-      </el-select> -->
-      <el-date-picker ref="inputDatetime" v-model="getdataListParm.parammaps.inputDatetime" class="inputDatetime" type="datetimerange" style="width: 250px;top:-3px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" />
-      <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="form_search">搜索</el-button>
-      <div>
-
-        <el-button v-if="isSubscribeAdd" class="filter-item" type="primary" icon="el-icon-edit" @click="form_add">新增</el-button>
-        <el-button v-if="isSubscribeExport" v-waves class="filter-item" type="success" icon="el-icon-upload2" @click="handleDownload">导出</el-button>
-        <el-radio-group v-model="radioAll" style="margin-top:-9px" @change="changeAll()">
-          <el-radio-button label="全部" />
-          <el-badge :value="pending.total" class="item">
-            <el-radio-button label="待处理" />
-          </el-badge>
-          <el-radio-button label="已处理" />
-        </el-radio-group>
-      </div>
-    </div>
-    <div class="filter-button" />
-
-    <el-table
-      :key="tableKey"
-      v-loading="listLoading"
-      element-loading-text="给我一点时间"
-      :data="list"
-      border
-      fit
-      highlight-current-row
-      style="width: 100%;"
-      :row-style="rowStyle"
-      :cell-style="cellStyle"
-      class="elTable"
-      :max-height="myHeight"
-    >
-      <el-table-column label="序号" align="center" type="index" width="50px">
-        <template slot-scope="scope">
-          <span>{{ scope.$index + (pageNum-1) * pageSize + 1 }}</span>
-        </template>
-      </el-table-column>
-      <el-table-column label="申购单号" min-width="150px" align="center">
-        <template slot-scope="scope">
-          <span>{{ scope.row.orderNumber }}</span>
-        </template>
-      </el-table-column>
-      <el-table-column label="牧场" min-width="90px" align="center">
-        <template slot-scope="scope">
-          <span>{{ scope.row.pastureName }}</span>
-        </template>
-      </el-table-column>
-      <el-table-column label="申购部门" min-width="80px" align="center">
-        <template slot-scope="scope">
-          <span>{{ scope.row.departmentName }}</span>
-        </template>
-      </el-table-column>
-
-      <el-table-column label="申购人" min-width="80px" align="center">
-        <template slot-scope="scope">
-          <span>{{ scope.row.empname }}</span>
-        </template>
-      </el-table-column>
-      <el-table-column label="申购日期" sortable prop="inputTime" min-width="80px" align="center" />
-      <el-table-column label="审核状态" min-width="80px" align="center" :formatter="statue" />
-      <el-table-column label="操作" align="center" width="250" class-name="small-padding fixed-width" fixed="right">
-        <template slot-scope="{row}">
-          <el-button v-if="isSubscribeSee" type="primary" size="mini" @click="form_see(row)">查看</el-button>
-          <el-button v-if="row.statue == 4||row.statue == 6||row.statue == 8" style="display:inline-block" type="success" size="mini" @click="form_edit(row)">编辑</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="form_edit(row)">编辑</el-button>
-          <!-- 库管 -->
-          <el-button v-if="isSubscribeExamineKG && row.statue == 2" style="display:inline-block" type="success" size="mini" @click="handleExamine(row)">审核1</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine(row)">审核1</el-button>
-
-          <!-- 设备 -->
-          <el-button v-if="isSubscribeExamineSBZG && row.statue == 3" style="display:inline-block" type="success" size="mini" @click="handleExamine22(row)">审核2</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine22(row)">审核2</el-button>
-
-          <!-- 主管 -->
-          <el-button v-if="isSubscribeExamineZG && row.statue == 9" style="display:inline-block" type="success" size="mini" @click="handleExamine2(row)">审核3</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine2(row)">审核3</el-button>
-
-
-
-
-          <!-- 场长 -->
-          <el-button v-if=" row.priceClass  == 1 && row.statue == 5" style="display:inline-block" type="success" size="mini" @click="handleExamine33(row)">审核4</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine33(row)">审核5</el-button>
-          
-
-
-
-          <!-- 采购 -->
-          <el-button v-if="(isSubscribeExamineCG && row.statue == 11 && row.priceClass == 1) || (isSubscribeExamineCG && row.statue == 5 && row.priceClass == 0)" style="display:inline-block" type="success" size="mini" @click="handleExamine3(row)">审核5</el-button>
-          <el-button v-else style="display:none" type="success" size="mini" @click="handleExamine3(row)">审核5</el-button>
-          <el-button v-if="isSubscribeDelete && (row.statue == 4||row.statue == 6||row.statue == 8||row.statue == 12)" style="display:inline-block" type="danger" size="mini" @click="form_delete(row)">删除</el-button>
-
-
-
-          <el-button v-else style="display:none" type="danger" size="mini" @click="form_delete(row)">删除</el-button>
-        </template>
-      </el-table-column>
-    </el-table>
-    <pagination v-show="total>0" :total="total" :page.sync="getdataListParm.offset" :limit.sync="getdataListParm.pagecount" @pagination="get_table_data" />
-    <!-- 弹出层新增or修改 -->
-    <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisible" :close-on-click-modal="false" width="90%">
-      <div class="app-container">
-        <el-form
-          ref="createTemp"
-          :rules="rules"
-          :model="createTemp"
-          label-position="right"
-          label-width="100px"
-          style="width: 90%;margin:0 auto;"
-        >
-          <el-row>
-            <el-col :span="8">
-              <el-form-item label="申购单号:" prop="orderNumber">
-                <el-input ref="orderNumber" v-model="createTemp.orderNumber" disabled />
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="牧场:" prop="pastureId">
-                <el-select v-model="createTemp.pastureId" placeholder="牧场" class="filter-item" style="width:100%" :disabled="dialogStatus==='update'" @change="changePasture">
-                  <el-option v-for="item in findAllPasture" :key="item.id" :label="item.name" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="申购部门:" prop="departmentId">
-                <el-select v-model="createTemp.departmentId" placeholder="申购部门" class="filter-item" style="width:100%" :disabled="dialogStatus==='update'" @change="changeDepart">
-                  <el-option v-for="item in createDepartList" :key="item.id" :label="item.name" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-          </el-row>
-          <el-row>
-            <el-col :span="8">
-              <el-form-item label="申购人:" prop="employeId">
-                <el-select v-model="createTemp.employeId" placeholder="申购人" class="filter-item" style="width:100%" :disabled="dialogStatus==='update'">
-                  <el-option v-for="item in findAllEmploye" :key="item.id" :label="item.name" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="申购日期:" prop="createTime">
-                <el-date-picker v-model="createTemp.createTime" :picker-options="pickerOptions" type="date" placeholder="申购日期" format="yyyy-MM-dd" value-format="yyyy-MM-dd" style="width:100%" :disabled="dialogStatus==='update'" />
-              </el-form-item>
-            </el-col>
-            <el-col v-if="dialogStatus==='create'" :span="8">
-              <el-form-item label="线上采购:" prop="providerId">
-                <el-select v-model="createTemp.providerId" placeholder="线上采购" clearable class="filter-item" style="width:100%" @change="changeProvider">
-                  <el-option v-for="item in onlineSubscriptionList" :key="item.id" :label="item.providerName" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-            <el-col v-if="dialogStatus==='update'" :span="8">
-              <el-form-item label="线上采购:" prop="providerName">
-                <el-input ref="providerName" v-model="createTemp.providerName" disabled />
-              </el-form-item>
-            </el-col>
-
-          </el-row>
-          <el-row>
-            <el-col :span="16">
-              <el-form-item label="备件:" prop="partCode">
-                <el-autocomplete
-                  v-model="createTemp.partCode"
-                  value-key="name"
-                  class="inline-input"
-                  :fetch-suggestions="sparePartSearch"
-                  placeholder="请输入备件编号或备件名称或备件规格"
-                  style="width:100%"
-                  @select="handleSelectSparePart"
-                >
-                  <template slot-scope="{ item }">
-                    <b>备件编号:</b><div class="name" style="display: inline;">{{ item.partCode }}</div>&nbsp;
-                    |  &nbsp;<b>备件名称:</b><span class="addr">{{ item.partName }}</span>&nbsp;
-                    |  &nbsp;<b>备件规格:</b><span class="addr">{{ item.specification }}</span>
-                  </template>
-                </el-autocomplete>
-              </el-form-item>
-            </el-col>
-          </el-row>
-        </el-form>
-        <el-table
-          :key="tableKey"
-          v-loading="listLoading"
-          element-loading-text="给我一点时间"
-          :data="listAdd"
-          border
-          fit
-          highlight-current-row
-          style="width: 100%;margin-bottom:30px"
-          :row-style="rowStyle"
-          :cell-style="cellStyle"
-          class="elTable"
-        >
-          <!-- table表格 -->
-          <el-table-column label="序号" align="center" type="index" width="50px" />
-          <el-table-column label="备件编号" prop="partCode" align="center" min-width="90">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partCode }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件名称" prop="partName" align="center" min-width="90">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件规格" prop="specification" min-width="80px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.specification }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件图片" prop="picpath" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <el-popover placement="right" title="" trigger="hover">
-                <img v-if="scope.row.picpath !== ''" :src="scope.row.picpath">
-                <img v-if="scope.row.picpath !== ''" slot="reference" :src="scope.row.picpath" :alt="scope.row.srcpath" style="height: 100px;width:100px;">
-              </el-popover>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件品牌" prop="brand" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span v-if="dialogStatus==='create'">{{ scope.row.brandName }}</span>
-              <span v-if="dialogStatus==='update'">{{ scope.row.brandName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="计量单位" prop="unit" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span>{{ scope.row.unit }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="现有库存" prop="reportery" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span>{{ scope.row.reportery }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="价格" prop="price" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span v-if="createTemp.providerId == ''">{{ scope.row.price }}</span>
-              <el-form v-else :model="scope.row" :rules="rules">
-                <el-form-item prop="price">
-                  <el-input v-model="scope.row.price" style="margin-top:15px" />
-                </el-form-item>
-              </el-form>
-            </template>
-          </el-table-column>
-          <el-table-column label="申购数量" min-width="120px" align="center" valign="middle">
-            <template slot-scope="scope">
-              <el-form :model="scope.row" :rules="rules">
-                <el-form-item prop="amount">
-                  <el-input v-model="scope.row.amount" style="margin-top:15px" />
-                </el-form-item>
-              </el-form>
-            </template>
-          </el-table-column>
-          <el-table-column label="备注" min-width="110px" align="center" valign="middle">
-            <template slot-scope="scope">
-              <el-input v-model="scope.row.purpose" />
-            </template>
-          </el-table-column>
-          <el-table-column
-            label="操作"
-            align="center"
-            width="100"
-            class-name="small-padding fixed-width"
-            fixed="right"
-          >
-            <template slot-scope="{row}">
-              <a class="del" @click="partDelete(row)">删除</a>
-            </template>
-          </el-table-column>
-        </el-table>
-        <div slot="footer" class="dialog-footer" style="bottom:10px">
-          <el-button type="primary" :disabled="isokDisable" @click="dialogStatus==='create'?add_dialog_save():edit_dialog_save()">保存并关闭</el-button>
-          <el-button @click="dialogFormVisible = false;get_table_data()">取消并关闭</el-button>
-        </div>
-      </div>
-    </el-dialog>
-    <!-- 查看 -->
-    <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisibleSee" :close-on-click-modal="false" width="90%">
-      <div class="app-containerSee">
-        <el-form
-          ref="seeTemp"
-          :rules="rules"
-          :model="seeTemp"
-          label-position="right"
-          label-width="100px"
-          style="width: 90%;margin:0 auto;"
-        >
-          <el-row>
-            <el-col :span="8">
-              <el-form-item label="申购单号:" prop="orderNumber">
-                <el-input ref="orderNumber" v-model="seeTemp.orderNumber" disabled />
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="牧场:" prop="pastureId">
-                <el-select v-model="seeTemp.pastureId" placeholder="牧场" class="filter-item" disabled style="width:100%">
-                  <el-option v-for="item in findAllPasture" :key="item.id" :label="item.name" :value="item.id" />
-                </el-select>
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="申购部门:" prop="departmentName">
-                <el-input ref="departmentName" v-model="seeTemp.departmentName" disabled />
-              </el-form-item>
-            </el-col>
-          </el-row>
-          <el-row>
-            <el-col :span="8">
-              <el-form-item label="申购人:" prop="empname">
-                <el-input ref="empname" v-model="seeTemp.empname" disabled />
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="申购日期:" prop="createTime">
-                <el-date-picker v-model="seeTemp.createTime" :picker-options="pickerOptions" type="date" placeholder="申购日期" format="yyyy-MM-dd" value-format="yyyy-MM-dd" style="width:100%" disabled />
-              </el-form-item>
-            </el-col>
-            <el-col :span="8">
-              <el-form-item label="线上采购:" prop="providerName">
-                <el-input ref="providerName" v-model="seeTemp.providerName" disabled />
-              </el-form-item>
-            </el-col>
-          </el-row>
-        </el-form>
-        <el-table
-          :key="tableKey"
-          v-loading="listLoadingSee"
-          element-loading-text="给我一点时间"
-          :data="listSee"
-          border
-          fit
-          highlight-current-row
-          style="width: 100%;margin-bottom:30px"
-          :row-style="rowStyle"
-          :cell-style="cellStyle"
-          class="elTable"
-          @sort-change="tableSort"
-        >
-          <el-table-column type="index" label="序号" align="center" width="50px" />
-          <el-table-column label="备件编号" prop="partCode" align="center" min-width="90">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partCode }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件名称" prop="partName" align="center" min-width="90">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件规格" prop="specification" min-width="90px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.specification }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件图片" prop="picpath" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <el-popover placement="right" title="" trigger="hover">
-                <img v-if="scope.row.picpath !== ''" :src="scope.row.picpath">
-                <img v-if="scope.row.picpath !== ''" slot="reference" :src="scope.row.picpath" :alt="scope.row.srcpath" style="height: 100px;width:100px;">
-              </el-popover>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件品牌" prop="brandName" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span>{{ scope.row.brandName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="计量单位" prop="unit" align="center" min-width="60">
-            <template slot-scope="scope">
-              <span>{{ scope.row.unit }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="现有库存" sortable prop="storageAmount" align="center" min-width="60" />
-          <el-table-column label="价格" sortable prop="price" align="center" min-width="60" />
-          <el-table-column label="申购数量" sortable prop="amount" align="center" min-width="60" />
-          <el-table-column label="备注" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.purpose }}</span>
-            </template>
-          </el-table-column>
-        </el-table>
-        <el-form
-          ref="seeTemp"
-          :rules="rules"
-          :model="seeTemp"
-          label-position="right"
-          label-width="100px"
-          style="width: 90%;margin:0 auto;"
-        >
-          <el-row>
-            <el-col>
-              <el-form-item label="流程进度" />
-              <el-steps :active="active" align-center finish-status="success">
-                <el-step
-                  v-for="(item,index) in activeList"
-                  :key="index"
-                  :title="item.title"
-                  :status="item.status"
-                >
-                  <template slot="description">
-                    <div class="step-row">
-                      <div>{{ item.name }}&nbsp;&nbsp;{{ item.date }}</div>
-                      <div>{{ item.reason }}</div>
-                    </div>
-                  </template>
-                </el-step>
-              </el-steps>
-            </el-col>
-          </el-row>
-          <el-row>
-            <el-col>
-              <el-form-item label="操作:">
-                <!-- 库管 -->
-                <el-button v-if="isSubscribeExamineKG && seeTemp.statue == 2" type="success" style="display:inline-block" @click="handleExamine(row)">审核1</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine(row)">审核1</el-button>
-               <!-- 设备 -->
-               <el-button v-if="isSubscribeExamineSBZG && seeTemp.statue == 3" type="success" style="display:inline-block" @click="handleExamine22(row)">审核2</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine22(row)">审核2</el-button>
-                <!-- 主管 -->
-                <el-button v-if="isSubscribeExamineZG && seeTemp.statue == 9" type="success" style="display:inline-block" @click="handleExamine2(row)">审核3</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine2(row)">审核3</el-button>
-
-                <!-- 场长 -->
-                <el-button v-if="seeTemp.priceClass  == 1 && seeTemp.statue == 5" type="success" style="display:inline-block" @click="handleExamine33(row)">审核4</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine33(row)">审核5</el-button>
-
-
-                <!-- 采购 -->
-                <el-button v-if="(isSubscribeExamineCG && seeTemp.statue == 11 && seeTemp.priceClass == 1) || (isSubscribeExamineCG && seeTemp.statue == 5 && seeTemp.priceClass == 0)" type="success" style="display:inline-block" @click="handleExamine3(row)">审核5</el-button>
-                <el-button v-else type="success" style="display:none" @click="handleExamine3(row)">审核5</el-button>
- 
-         
-              </el-form-item>
-            </el-col>
-          </el-row>
-        </el-form>
-        <div slot="footer" class="dialog-footer" style="bottom:5px;">
-          <el-button @click="dialogFormVisibleSee = false">关闭</el-button>
-        </div>
-      </div>
-    </el-dialog>
-    <!-- 审核 -->
-    <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisible_Examine" :close-on-click-modal="false" width="30%">
-      <div class="app-examine">
-        <h3 style="width: 100%;margin:0 0 0 5%;line-height:50px;">请确认审核结果:</h3>
-        <el-form ref="examineTemp" :rules="rules" :model="examineTemp" label-position="right" style="width: 50%;margin:0 auto;">
-          <el-row style="width:88%;height:150px;margin:0 auto;">
-            <el-col :span="20">
-              <el-form-item>
-                <el-radio-group v-model="examineTemp.statue" @change="changeStatue">
-                  <el-radio :label="1" checked>通过</el-radio>
-                  <el-radio :label="2">不通过</el-radio>
-                </el-radio-group>
-              </el-form-item>
-            </el-col>
-            <el-col v-if="statueReason" :span="20">
-              <el-input v-model="examineTemp.workflowNote" type="textarea" :autosize="{ minRows: 2, maxRows: 4}" placeholder="请输入不通过原因" />
-            </el-col>
-          </el-row>
-        </el-form>
-      </div>
-      <div slot="footer" class="dialog-footer">
-        <el-button v-if="dialogStatus==='examine'" type="primary" :disabled="isokDisable" @click="createExamineData()">确认</el-button>
-        <el-button v-if="dialogStatus==='examine22'" type="primary" :disabled="isokDisable" @click="createExamineData22()">确认</el-button>
-        <el-button v-if="dialogStatus==='examine2'" type="primary" :disabled="isokDisable" @click="createExamineData2()">确认</el-button>
-        <el-button v-if="dialogStatus==='examine33'" type="primary" :disabled="isokDisable" @click="createExamineData33()">确认</el-button>
-        <el-button v-if="dialogStatus==='examine3'" type="primary" :disabled="isokDisable" @click="createExamineData3()">确认</el-button>
-        <el-button @click="dialogFormVisible_Examine = false;">关闭</el-button>
-      </div>
-    </el-dialog>
-  </div>
-</template>
-
-<script>
-// / 引入
-import { GetDataByName, GetDataByNames, PostDataByName, ExecDataByConfig, checkButtons, failproccess, GetAccount } from '@/api/common'
-import waves from '@/directive/waves' // waves directive
-import { parseTime, sortChange, json2excel } from '@/utils/index.js'
-// eslint-disable-next-line no-unused-vars
-import { validateEMail } from '@/utils/validate.js'
-import Pagination from '@/components/Pagination' // secondary package based on el-pagination
-import { MessageBox } from 'element-ui'
-import Cookies from 'js-cookie'
-import { getToken } from '@/utils/auth'
-export default {
-  name: 'Subscribe',
-  components: { Pagination },
-  directives: { waves },
-  data() {
-    return {
-      myHeight:document.documentElement.clientHeight - 85- 150,
-      isSubscribeAdd: [], isSubscribeExamineSBZG:[],isSubscribeTemplate: [], isSubscribeImport: [], isSubscribeExport: [], isSubscribeSee: [], isSubscribeDelete: [], isSubscribeExamineKG: [], isSubscribeExamineCG: [], isSubscribeExamineZG: [],
-      isokDisable: false,
-      findAllProvider: [],
-      findAllPasture: [],
-      findAllDepart: [],
-      findAllEmploye: [],
-      onlineSubscriptionList: [], createDepartList: [], edit: 0,
-      requestParams: [
-        { name: 'findAllProvider', offset: 0, pagecount: 0, params: [] },
-        { name: 'findAllPasture', offset: 0, pagecount: 0, returntype: 'Map', parammaps: { 'id': Cookies.get('pastureid') }},
-        { name: 'findAllEmploye', offset: 0, pagecount: 0, parammaps: { 'pastureId': Cookies.get('pastureid') }},
-        { name: 'getflexProviderList', offset: 0, pagecount: 0, parammaps: {}}
-      ],
-      getDepartParam: {
-        name: 'findAllDepart', offset: 0, pagecount: 0,
-        parammaps: { 'pastureId': Cookies.get('pastureid'), 'eId': Cookies.get('employeid') }
-      },
-      pickerOptions: {
-        disabledDate(time) {
-          return time.getTime() > Date.now()// 当天之前的时间可选
-        }
-      },
-      textMap: {
-        update: '编辑',
-        create: '新增',
-        see: '查看',
-        examine: '审核1',
-        examine22: '审核2',
-        examine2: '审核3',
-        examine33: '审核4',
-        examine3: '审核5'
-      },
-      rules: {
-        equipmentName: [{ required: true, message: '必填', trigger: 'blur' }]
-      },
-      rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
-      cellStyle: { padding: 0 + 'px' },
-      statues: [{ id: '0', name: '审核中' }, { id: '1', name: '已通过' }, { id: '2', name: '未通过' }],
-      radioAll: '全部',
-      getdataListParm: {
-        name: 'getpartpurchaseList',
-        page: 1,
-        offset: 1,
-        pagecount: 10,
-        returntype: 'Map',
-        parammaps: {
-          pastureName: Cookies.get('pasturename'),
-          empId: Cookies.get('employeid'),
-          orderNumber: '',
-          stuteSH: '',
-          departmentId: '',
-          inputDatetime: '',
-          startTime: '',
-          stopTime: '',
-          loginId: Cookies.get('employeid'),
-          menu: 'Subscribe',
-          logindeptId: Cookies.get('departmentid'),
-          loginpastureId: Cookies.get('pastureid')
-        }
-      },
-      tableKey: 0,
-      listLoading: true,
-      total: 0,
-      list: [],
-      dialogStatus: '',
-      dialogFormVisible: false,
-      dialogFormVisibleSee: false,
-      listLoadingSee: true,
-      listSee: [],
-      totalSee: 0,
-      seeTemp: {},
-      getdataListSee: {
-        name: 'getpartpurchaseBybig',
-        returntype: 'Map',
-        parammaps: {}
-      },
-      createTemp: {
-        pastureId: this.$store.state.user.pastureid,
-        departmentId: this.$store.state.user.departmentid,
-        employeId: this.$store.state.user.employeid,
-        createTime: parseTime(new Date(), '{y}-{m}-{d}'),
-        providerId: ''
-      },
-      requestSparePart: {
-        name: 'getPartsListSG',
-        page: 1,
-        offset: 1,
-        pagecount: 20,
-        returntype: 'Map',
-        parammaps: {
-          pastureId: Cookies.get('pastureid')
-        }
-      },
-      getParmCreateNumber: {
-        name: 'autoCreatCode',
-        page: 0,
-        offset: 0,
-        pagecount: 0,
-        returntype: 'Map',
-        parammaps: {
-          pastureId: Cookies.get('pastureid'),
-          codeType: 'SG'
-        }
-      },
-      getParmCreateAmount: {
-        name: 'getPartsListSGv2',
-        page: 0,
-        offset: 0,
-        pagecount: 0,
-        returntype: 'Map',
-        parammaps: {
-          pastureId: Cookies.get('pastureid')
-        }
-      },
-      listAdd: [],
-      postDataPramas: {},
-      requestParam: {},
-      dialogFormVisible_Examine: false,
-      examineTemp: {
-        statue: 1
-      },
-      statueReason: false,
-      activeList: [],
-      active: 3,
-      buttons: [],
-      downloadParam: {},
-      isPercentage: false,
-      percentage: 1,
-      pending: {
-        total: 0,
-        getdataListParm: {
-          name: 'getpartpurchaseWebListNO', page: 1, offset: 1, getTotal: 'total3', pagecount: 10, returntype: 'Map',
-          parammaps: {
-            loginId: Cookies.get('employeid'),
-            menu: 'Subscribe', logindeptId: Cookies.get('departmentid'), loginpastureId: Cookies.get('pastureid'),
-            empId: Cookies.get('employeid'), pastureId: Cookies.get('pastureid'), deptId: Cookies.get('departmentid')
-          }
-        }
-      }
-    }
-  },
-
-  created() {
-    const that = this
-    GetDataByName({ 'name': 'getUserPCButtons', 'parammaps': { 'jwt_username': Cookies.get('name') }}).then(response => {
-      that.buttons = response.data.list
-      that.get_auto_buttons()
-    })
-    this.get_select_list()
-    this.get_table_data()
-    this.getPendingList()
-  },
-
-  methods: {
-    tableSort(column) {
-      sortChange(column, this.listSee)
-    },
-    get_auto_buttons() {
-      // 新增
-      const SubscribeAdd = 'customs:subscribe:add'
-      const isSubscribeAdd = checkButtons(this.$store.state.user.buttons, SubscribeAdd)
-      this.isSubscribeAdd = isSubscribeAdd
-      // 模板
-      // eslint-disable-next-line no-redeclare
-      const SubscribeTemplate = 'customs:subscribe:template'
-      const isSubscribeTemplate = checkButtons(this.$store.state.user.buttons, SubscribeTemplate)
-      this.isSubscribeTemplate = isSubscribeTemplate
-      // 导入
-      // eslint-disable-next-line no-redeclare
-      const SubscribeImport = 'customs:subscribe:import'
-      const isSubscribeImport = checkButtons(this.$store.state.user.buttons, SubscribeImport)
-      this.isSubscribeImport = isSubscribeImport
-      // 导出
-      // eslint-disable-next-line no-redeclare
-      const SubscribeExport = 'customs:subscribe:export'
-      const isSubscribeExport = checkButtons(this.$store.state.user.buttons, SubscribeExport)
-      this.isSubscribeExport = isSubscribeExport
-      // 查看
-      // eslint-disable-next-line no-redeclare
-      const SubscribeSee = 'customs:subscribe:see'
-      const isSubscribeSee = checkButtons(this.$store.state.user.buttons, SubscribeSee)
-      this.isSubscribeSee = isSubscribeSee
-      // 删除
-      // eslint-disable-next-line no-redeclare
-      const SubscribeDelete = 'customs:subscribe:delete'
-      const isSubscribeDelete = checkButtons(this.$store.state.user.buttons, SubscribeDelete)
-      this.isSubscribeDelete = isSubscribeDelete
-      // 库管审核
-      // eslint-disable-next-line no-redeclare
-      const SubscribeExamineKG = 'customs:subscribe:examineKG'
-      const isSubscribeExamineKG = checkButtons(this.$store.state.user.buttons, SubscribeExamineKG)
-      this.isSubscribeExamineKG = isSubscribeExamineKG
-// 设备主管审核
-      const SubscribeExamineSBZG = 'customs:subscribe:examineSBZG'
-      const isSubscribeExamineSBZG = checkButtons(this.$store.state.user.buttons, SubscribeExamineSBZG)
-      this.isSubscribeExamineSBZG = isSubscribeExamineSBZG
-
-
-      // 主管审核
-      // eslint-disable-next-line no-redeclare
-      const SubscribeExamineZG = 'customs:subscribe:examineZG'
-      const isSubscribeExamineZG = checkButtons(this.$store.state.user.buttons, SubscribeExamineZG)
-      this.isSubscribeExamineZG = isSubscribeExamineZG
-      // 采购审核
-      // eslint-disable-next-line no-redeclare
-      const SubscribeExamineCG = 'customs:subscribe:examineCG'
-      const isSubscribeExamineCG = checkButtons(this.$store.state.user.buttons, SubscribeExamineCG)
-      this.isSubscribeExamineCG = isSubscribeExamineCG
-    },
-    getPendingList() {
-      this.pending.getdataListParm.parammaps.pastureName = this.getdataListParm.parammaps.pastureName
-      this.pending.getdataListParm.parammaps.orderNumber = this.getdataListParm.parammaps.orderNumber
-      this.pending.getdataListParm.parammaps.stuteSH = this.getdataListParm.parammaps.stuteSH
-      this.pending.getdataListParm.parammaps.departmentId = this.getdataListParm.parammaps.departmentId
-      this.pending.getdataListParm.parammaps.inputDatetime = this.getdataListParm.parammaps.inputDatetime
-      this.pending.getdataListParm.parammaps.loginId = this.getdataListParm.parammaps.loginId
-      this.pending.getdataListParm.parammaps.menu = this.getdataListParm.parammaps.menu
-      this.pending.getdataListParm.parammaps.logindeptId = this.getdataListParm.parammaps.logindeptId
-      this.pending.getdataListParm.parammaps.loginpastureId = this.getdataListParm.parammaps.loginpastureId
-      this.pending.getdataListParm.parammaps.empId = this.getdataListParm.parammaps.empId
-      this.pending.getdataListParm.parammaps.pastureId = Cookies.get('pastureid')
-      this.pending.getdataListParm.parammaps.deptId = Cookies.get('departmentid')
-      GetDataByName(this.pending.getdataListParm).then(response => {
-        this.pending.total = response.data.total3
-      })
-    },
-    get_table_data() {
-      this.listLoading = true
-      if (this.$refs['inputDatetime'] !== undefined && this.$refs['inputDatetime'].value !== null) {
-        this.getdataListParm.parammaps.startTime = this.$refs['inputDatetime'].value[0]
-        this.getdataListParm.parammaps.stopTime = this.$refs['inputDatetime'].value[1]
-      } else {
-        this.getdataListParm.parammaps.startTime = ''
-        this.getdataListParm.parammaps.stopTime = ''
-      }
-      GetDataByName(this.getdataListParm).then(response => {
-        if (response.data.list !== null) {
-          console.log('table数据', response.data.list)
-          this.list = response.data.list
-          this.pageNum = response.data.pageNum
-          this.pageSize = response.data.pageSize
-        } else {
-          this.list = []
-        }
-        this.total = response.data.total
-
-        setTimeout(() => {
-          this.listLoading = false
-        }, 100)
-      })
-    },
-    changeAll() {
-      console.log(this.radioAll)
-      if (this.radioAll === '全部') {
-        this.getdataListParm.name = 'getpartpurchaseList'
-        this.getdataListParm.offset = 1
-        this.getdataListParm.parammaps = {
-          pastureName: Cookies.get('pasturename'),
-          orderNumber: '',
-          departmentId: '',
-          inputDatetime: '',
-          startTime: '',
-          stopTime: '',
-          loginId: Cookies.get('employeid'),
-          menu: 'Subscribe',
-          logindeptId: Cookies.get('departmentid'),
-          loginpastureId: Cookies.get('pastureid')
-        }
-        this.get_table_data()
-      } else if (this.radioAll === '待处理') {
-        this.getdataListParm.name = 'getpartpurchaseWebListNO'
-        this.getdataListParm.offset = 1
-        this.getdataListParm.parammaps = {
-          pastureName: this.getdataListParm.parammaps.pastureName,
-          orderNumber: this.getdataListParm.parammaps.orderNumber,
-          stuteSH: this.getdataListParm.parammaps.stuteSH,
-          departmentId: this.getdataListParm.parammaps.departmentId,
-          inputDatetime: this.getdataListParm.parammaps.inputDatetime,
-          startTime: this.getdataListParm.parammaps.startTime,
-          stopTime: this.getdataListParm.parammaps.stopTime,
-          loginId: Cookies.get('employeid'),
-          menu: 'Subscribe',
-          logindeptId: Cookies.get('departmentid'),
-          loginpastureId: Cookies.get('pastureid'),
-          empId: Cookies.get('employeid'),
-          pastureId: Cookies.get('pastureid'),
-          deptId: Cookies.get('departmentid')
-        }
-        this.get_table_data()
-      } else if (this.radioAll === '已处理') {
-        this.getdataListParm.name = 'getpartpurchaseWebList'
-        this.getdataListParm.offset = 1
-        this.getdataListParm.parammaps = {
-          pastureName: this.getdataListParm.parammaps.pastureName,
-          orderNumber: this.getdataListParm.parammaps.orderNumber,
-          stuteSH: this.getdataListParm.parammaps.stuteSH,
-          departmentId: this.getdataListParm.parammaps.departmentId,
-          inputDatetime: this.getdataListParm.parammaps.inputDatetime,
-          startTime: this.getdataListParm.parammaps.startTime,
-          stopTime: this.getdataListParm.parammaps.stopTime,
-          loginId: Cookies.get('employeid'),
-          menu: 'Subscribe',
-          logindeptId: Cookies.get('departmentid'),
-          loginpastureId: Cookies.get('pastureid'),
-          empId: Cookies.get('employeid'),
-          pastureId: Cookies.get('pastureid'),
-          deptId: Cookies.get('departmentid')
-        }
-        this.get_table_data()
-      }
-    },
-    statue: function(cellValue) {
-      // console.log(cellValue.isZeroStock)
-      if (cellValue.statue == 2) {
-        return '审核中'
-      } else if (cellValue.statue == 3) {
-        return '审核中'
-      } else if (cellValue.statue == 4) {
-        return '未通过'
-      } else if (cellValue.statue == 5) {
-        return '审核中'
-      } else if (cellValue.statue == 6) {
-        return '未通过'
-      } else if (cellValue.statue == 7) {
-        return '已通过'
-      } else if (cellValue.statue == 8) {
-        return '未通过'
-      } else if (cellValue.statue == 9) {
-        return '审核中'
-      } else if (cellValue.statue == 10) {
-        return '未通过'
-      } else if (cellValue.statue == 11) {
-        return '审核中'
-      } else if (cellValue.statue == 12) {
-        return '未通过'
-      }
-    },
-    form_search() {
-      console.log('点击了table搜索')
-      if (this.getdataListParm.parammaps.inputDatetime === null) {
-        this.getdataListParm.parammaps.inputDatetime = ''
-      }
-      this.getdataListParm.offset = 1
-      this.listLoading = true
-      this.get_table_data()
-      this.getPendingList()
-    },
-    resetCreateTemp() {
-      this.createTemp.pastureId = parseInt(Cookies.get('pastureid'))
-      this.createTemp.departmentId = parseInt(Cookies.get('departmentid'))
-      this.createTemp.employeId = parseInt(Cookies.get('employeid'))
-      this.createTemp.createTime = parseTime(new Date(), '{y}-{m}-{d}')
-      this.createTemp.orderNumber = ''
-      this.createTemp.providerId = ''
-      this.listAdd = []
-    },
-    form_add() {
-      this.resetCreateTemp()
-      this.edit = 1
-      this.getDepartParam.parammaps.pastureId = this.createTemp.pastureId
-      this.getCreateDepartDownList()
-      this.dialogStatus = 'create'
-      this.dialogFormVisible = true
-      this.$nextTick(() => {
-        this.$refs['createTemp'].clearValidate()
-      })
-      this.getCreateNumber()
-    },
-    getCreateNumber() {
-      GetDataByName(this.getParmCreateNumber).then(response => {
-        this.$nextTick(() => {
-          console.log('新增申购单号', response.data.list[0].orderCode)
-          this.createTemp.orderNumber = response.data.list[0].orderCode
-          this.$forceUpdate()
-        })
-      })
-    },
-    // getPartsListSG
-    changeProvider(item) {
-      if (item !== '') {
-        this.createTemp.providerName = this.onlineSubscriptionList.find(obj => obj.id == item).providerName
-      }
-      this.listAdd = []
-    },
-    sparePartSearch(queryString, cb) {
-      console.log('备件模糊查询输入值', queryString)
-      if (this.createTemp.providerId == '') {
-        this.requestSparePart.name = 'getPartsListSG'
-      } else {
-        this.requestSparePart.name = 'getPartsListSGFlex'
-        this.requestSparePart.parammaps.providerId = this.createTemp.providerId
-        this.requestSparePart.parammaps.providerName = this.createTemp.providerName
-      }
-      this.requestSparePart.parammaps['partCode'] = queryString
-      GetDataByName(this.requestSparePart).then(response => {
-        console.log('备件模糊查询搜索data', response.data.list)
-        if (response.data.list == null) {
-          cb([])
-        } else {
-          cb(response.data.list)
-        }
-      })
-    },
-    handleSelectSparePart(item) {
-      console.log('备件模糊查询选中值', item)
-      console.log('备件模糊查询选中值', item.partId)
-      console.log(this.listAdd)
-      if (this.createTemp.providerId == '') {
-        if (this.listAdd.length > 0) {
-          // eslint-disable-next-line no-redeclare
-          if (this.listAdd.find(obj => obj.partId == item.partId)) {
-            this.$message({ type: 'warning', message: '此备件已存在,请重新选择备件' })
-          } else {
-            // this.getParmCreateAmount.parammaps.partCode = item.partCode
-            // GetDataByName(this.getParmCreateAmount).then(response => {
-            //   this.$nextTick(() => {
-            //     console.log('新增根据编号获取备件库存数量', response.data.list[0].reporteryNum)
-            //     item.reportery = response.data.list[0].reporteryNum
-            //     if (item.srcpath !== null && item.picpath) {
-            //       this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-            //       this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-            //     } else {
-            //       item.srcpath = ''
-            //       item.picpath = ''
-            //     }
-            //     this.listAdd.unshift(item)
-            //     this.$forceUpdate()
-            //   })
-            // })
-            this.getParmCreateAmount.parammaps.partCode = item.partCode
-            GetDataByName(this.getParmCreateAmount).then(response => {
-              this.$nextTick(() => {
-                console.log('新增根据编号获取备件库存数量', response.data.list[0])
-                item = response.data.list[0]
-                if (item.srcpath !== null && item.picpath !== null && item.srcpath !== undefined && item.picpath !== undefined) {
-                  this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-                  this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-                } else {
-                  item.srcpath = ''
-                  item.picpath = ''
-                }
-                this.$set(item, 'amount', '')
-                this.$set(item, 'purpose', '')
-                this.listAdd.unshift(item)
-                this.$forceUpdate()
-              })
-            })
-          }
-        } else {
-          // this.getParmCreateAmount.parammaps.partCode = item.partCode
-          // GetDataByName(this.getParmCreateAmount).then(response => {
-          //   this.$nextTick(() => {
-          //     console.log('新增根据编号获取备件库存数量', response.data.list[0].reporteryNum)
-          //     item.reportery = response.data.list[0].reporteryNum
-          //     if (item.srcpath !== null && item.picpath) {
-          //       this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-          //       this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-          //     } else {
-          //       item.srcpath = ''
-          //       item.picpath = ''
-          //     }
-          //     this.listAdd.unshift(item)
-          //     this.$forceUpdate()
-          //   })
-          // })
-          this.getParmCreateAmount.parammaps.partCode = item.partCode
-          GetDataByName(this.getParmCreateAmount).then(response => {
-            this.$nextTick(() => {
-              console.log('新增根据编号获取备件库存数量', response.data.list[0])
-              item = response.data.list[0]
-              if (item.srcpath !== null && item.picpath !== null && item.srcpath !== undefined && item.picpath !== undefined) {
-                this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-                this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-              } else {
-                item.srcpath = ''
-                item.picpath = ''
-              }
-              this.$set(item, 'amount', '')
-              this.$set(item, 'purpose', '')
-              this.listAdd.unshift(item)
-              this.$forceUpdate()
-            })
-          })
-        }
-        this.$forceUpdate()
-      } else {
-        if (this.listAdd.length > 0) {
-          if (this.listAdd.find(obj => obj.partId == item.partId)) {
-            this.$message({ type: 'warning', message: '此备件已存在,请重新选择备件' })
-          } else {
-            if (item.srcpath !== null && item.picpath !== null && item.srcpath !== undefined && item.picpath !== undefined) {
-              this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-              this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-            } else {
-              item.srcpath = ''
-              item.picpath = ''
-            }
-            this.$set(item, 'amount', '')
-            this.$set(item, 'purpose', '')
-            this.listAdd.unshift(item)
-          }
-        } else {
-          if (item.srcpath !== null && item.picpath !== null && item.srcpath !== undefined && item.picpath !== undefined) {
-            this.$set(item, 'srcpath', process.env.VUE_APP_BASE_API + item.srcpath)
-            this.$set(item, 'picpath', process.env.VUE_APP_BASE_API + item.picpath)
-          } else {
-            item.srcpath = ''
-            item.picpath = ''
-          }
-          this.$set(item, 'amount', '')
-          this.$set(item, 'purpose', '')
-          this.listAdd.unshift(item)
-          this.$forceUpdate()
-        }
-        this.$forceUpdate()
-      }
-    },
-    add_dialog_save() {
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['createTemp'].validate(valid => {
-        if (valid) {
-          console.log(this.listAdd)
-          if (this.createTemp.orderNumber == '' || this.createTemp.orderNumber == null || this.createTemp.orderNumber == undefined) {
-            GetDataByName(this.getParmCreateNumber).then(response => {
-              this.$nextTick(() => {
-                console.log('新增申购单号', response.data.list[0].orderCode)
-                this.createTemp.orderNumber = response.data.list[0].orderCode
-                this.$forceUpdate()
-                this.add_dialog_saveSave()
-              })
-            })
-          } else {
-            this.add_dialog_saveSave()
-          }
-        }
-      })
-    },
-    add_dialog_saveSave() {
-      if (this.listAdd.length !== 0) {
-        for (var j = 0; j < this.listAdd.length; j++) {
-          console.log(this.listAdd[j].amount)
-          if (this.listAdd[j].amount == null || this.listAdd[j].amount === '') {
-            this.$message({ type: 'warning', message: '请检查申购数量是否未填写', duration: 2000 })
-            return false
-          } else {
-            var rulesAmount = /^[1-9]\d*$/
-            if (!rulesAmount.test(this.listAdd[j].amount)) {
-              this.$message({ type: 'error', message: '申购数量请输入正整数', duration: 2000 })
-              return false
-            }
-          }
-          if (this.createTemp.providerId !== '') {
-            if (this.listAdd[j].price == '') {
-              this.$message({ type: 'warning', message: '请检查单价是否为空', duration: 2000 })
-              return false
-            } else {
-              if (parseFloat(this.listAdd[j].price) == 0) {
-                this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                return false
-              } else {
-                var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,5})?$/
-                if (rulesPrice.test(this.listAdd[j].price) == false) {
-                  this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                  return false
-                }
-              }
-            }
-          }
-        }
-        this.postDataPramas.common = { 'returnmap': '0' }
-        this.postDataPramas.data = []
-        this.postDataPramas.data[0] = { 'name': 'insertBigPartpurchase', 'type': 'e', 'parammaps': {
-          pastureId: this.createTemp.pastureId,
-          departmentId: this.createTemp.departmentId,
-          orderNumber: this.createTemp.orderNumber,
-          useType: this.createTemp.useType,
-          createTime: this.createTemp.createTime,
-          employeId: this.createTemp.employeId,
-          providerId: this.createTemp.providerId
-        }}
-        // eslint-disable-next-line no-irregular-whitespace
-        this.postDataPramas.data[1] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.listAdd }}
-        this.postDataPramas.data[1].children = []
-        this.postDataPramas.data[1].children[0] = { 'name': 'insertPartpurchase', 'type': 'e', 'parammaps': {
-          bigId: '@insertBigPartpurchase.LastInsertId',
-          pastureId: '@insertSpotList.pastureId',
-          partId: '@insertSpotList.partId',
-          partCode: '@insertSpotList.partCode',
-          partName: '@insertSpotList.partName',
-          specification: '@insertSpotList.specification',
-          unit: '@insertSpotList.unit',
-          brandId: '@insertSpotList.brandId',
-          storageAmount: '@insertSpotList.reportery',
-          purpose: '@insertSpotList.purpose',
-          amount: '@insertSpotList.amount',
-          price: '@insertSpotList.price',
-          contractId: '@insertSpotList.contractId'
-        }}
-        ExecDataByConfig(this.postDataPramas).then(response => {
-          console.log('新增保存发送参数', this.postDataPramas)
-          if (response.msg === 'fail') {
-            this.$notify({
-              title: '保存失败',
-              message: response.data,
-              type: 'warning',
-              duration: 2000
-            })
-          } else {
-            this.dialogFormVisible = false
-            this.getdataListParm.parammaps.inputDatetime = ''
-            this.get_table_data()
-            this.getPendingList()
-            this.$notify({
-              title: '',
-              message: '保存成功',
-              type: 'success',
-              duration: 2000
-            })
-          }
-        })
-        return true
-      } else {
-        this.$message({
-          title: '',
-          message: '请选择备件',
-          type: 'warning',
-          duration: 2000
-        })
-        return false
-      }
-    },
-    partDelete(row) {
-      console.log(this.listAdd)
-      MessageBox.confirm('设备名称:' + row.partName, '确认删除?', {
-        confirmButtonText: '确认',
-        cancelButtonText: '取消',
-        type: 'warning'
-      }).then(() => {
-        // console.log(this.list2)
-        for (var i = 0; i < this.listAdd.length; i++) {
-          console.log(this.listAdd[i])
-          if (this.listAdd[i].id === row.id) {
-            var listAddIndex = this.listAdd.indexOf(this.listAdd[i])
-          }
-          if (listAddIndex > -1) {
-            this.listAdd.splice(listAddIndex, 1)
-            return
-          }
-        }
-      })
-    },
-    // 查看
-    form_see(row) {
-      this.dialogStatus = 'see'
-      this.dialogFormVisibleSee = true
-      this.seeTemp = Object.assign({}, row)
-      console.log('查看上方数据(从table读取)', this.seeTemp)
-      this.listSee = []
-      this.getdataListSee.parammaps.id = this.seeTemp.id
-      this.getSeeList()
-      // 流程图
-      var reason = '未通过原因:' + this.seeTemp.workflowNote
-
-
-     
-      if (this.seeTemp.priceClass === 1) {
-
-          if (this.seeTemp.statue === 2) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核' },{ title: '设备主管审核' }, { title: '供应主管审核' }, { title: '场长审核' },{ title: '采购审核' }]
-            this.active = 1
-          } else if (this.seeTemp.statue === 3) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },{ title: '设备主管审核' }, { title: '供应主管审核' }, { title: '场长审核' }, { title: '采购审核' }]
-            this.active = 2
-          } else if (this.seeTemp.statue === 4) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson, status: 'error', reason: reason },{ title: '设备主管审核' }, { title: '供应主管审核' }, { title: '场长审核' },{ title: '采购审核' }]
-            this.active = 2
-          } else if (this.seeTemp.statue === 9) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson },{ title: '供应主管审核' }, { title: '场长审核' },{ title: '采购审核' }]
-            this.active = 3
-          } else if (this.seeTemp.statue === 10) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson, status: 'error', reason: reason  }, { title: '供应主管审核' }, { title: '场长审核' },{ title: '采购审核' }]
-            this.active = 3
-          }  else if (this.seeTemp.statue === 5) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson   }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson }, { title: '场长审核' }, { title: '采购审核' }]
-            this.active = 4
-          } else if (this.seeTemp.statue === 6) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson, status: 'error', reason: reason }, { title: '场长审核' }, { title: '采购审核' }]
-            this.active = 4
-
-          
-          }  else if (this.seeTemp.statue === 11) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson   }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson }, { title: '场长审核', date: this.seeTemp.fielddate, name: this.seeTemp.fieldPerson }, { title: '采购审核' }]
-            this.active = 5
-          } else if (this.seeTemp.statue === 12) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson, status: 'error', reason: reason }, { title: '场长审核' , date: this.seeTemp.fielddate, name: this.seeTemp.fieldPerson, status: 'error', reason: reason }, { title: '采购审核' }]
-            this.active = 5
-
-
-
-
-
-            
-          } else if (this.seeTemp.statue === 7) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson }, { title: '场长审核', date: this.seeTemp.fielddate, name: this.seeTemp.fieldPerson }, { title: '采购审核', date: this.seeTemp.CGChargedate, name: this.seeTemp.CGChargePerson }]
-            this.active = 6
-          } else if (this.seeTemp.statue === 8) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson }, { title: '场长审核', date: this.seeTemp.fielddate, name: this.seeTemp.fieldPerson },{ title: '采购审核', date: this.seeTemp.CGChargedate, name: this.seeTemp.CGChargePerson, status: 'error', reason: reason }]
-            this.active = 6
-          }
-      } else {
-        if (this.seeTemp.statue === 2) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核' },{ title: '设备主管审核' }, { title: '供应主管审核' },  { title: '采购审核' }]
-            this.active = 1
-          } else if (this.seeTemp.statue === 3) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },{ title: '设备主管审核' }, { title: '供应主管审核' },   { title: '采购审核' }]
-            this.active = 2
-          } else if (this.seeTemp.statue === 4) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson, status: 'error', reason: reason },{ title: '设备主管审核' }, { title: '供应主管审核' },{ title: '采购审核' }]
-            this.active = 2
-          } else if (this.seeTemp.statue === 9) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson },{ title: '供应主管审核' },  { title: '采购审核' }]
-            this.active = 3
-          } else if (this.seeTemp.statue === 10) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson, status: 'error', reason: reason  }, { title: '供应主管审核' },  { title: '采购审核' }]
-            this.active = 3
-          }  else if (this.seeTemp.statue === 5) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson   }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson },   { title: '采购审核' }]
-            this.active = 4
-          } else if (this.seeTemp.statue === 6) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson },  { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson, status: 'error', reason: reason },   { title: '采购审核' }]
-            this.active = 4
-
-       
-
-
-
-
-
-            
-          } else if (this.seeTemp.statue === 7) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson },   { title: '采购审核', date: this.seeTemp.CGChargedate, name: this.seeTemp.CGChargePerson }]
-            this.active = 6
-          } else if (this.seeTemp.statue === 8) {
-            this.activeList = [{ title: '备件申购', date: this.seeTemp.inputTime, name: this.seeTemp.empname }, { title: '库管审核', date: this.seeTemp.KGChargedate, name: this.seeTemp.KGChargePerson }, { title: '设备主管审核', date: this.seeTemp.equipmentdate, name: this.seeTemp.equipmentPerson }, { title: '供应主管审核', date: this.seeTemp.chargeDate, name: this.seeTemp.chargePerson },  { title: '采购审核', date: this.seeTemp.CGChargedate, name: this.seeTemp.CGChargePerson, status: 'error', reason: reason }]
-            this.active = 6
-          }
-      }
-
-      
-    },
-    getSeeList() {
-      GetDataByName(this.getdataListSee).then(response => {
-        if (response.data.list !== null) {
-          console.log('查看下方table数据', response.data.list)
-          this.listSee = response.data.list
-          this.listAdd = response.data.list
-          for (let i = 0; i < response.data.list.length; i++) {
-            if (response.data.list[i].srcpath !== null && response.data.list[i].picpath !== null && response.data.list[i].srcpath !== undefined && response.data.list[i].picpath !== undefined) {
-              console.log(process.env.VUE_APP_BASE_API + response.data.list[i].srcpath, '=======1')
-              this.listSee[i].srcpath = process.env.VUE_APP_BASE_API + response.data.list[i].srcpath
-              this.listSee[i].picpath = process.env.VUE_APP_BASE_API + response.data.list[i].picpath
-              this.listAdd[i].srcpath = this.listSee[i].srcpath
-              this.listAdd[i].picpath = this.listSee[i].picpath
-              // this.seeTemp.providerName = response.data.list.providerName
-              this.pageNumSee = response.data.pageNum
-              this.pageSizeSee = response.data.pageSize
-            } else {
-              this.listSee[i].srcpath = ''
-              this.listSee[i].picpath = ''
-              this.listAdd[i].srcpath = ''
-              this.listAdd[i].picpath = ''
-            }
-            console.log(process.env.VUE_APP_BASE_API)
-            console.log(this.listSee, '============')
-          }
-        }
-        if (response.data.total) {
-          this.totalSee = response.data.total
-        }
-        setTimeout(() => {
-          this.listLoadingSee = false
-        }, 100)
-      })
-    },
-    form_edit(row) {
-      this.edit = 0
-      this.getDepartParam.parammaps.pastureId = row.pastureId
-      this.getCreateDepartDownList()
-      if (row.providerId == undefined) {
-        row.providerId = ''
-        row.providerName = ''
-      }
-      this.createTemp = Object.assign({}, row) // copy obj
-      this.dialogStatus = 'update'
-      this.dialogFormVisible = true
-      this.$nextTick(() => {
-        this.$refs['createTemp'].clearValidate()
-      })
-      this.getdataListSee.parammaps.id = this.createTemp.id
-      this.getSeeList()
-    },
-    edit_dialog_save() {
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['createTemp'].validate(valid => {
-        if (valid) {
-          this.edit_dialog_saveSave()
-        }
-      })
-    },
-    edit_dialog_saveSave() {
-      if (this.listAdd.length !== 0) {
-        for (var j = 0; j < this.listAdd.length; j++) {
-          console.log(this.listAdd[j].amount)
-          // eslint-disable-next-line use-isnan
-          if (this.listAdd[j].amount == null || this.listAdd[j].amount === '') {
-            this.$message({ type: 'warning', message: '请检查申购数量是否未填写', duration: 2000 })
-            return false
-          } else {
-            var rulesAmount = /^[1-9]\d*$/
-            if (!rulesAmount.test(this.listAdd[j].amount)) {
-              this.$message({ type: 'error', message: '申购数量请输入正整数', duration: 2000 })
-              return false
-            }
-          }
-          if (this.createTemp.providerId !== '') {
-            if (this.listAdd[j].price == '') {
-              this.$message({ type: 'warning', message: '请检查单价是否为空', duration: 2000 })
-              return false
-            } else {
-              if (parseFloat(this.listAdd[j].price) == 0) {
-                this.$message({ type: 'warning', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                return false
-              } else {
-                var rulesPrice = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,5})?$/
-                if (rulesPrice.test(this.listAdd[j].price) == false) {
-                  this.$message({ type: 'error', message: '价格请输入正数,最多保留小数点后五位', duration: 2000 })
-                  return false
-                }
-              }
-            }
-          }
-        }
-        this.postDataPramas.common = { 'returnmap': '0' }
-        this.postDataPramas.data = []
-        this.postDataPramas.data[0] = { 'name': 'updatepartpurchaseCharge', 'type': 'e', 'parammaps': {
-          id: this.createTemp.id
-        }}
-        this.postDataPramas.data[1] = { 'name': 'deletePartpurchase', 'type': 'e', 'parammaps': {
-          bigId: this.createTemp.id
-        }}
-        // eslint-disable-next-line no-irregular-whitespace
-        this.postDataPramas.data[2] = { 'name': 'insertSpotList', 'resultmaps': { 'list': this.listAdd }}
-        this.postDataPramas.data[2].children = []
-        this.postDataPramas.data[2].children[0] = { 'name': 'insertPartpurchase', 'type': 'e', 'parammaps': {
-          bigId: this.createTemp.id,
-          pastureId: '@insertSpotList.pastureId',
-          partId: '@insertSpotList.partId',
-          partCode: '@insertSpotList.partCode',
-          partName: '@insertSpotList.partName',
-          specification: '@insertSpotList.specification',
-          unit: '@insertSpotList.unit',
-          brandId: '@insertSpotList.brandId',
-          storageAmount: '@insertSpotList.reportery',
-          purpose: '@insertSpotList.purpose',
-          amount: '@insertSpotList.amount',
-          price: '@insertSpotList.price',
-          contractId: '@insertSpotList.contractId'
-        }}
-        ExecDataByConfig(this.postDataPramas).then(response => {
-          console.log('新增保存发送参数', this.postDataPramas)
-          if (response.msg === 'fail') {
-            this.$notify({
-              title: '保存失败',
-              message: response.data,
-              type: 'warning',
-              duration: 2000
-            })
-          } else {
-            this.dialogFormVisible = false
-            this.getdataListParm.parammaps.inputDatetime = ''
-            this.get_table_data()
-            this.$notify({
-              title: '',
-              message: '保存成功',
-              type: 'success',
-              duration: 2000
-            })
-          }
-        })
-        return true
-      } else {
-        this.$message({
-          title: '',
-          message: '请选择备件',
-          type: 'warning',
-          duration: 2000
-        })
-        return false
-      }
-    },
-    get_select_list() {
-      GetDataByNames(this.requestParams).then(response => {
-        this.findAllProvider = response.data.findAllProvider.list
-        this.findAllPasture = response.data.findAllPasture.list
-        this.findAllEmploye = response.data.findAllEmploye.list
-        this.onlineSubscriptionList = response.data.getflexProviderList.list
-        this.getDepartDownList()
-      })
-    },
-    getDepartDownList() {
-      GetDataByName(this.getDepartParam).then(response => {
-        this.findAllDepart = response.data.list
-      })
-    },
-    changePastureName(item) {
-      this.getDepartParam.parammaps.pastureId = this.findAllPasture.find(obj => obj.name == item).id
-      this.getdataListParm.parammaps.departmentId = ''
-      this.getDepartDownList()
-    },
-    getCreateDepartDownList() {
-      GetDataByName(this.getDepartParam).then(response => {
-        this.createDepartList = response.data.list
-        if (this.edit == 1) {
-          if (this.createDepartList.find(obj => obj.id == Cookies.get('departmentid'))) {
-            this.createTemp.departmentId = parseInt(Cookies.get('departmentid'))
-            this.createTemp.departmentName = this.createDepartList.find(obj => obj.id == Cookies.get('departmentid')).name
-          } else {
-            this.createTemp.departmentId = response.data.list[0].id
-            this.createTemp.departmentName = response.data.list[0].name
-          }
-        }
-      })
-    },
-    changePasture(item) {
-      this.getDepartParam.parammaps.pastureId = item
-      this.edit = 1
-      this.getCreateDepartDownList()
-    },
-    changeDepart(item) {
-      this.createTemp.departmentName = this.createDepartList.find(obj => obj.id == item).name
-    },
-    handleDownload() {
-      console.log('点击了下载')
-      this.$alert('备件申购正在导出中,请勿刷新或离开本页面,若导出时间过长,建议缩小导出数据范围重新导出', {})
-      this.isPercentage = true
-      this.percentage = 1
-      var timer = setInterval(() => {
-        this.percentage += 5
-        if (this.percentage > 95) {
-          this.percentage = 99
-          clearInterval(timer)
-        }
-        this.percentage = this.percentage
-      }, 1000)
-      this.downloadParam.name = 'downloadPartpurchaseList'
-      this.downloadParam.parammaps = this.getdataListParm.parammaps
-      GetAccount(this.downloadParam).then(response => {
-        if (response.data.list !== '') {
-          this.percentage = 99
-          setTimeout(() => {
-            this.isPercentage = false
-          }, 2000)
-        }
-        this.$nextTick(() => {
-          const ExcelDatas = [
-            {
-              tHeader: ['牧场', '申购单号', '申购时间', '备件编号', '备件名称', '规格型号', '品牌', '单位', '申购数量', '申购部门', '申购人', '备注'],
-              filterVal: ['pastureName', 'orderNumber', 'inputTime', 'partCode', 'partName', 'specification', 'brandName', 'unit', 'amount', 'departmentName', 'empname', 'purpose'],
-              tableDatas: response.data.list,
-              sheetName: '备件申购'
-            }
-          ]
-          json2excel(ExcelDatas, '备件申购', true, 'xlsx')
-        })
-      })
-    },
-    form_delete(row) {
-      console.log('点击了删除')
-      MessageBox.confirm('确认删除此条信息?', {
-        confirmButtonText: '确认',
-        cancelButtonText: '取消',
-        type: 'warning'
-      }).then(() => {
-        this.postDataPramas.common = { 'returnmap': '0' }
-        this.postDataPramas.data = []
-        this.postDataPramas.data[0] = { 'name': 'deleteBigPartpurchase', 'type': 'e', 'parammaps': {
-          id: row.id
-        }}
-        this.postDataPramas.data[1] = { 'name': 'deletePartpurchase', 'type': 'e', 'parammaps': {
-          bigId: row.id
-        }}
-        ExecDataByConfig(this.postDataPramas).then(response => {
-          this.get_table_data()
-          this.$notify({
-            title: '成功',
-            message: '删除成功',
-            type: 'success',
-            duration: 2000
-          })
-        })
-      }).catch(() => {
-        this.$message({
-          type: 'info',
-          message: '已取消删除'
-        })
-      })
-    },
-    handleExamine(row) {
-      console.log('点击了库管审核')
-      if (row == undefined) {
-        this.examineTemp = this.seeTemp
-        this.$set(this.seeTemp, 'statue', 1)
-        this.$set(this.seeTemp, 'workflowNote', '')
-      } else {
-        this.examineTemp = Object.assign({}, row)
-        this.$set(this.examineTemp, 'statue', 1)
-        this.$set(this.examineTemp, 'workflowNote', '')
-      }
-      this.dialogStatus = 'examine'
-      this.dialogFormVisible_Examine = true
-      this.statueReason = false
-    },
-    changeStatue(val) {
-      if (val == 2) {
-        this.statueReason = true
-      } else {
-        this.statueReason = false
-      }
-    },
-    createExamineData() {
-      console.log('点击了库管审核')
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['examineTemp'].validate(valid => {
-        if (valid) {
-          this.requestParam = {}
-          this.requestParam.name = 'partpurchaseCharge'
-          this.requestParam.parammaps = {}
-          this.requestParam.parammaps.id = this.examineTemp.id
-          if (this.examineTemp.statue == 1) {
-            this.requestParam.parammaps.statue = 3
-          } else if (this.examineTemp.statue == 2) {
-            this.requestParam.parammaps.statue = 4
-          }
-          this.requestParam.parammaps.empId	 = Cookies.get('employeid')
-          this.requestParam.parammaps.workflowNote = this.examineTemp.workflowNote
-          PostDataByName(this.requestParam).then(response => {
-            console.log('审核确认发送参数', this.requestParam)
-            if (response.msg !== 'fail') {
-              this.get_table_data()
-              this.dialogFormVisible_Examine = false
-              this.dialogFormVisible_See = false
-              this.statueReason = false
-              this.$notify({
-                title: '成功',
-                message: '审核成功',
-                type: 'success',
-                duration: 2000
-              })
-            } else {
-              failproccess(response, this.$notify)
-            }
-          })
-        }
-      })
-    },
-
-    handleExamine22(row) {
-      console.log('点击了设备主管审核')
-      if (row == undefined) {
-        this.examineTemp = this.seeTemp
-        this.$set(this.seeTemp, 'statue', 1)
-        this.$set(this.seeTemp, 'workflowNote', '')
-      } else {
-        this.examineTemp = Object.assign({}, row)
-        this.$set(this.examineTemp, 'statue', 1)
-        this.$set(this.examineTemp, 'workflowNote', '')
-      }
-      this.dialogStatus = 'examine22'
-      this.dialogFormVisible_Examine = true
-      this.statueReason = false
-    },
-    createExamineData22() {
-      console.log('点击了设备主管审核')
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['examineTemp'].validate(valid => {
-        if (valid) {
-          this.requestParam = {}
-          this.requestParam.name = 'partpurchaseEquipment'
-          this.requestParam.parammaps = {}
-          this.requestParam.parammaps.id = this.examineTemp.id
-          if (this.examineTemp.statue == 1) {
-            this.requestParam.parammaps.statue = 9
-          } else if (this.examineTemp.statue == 2) {
-            this.requestParam.parammaps.statue = 10
-          }
-          this.requestParam.parammaps.empId	 = Cookies.get('employeid')
-          this.requestParam.parammaps.workflowNote = this.examineTemp.workflowNote
-          PostDataByName(this.requestParam).then(response => {
-            console.log('审核确认发送参数', this.requestParam)
-            if (response.msg !== 'fail') {
-              this.get_table_data()
-              this.dialogFormVisible_Examine = false
-              this.dialogFormVisible_See = false
-              this.statueReason = false
-              this.$notify({
-                title: '成功',
-                message: '审核成功',
-                type: 'success',
-                duration: 2000
-              })
-            } else {
-              failproccess(response, this.$notify)
-            }
-          })
-        }
-      })
-    },
-    handleExamine2(row) {
-      console.log('点击了供应主管审核')
-      if (row == undefined) {
-        this.examineTemp = this.seeTemp
-        this.$set(this.seeTemp, 'statue', 1)
-        this.$set(this.seeTemp, 'workflowNote', '')
-      } else {
-        this.examineTemp = Object.assign({}, row)
-        this.$set(this.examineTemp, 'statue', 1)
-        this.$set(this.examineTemp, 'workflowNote', '')
-      }
-      this.dialogStatus = 'examine2'
-      this.dialogFormVisible_Examine = true
-      this.statueReason = false
-    },
-    createExamineData2() {
-      console.log('点击了供应主管审核')
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['examineTemp'].validate(valid => {
-        if (valid) {
-          this.requestParam = {}
-          this.requestParam.name = 'partpurchaseCharge3'
-          this.requestParam.parammaps = {}
-          this.requestParam.parammaps.id = this.examineTemp.id
-          if (this.examineTemp.statue == 1) {
-            this.requestParam.parammaps.statue = 5
-          } else if (this.examineTemp.statue == 2) {
-            this.requestParam.parammaps.statue = 6
-          }
-          this.requestParam.parammaps.empId	 = Cookies.get('employeid')
-          this.requestParam.parammaps.workflowNote = this.examineTemp.workflowNote
-          PostDataByName(this.requestParam).then(response => {
-            console.log('审核确认发送参数', this.requestParam)
-            if (response.msg !== 'fail') {
-              this.get_table_data()
-              this.dialogFormVisible_Examine = false
-              this.dialogFormVisible_See = false
-              this.statueReason = false
-              this.$notify({
-                title: '成功',
-                message: '审核成功',
-                type: 'success',
-                duration: 2000
-              })
-            } else {
-              failproccess(response, this.$notify)
-            }
-          })
-        }
-      })
-    },
-    handleExamine33(row) {
-      console.log('点击了场长审核')
-      if (row == undefined) {
-        this.examineTemp = this.seeTemp
-        this.$set(this.seeTemp, 'statue', 1)
-        this.$set(this.seeTemp, 'workflowNote', '')
-      } else {
-        this.examineTemp = Object.assign({}, row)
-        this.$set(this.examineTemp, 'workflowNote', '')
-        this.$set(this.examineTemp, 'statue', 1)
-      }
-      this.dialogStatus = 'examine33'
-      this.dialogFormVisible_Examine = true
-      this.statueReason = false
-    },
-    createExamineData33() {
-      console.log('点击了场长审核')
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['examineTemp'].validate(valid => {
-        if (valid) {
-          this.requestParam = {}
-          this.requestParam.parammaps = {}
-          this.requestParam.common = { 'returnmap': '0' }
-          this.requestParam.data = []
-          // 通过
-          if (this.examineTemp.statue == 1) {
-            this.requestParam.data[0] = { 'name': 'partpurchaseField', 'type': 'e', 'parammaps': {
-              id: this.examineTemp.id,
-              statue: 11,
-              field: Cookies.get('employeid'),
-              workflowNote: this.examineTemp.workflowNote
-            }}
-            this.requestParam.data[1] = { 'name': 'createBuydetailBySG', 'type': 'e', 'parammaps': {
-              id: this.examineTemp.id,
-              pastureId: this.examineTemp.pastureId
-            }}
-          //不通过
-          } else if (this.examineTemp.statue == 2) {
-            this.requestParam.data[0] = { 'name': 'partpurchaseField', 'type': 'e', 'parammaps': {
-              id: this.examineTemp.id,
-              statue: 12,
-              field: Cookies.get('employeid'),
-              workflowNote: this.examineTemp.workflowNote
-            }}
-          }
-          ExecDataByConfig(this.requestParam).then(response => {
-            if (response.msg !== 'fail') {
-              this.get_table_data()
-              this.dialogFormVisible_Examine = false
-              this.dialogFormVisible_See = false
-              this.statueReason = false
-              this.$notify({ title: '成功', message: '审核成功', type: 'success', duration: 2000 })
-            } else {
-              failproccess(response, this.$notify)
-            }
-          })
-        }
-      })
-    },
-    handleExamine3(row) {
-      console.log('点击了采购审核')
-      if (row == undefined) {
-        this.examineTemp = this.seeTemp
-        this.$set(this.seeTemp, 'statue', 1)
-        this.$set(this.seeTemp, 'workflowNote', '')
-      } else {
-        this.examineTemp = Object.assign({}, row)
-        this.$set(this.examineTemp, 'workflowNote', '')
-        this.$set(this.examineTemp, 'statue', 1)
-      }
-      this.dialogStatus = 'examine3'
-      this.dialogFormVisible_Examine = true
-      this.statueReason = false
-    },
-    createExamineData3() {
-      console.log('点击了采购审核')
-      this.isokDisable = true
-      setTimeout(() => {
-        this.isokDisable = false
-      }, 1000)
-      this.$refs['examineTemp'].validate(valid => {
-        if (valid) {
-          this.requestParam = {}
-          this.requestParam.parammaps = {}
-          this.requestParam.common = { 'returnmap': '0' }
-          this.requestParam.data = []
-          if (this.examineTemp.statue == 1) {
-            this.requestParam.data[0] = { 'name': 'partpurchaseCharge1', 'type': 'e', 'parammaps': {
-              id: this.examineTemp.id,
-              statue: 7,
-              empId: Cookies.get('employeid'),
-              workflowNote: this.examineTemp.workflowNote
-            }}
-            this.requestParam.data[1] = { 'name': 'createBuydetailBySG', 'type': 'e', 'parammaps': {
-              id: this.examineTemp.id,
-              pastureId: this.examineTemp.pastureId
-            }}
-          } else if (this.examineTemp.statue == 2) {
-            this.requestParam.data[0] = { 'name': 'partpurchaseCharge1', 'type': 'e', 'parammaps': {
-              id: this.examineTemp.id,
-              statue: 8,
-              empId: Cookies.get('employeid'),
-              workflowNote: this.examineTemp.workflowNote
-            }}
-          }
-          ExecDataByConfig(this.requestParam).then(response => {
-            if (response.msg !== 'fail') {
-              this.get_table_data()
-              this.dialogFormVisible_Examine = false
-              this.dialogFormVisible_See = false
-              this.statueReason = false
-              this.$notify({ title: '成功', message: '审核成功', type: 'success', duration: 2000 })
-            } else {
-              failproccess(response, this.$notify)
-            }
-          })
-        }
-      })
-    }
-  }
-}
-</script>
-<style lang="scss" scoped>
-  .pagination-container{
-    display: block !important;
-  }
-  /deep/ .el-badge__content.is-fixed{
-    z-index: 1;
-  }
-</style>
-<style lang="scss">
-.el-step__head.is-success {
-    color: #409EFF;
-    border-color: #409EFF;
-}
-.el-step__title.is-success{
-  color: #409EFF;
-}
-.el-step__head.is-process{
-  color: #409EFF;
-  border-color: #409EFF;
-  .el-step__icon.is-text{
-    background: #409EFF;
-    color: #fff;
-  }
-}
-.step-row{
-  color: #000;
-}
-</style>

+ 1 - 1
src/views/maintenance/repair/index.vue

@@ -1869,7 +1869,7 @@ export default {
         returntype: 'Map',
         parammaps: {
           pastureId: Cookies.get('pastureid'),
-          codeType: 'LY'
+          codeType: 'WW'
         }
       },
       requestSparePart: {

+ 14 - 2
src/views/maintenance/subcontractingMainten/tabPage/tab1.vue

@@ -788,6 +788,18 @@ export default {
 
         for (var j = 0; j < this.listAddCont.length; j++) {
           console.log(this.listAddCont[j].amount)
+          if(this.listAddCont[j].providerName == ''){
+            this.$message({ type: 'warning', message: '请检查供应商是否未填写', duration: 2000 })
+            return false
+          }
+          if(this.listAddCont[j].eqName == ''){
+            this.$message({ type: 'warning', message: '请检查设备名称是否未填写', duration: 2000 })
+            return false
+          }
+          if(this.listAddCont[j].eqCode == ''){
+            this.$message({ type: 'warning', message: '请检查设备内部编号是否未填写', duration: 2000 })
+            return false
+          }
           if (this.listAddCont[j].amount == null || this.listAddCont[j].amount === '') {
             // this.$message({ type: 'warning', message: '请检查金额是否未填写', duration: 2000 })
             // return false
@@ -1324,8 +1336,8 @@ export default {
         //牧场
         var mydata = {
           // acceptanceCode:this.createTemp.acceptanceCode,
-          pastureId:  parseInt(Cookies.get('pastureid')),
-          departmentId: parseInt(Cookies.get('departmentid')),
+          pastureId:  this.createTemp.pastureId,
+          departmentId: this.createTemp.departmentId,
           applicant:Cookies.get('employeid'),
           outsourcingCode:this.createTemp.outsourcingCode,
           applyType:0,

+ 1 - 0
src/views/report/equipmentIndex/index.vue

@@ -44,6 +44,7 @@
                 <a @click="clickEquipmentIndex(row)">{{ row.pastureName }}</a>
               </template>
             </el-table-column>
+            <el-table-column label="饲养头日" sortable min-width="80px" align="center" prop="monthBudget" />
           </el-table-column>
           <el-table-column label="总指标(万元)" align="center">
             <el-table-column label="预算" sortable min-width="80px" align="center" prop="monthBudget" />

+ 61 - 107
src/views/report/maintenanceFault/index.vue

@@ -5,48 +5,23 @@
       <el-progress style="padding-left: 10px;" :text-inside="true" :stroke-width="26" :percentage="percentage" />
     </div>
     <div class="filter-container">
-
-      <el-select  v-if="isPasture" v-model="tableObj.getdataListParm.parammaps.pastureName" placeholder="牧场" style="width: 140px;" class="filter-item" >
+      <el-select  v-if="isPasture || isType3" v-model="tableObj.getdataListParm.parammaps.pastureName" placeholder="牧场" style="width: 140px;" class="filter-item" >
         <el-option v-for="item in pastureList" :key="item.id" :label="item.name" :value="item.name" />
       </el-select>
-
-
       <el-select  v-if="isPasture || isType" v-model="tableObj.getdataListParm.parammaps.eqClassId" placeholder="设备类别" style="width: 140px;" class="filter-item" clearable>
         <el-option v-for="item in eqClassList" :key="item.id" :label="item.remark" :value="item.id" />
       </el-select>
-
-      <el-date-picker
-        v-if="isPasture"
-        ref="inputDatetime"
-        v-model="tableObj.getdataListParm.parammaps.inputDatetime"
-        class="inputDatetime"
-        type="datetimerange"
-        style="width: 280px;top:-3px;"
-        format="yyyy-MM-dd"
-        value-format="yyyy-MM-dd"
-        range-separator="至"
-        start-placeholder="开始日期"
-        end-placeholder="结束日期"
-        :clearable="false"
-      />
-
-
-
-
-
+      <el-select  v-if=" isType3" v-model="tableObj.getdataListParm.parammaps.eqClassId" placeholder="设备类别" style="width: 140px;" class="filter-item" clearable>
+        <el-option v-for="item in eqClassList3" :key="item.id" :label="item.remark" :value="item.id" />
+      </el-select>
+      <el-date-picker v-if="isPasture" ref="inputDatetime" v-model="tableObj.getdataListParm.parammaps.inputDatetime" class="inputDatetime" type="datetimerange" style="width: 280px;top:-3px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期" :clearable="false" />
       <el-input  v-if="isType2" v-model="tableObj.getdataListParm.parammaps.eqName" placeholder="设备名称" style="width: 200px;" class="filter-item" />
-
-      <!-- <el-select v-if="isType2" v-model="eqName" style="width: 140px;" placeholder="设备名称" class="filter-item">
-        <el-option v-for="item in eqNameList" :key="item.id" :label="item.name" :value="item.name" />
-      </el-select> -->
-
-
-
       <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="form_search">搜索</el-button>
       <el-button class="filter-item" type="success" icon="el-icon-upload2" @click="form_export">导出</el-button>
     </div>
     <div v-if="isTitle" style="line-height:50px;height:50px"><b @click="goFirst">所有牧场</b>&gt;<span>{{ this.pastureName }}</span></div>
     <div v-if="isTitle2" style="line-height:50px;height:50px"><b @click="goFirst">所有牧场</b>&gt;<span @click="goSecond">{{ this.pastureName }}</span>&gt;<span>{{ this.typename }}</span></div>
+    <div v-if="isTitle3" style="line-height:50px;height:50px"><b @click="goFirst">所有资产</b>&gt;<span>{{ this.eqClassName }}</span></div>
     <el-table
       :key="tableObj.tableKey"
       v-loading="tableObj.listLoading"
@@ -69,59 +44,36 @@
       </el-table-column>
       <el-table-column v-if="isPasture" :key="1" label="牧场" min-width="140px" sortable align="center">
         <template slot-scope="{row}">
-          <a @click="table_click(row)">{{ row.pastureName }}</a>
-        </template>
-      </el-table-column>
-
-
-
-      <!-- <el-table-column v-if="isType" :key="2" label="设备分类" min-width="140px" align="center">
-        <template slot-scope="{row}">
-          <a @click="table_click2(row)">{{ row.typename }}</a>
-        </template>
-      </el-table-column>
-      <el-table-column v-if="isType2" :key="3" label="设备名称" min-width="140px" align="center">
-        <template slot-scope="{row}">
-          <a @click="table_click3(row)">{{ row.eqName }}</a>
+          <a @click="table_click1(row)">{{ row.pastureName }}</a>
         </template>
       </el-table-column>
-      <el-table-column v-if="isType2" :key="4" label="设备编号" min-width="140px" align="center">
-        <template slot-scope="{row}">
-          <span>{{ row.eqCode }}</span>
-        </template>
-      </el-table-column> -->
-
-
-
-      <el-table-column  v-if="isPasture"   :key="5" label="设备二级分类名称" sortable min-width="140px" align="center">
+      <el-table-column  v-if="isPasture" :key="5" label="设备二级分类名称" sortable min-width="140px" align="center">
         <template slot-scope="{row}">
-          <span>{{ row.eqClassName }}</span>
+          <a @click="table_click4(row)" style="text-decoration: underline;">{{ row.eqClassName }}</a>
         </template>
       </el-table-column>
-
-      <el-table-column  v-if="isType"   :key="5" label="设备三级分类名称"  sortable min-width="140px" align="center">
+      <el-table-column  v-if="isType" :key="5" label="设备三级分类名称"  sortable min-width="140px" align="center">
         <template slot-scope="{row}">
-
           <a @click="table_click2(row)">{{ row.eqClassName }}</a>
         </template>
       </el-table-column>
-
-
-
-      <el-table-column  v-if="isType2"    label="设备名称" sortable min-width="140px" align="center">
+      <el-table-column  v-if="isType2" label="设备名称" sortable min-width="140px" align="center">
         <template slot-scope="{row}">
           <span>{{ row.eqName }}</span>
         </template>
       </el-table-column>
-
-      <el-table-column  v-if="isType2"    label="设备内部编号" sortable min-width="140px" align="center">
+      <el-table-column  v-if="isType2" label="设备内部编号" sortable min-width="140px" align="center">
         <template slot-scope="{row}">
           <span>{{ row.eqCode }}</span>
         </template>
       </el-table-column>
 
-
-
+      <el-table-column  v-if="isType3" :key="5" label="牧场"  sortable min-width="140px" align="center" prop="pastureName" />
+      <el-table-column  v-if="isType3" :key="5" label="设备三级分类名称"  sortable min-width="140px" align="center">
+        <template slot-scope="{row}">
+          <span>{{ row.eqClassName }}</span>
+        </template>
+      </el-table-column>
 
       <el-table-column   :key="6" label="维修次数" sortable min-width="140px" align="center">
         <template slot-scope="{row}">
@@ -173,12 +125,15 @@ export default {
         }
       },
       isTitle: false,
+      isTitle3:false,
       isTitle2: false,
       isPasture: true,
       isType: false,
       isType2: false,
+      isType3:false,
       pastureName: '',
       eqName: '',
+      eqClassName:'',
       eqNameList: [],
       pastureList: [],
       eqClassList: [],
@@ -357,9 +312,8 @@ export default {
         textDecoration: 'none'
       }
     },
-    table_click(row) {
+    table_click1(row) {
       if (row.name !== '现代牧业') {
-
         this.pastureName = row.pastureName
         this.tableObj.getdataListParm.parammaps.offset = 1
         this.tableObj.getdataListParm.parammaps.pastureId = row.pastureId
@@ -368,38 +322,22 @@ export default {
         this.tableObj.getdataListParm.parammaps.eqClassId = ""
         this.get_table_data()
         this.isPasture = false
-         this.isType = true
-         this.isType2 = false
-          this.isTitle = true
-          this.isTitle2 = false
-
-
-
-
+        this.isType = true
+        this.isType2 = false
+        this.isTitle = true
+        this.isTitle2 = false
+        this.isType3 = false
       }
-
-
       this.eqClassList =  this.eqClassList3
-      // else {
-      //   this.get_table_data()
-      //   this.isTitle = false
-      //   this.isTitle2 = false
-      //   this.isType2 = false
-      // }
     },
     table_click2(row) {
       this.tableObj.getdataListParm.parammaps.offset = 1
-
-      // this.pastureName = row.name
       this.typename = row.eqClassName
-
       this.tableObj.getdataListParm.parammaps.pastureId = row.pastureId
-        this.tableObj.getdataListParm.parammaps.pastureName = row.pastureName
-        this.tableObj.getdataListParm.parammaps.level = "3"
-        this.tableObj.getdataListParm.parammaps.eqClassId = row.eqClassId
-        this.tableObj.getdataListParm.parammaps.eqName = ""
-
-
+      this.tableObj.getdataListParm.parammaps.pastureName = row.pastureName
+      this.tableObj.getdataListParm.parammaps.level = "3"
+      this.tableObj.getdataListParm.parammaps.eqClassId = row.eqClassId
+      this.tableObj.getdataListParm.parammaps.eqName = ""
       this.get_table_data()
       this.isPasture = false
       this.isType = false
@@ -418,35 +356,31 @@ export default {
         }
       }
     },
-    // goBack() {
-    //   this.isPasture = true
-    //   this.isType = false
-    //   this.isTitle = false
-    //   this.tableObj.getdataListParm.name = 'UkdoneRatePasture'
-    //   this.tableObj.getdataListParm.parammaps.typecode = ''
-    //   this.tableObj.getdataListParm.parammaps.eqClassId = ''
-    //   this.dataform.eqClassId = ''
-    //   this.dataform.typeCode = ''
-    //   this.get_table_data()
-    // },
     goFirst() {
-
       console.log("goFirst")
       this.tableObj.getdataListParm.offset = 1
+      this.tableObj.getdataListParm.parammaps.eqClassPIdStr = ''
       this.tableObj.getdataListParm.parammaps.level = "1"
       this.tableObj.getdataListParm.parammaps.eqName = ''
       this.tableObj.getdataListParm.parammaps.eqClassId = ''
       this.tableObj.getdataListParm.parammaps.pastureId = ''
       this.tableObj.getdataListParm.parammaps.pastureName = ''
       this.eqClassList =  this.eqClassList2
-
-
       this.get_table_data()
       this.isType = false
       this.isType2 = false
       this.isTitle = false
       this.isTitle2 = false
+      this.isTitle3 = false
       this.isPasture = true
+      this.isType3 = false
+      this.isTitle3 = false
+      GetDataByName( { name: 'getEqClassBengbu', offset: 0, pagecount: 0, returntype: 'Map', parammaps: {
+        'section': '3','pid':'' }}).then(response => {
+      
+        this.eqClassList3 = response.data.list
+      
+      })
     },
     goSecond() {
       console.log("goSecond")
@@ -605,6 +539,26 @@ export default {
           })
         })
       }
+    },
+    table_click4(row){
+      this.isTitle3 = true
+      this.isType3 = true
+      this.isTitle2 = false
+      this.isPasture = false
+      this.isType = false
+      this.isType2 = false
+      this.eqClassName = row.eqClassName
+      this.tableObj.getdataListParm.parammaps.offset = 1
+      this.tableObj.getdataListParm.parammaps.level = "2"
+      this.tableObj.getdataListParm.parammaps.eqClassPIdStr = row.eqId
+      this.tableObj.getdataListParm.parammaps.eqClassId = ''
+      this.get_table_data()
+      GetDataByName( { name: 'getEqClassBengbu', offset: 0, pagecount: 0, returntype: 'Map', parammaps: {
+        'section': '3','pid':row.eqId }}).then(response => {
+
+        this.eqClassList3 = response.data.list
+
+      })
     }
 
   }

+ 0 - 592
src/views/report/queryCombustion/index11.vue

@@ -1,592 +0,0 @@
-<template>
-  <div class="app-container">
-    <div class="filter-container">
-      <div class="block">
-        <el-date-picker v-model="yearDate" :clearable="false" type="year" placeholder="选择年" />
-
-        <el-radio-group v-model="radio"    style="float:right;margin-top:20px">
-          <el-radio  label="集团">集团</el-radio>
-          <el-radio  label="一中心">一中心</el-radio>
-          <el-radio  label="二中心">二中心</el-radio>
-          <el-radio  label="三中心">三中心</el-radio>
-        </el-radio-group>   
-
-      </div>
-    </div>
-
-    <!-- 年度维修成本 -->
-    <el-row v-if="isBarChart1" style="position: relative;">
-      <p style="position: absolute;top:-12px;left:40%;color:rgb(130, 165, 252);background:rgb(230, 243, 255);border:1px solid rgb(130, 165, 252);padding:10px;border-radius:10px">
-        {{ year }}年集团柴油量:{{ total }}万升
-      </p>
-      <el-col :span="24">
-        <div id="barChart1" style="width: 100%;height:400px;" />
-      </el-col>
-    </el-row>
-
-    <!-- 年度维修成本 -->
-    <el-row>
-      <el-col :span="12">
-        <div id="lineChart1" style="width: 100%;height:400px;" />
-      </el-col>
-      <el-col :span="12">
-        <div id="lineChart2" style="width: 100%;height:400px;" />
-      </el-col>
-    </el-row>
-
-    <el-row>
-      <el-col :span="12">
-        <div id="pieChart1" style="width: 100%;height:400px;" />
-      </el-col>
-      <el-col :span="12">
-        <div id="barChart2" style="width: 100%;height:400px;" />
-      </el-col>
-    </el-row>
-
-  </div>
-
-</template>
-
-<script>
-import echarts from 'echarts'
-
-require('echarts/theme/macarons')
-// eslint-disable-next-line no-unused-vars
-import waves from '@/directive/waves' // waves directive
-import { GetDataByName, GetReportform, checkButtons } from '@/api/common'
-
-import Cookies from 'js-cookie'
-export default {
-  name: 'QueryCombustion',
-  directives: { waves },
-  data() {
-    return {
-      yearDate: new Date(),
-      total: '',
-      // type: '柴油',
-      // types: [{ id: '0', name: '柴油' }, { id: '1', name: '天然气' }, { id: '2', name: '煤炭' }, { id: '3', name: '生物质颗粒' }],
-
-      radio: "集团",
-
-      pasture: Cookies.get('pasturename'),
-      year: new Date().getFullYear(),
-      month: new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1,
-      deptment: '维修处',
-
-      getBarChart1Parm: {
-        name: 'getpSumNowDiesel',
-        parammaps: {
-          receiveTime: new Date().getFullYear(),
-          center:'',
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getLineChart1Parm: {
-        name: 'getPastureSumMonthDiesel',
-        parammaps: {
-          receiveTime: new Date().getFullYear(),
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getLineChart2Parm: {
-        name: 'getPastureSumDayDiesel',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getPieChart1Parm: {
-        name: 'getdeptSumMonthDiesel',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getBarChart2Parm: {
-        name: 'geteqclassSumMonthDiesel',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename'),
-          deptName: ''
-        }
-      },
-      barChart1: null,
-      lineChart1: null,
-      lineChart2: null,
-      pieChart1: null,
-      barChart2: null,
-
-      chart_data1: {
-        // pasture: ['宝鸡', '恒盛', '塞一', '塞二', '塞三', '塞四', '塞五', '通山', '合肥', '和林'],
-        // nowYear: [123, 332, 222, 333, 444, 333, 222, 334, 234, 223],
-        // lastYear: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66]
-      },
-      chart_data2: {
-        // months: ['2019-01', '2019-02', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01'],
-        // nowYear: [123, 332, 222, 333, 444, 333, 222, 334, 234, 223],
-        // lastYear: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66],
-        // budget: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66]
-      },
-      chart_data3: {
-        // day: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'],
-        // nowYear: [123, 332, 222, 333, 444, 333, 222, 334, 234, 223],
-        // lastYear: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66]
-      },
-      chart_data4: {
-        // name: ['饲养处', '其他部门', '设备处', '能源处', '牧场办公室'],
-        // psum: [
-        //   { value: 335, name: '饲养处' },
-        //   { value: 310, name: '其他部门' },
-        //   { value: 234, name: '设备处' },
-        //   { value: 135, name: '能源处' },
-        //   { value: 1548, name: '牧场办公室' }
-        // ]
-      },
-      chart_data5: {
-        // typeName: ['小型装载机', '叉车', '拖拉机', '抛料机', '搅拌机'],
-        // eqCost: [123, 332, 222, 333, 444],
-        // lastYear: [22, 342, 234, 234, 66]
-      },
-
-      tableKey: 0,
-      list: null,
-      total: 0,
-      listLoading: true,
-      rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
-      cellStyle: { padding: 0 + 'px' },
-
-      dialogFormVisibleCard: false,
-      listLoadingSee: true,
-      rowSeeData: {},
-      listSee: [],
-      totalSee: 0,
-      getdataListParmSee: {
-        name: 'geteqclassSumDay',
-        page: 1,
-        offset: 1,
-        pagecount: 10,
-        returntype: 'Map',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename'),
-          deptName: '',
-          typeName: '',
-          assetCode: '',
-          eqName: '',
-          startTime: '',
-          stopTime: '',
-          pastureId: Cookies.get('pastureid')
-        }
-      },
-      buttons: [],
-      isBarChart1: []
-
-    }
-  },
-
-  watch: {
-    'yearDate': {
-      deep: true,
-      handler: function(newVal, oldVal) {
-        var time = this.yearDate
-        console.log(newVal.getFullYear())
-        this.year = time.getFullYear()
-        this.getBarChart1Parm.parammaps.receiveTime = time.getFullYear()
-        this.getLineChart1Parm.parammaps.receiveTime = time.getFullYear()
-        this.getLineChart2Parm.parammaps.receiveTime = time.getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1)
-        this.getPieChart1Parm.parammaps.receiveTime = time.getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1)
-        this.getBarChart2Parm.parammaps.receiveTime = time.getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1)
-
-        this.getBarChart1()
-        this.getLineChart1()
-        this.getLineChart2()
-        this.getPieChart1()
-      }
-    },
-    'radio': {
-      deep: true,
-      handler: function(newVal, oldVal) {
-        console.log(newVal, oldVal)
-        if(newVal == '集团'){
-          this.getBarChart1Parm.parammaps.center = ''
-        } else {
-          this.getBarChart1Parm.parammaps.center = newVal
-        }
-        this.getBarChart1()
-        // this.getLineChart1()
-        // this.getLineChart2()
-        // this.getPieChart1()
-      }
-    },
-    // 'type': {
-    //   deep: true,
-    //   handler: function(newVal, oldVal) {
-    //     console.log(newVal, oldVal)
-    //     this.getBarChart1Parm.parammaps.type = newVal
-    //     this.getLineChart1Parm.parammaps.type = newVal
-    //     this.getLineChart2Parm.parammaps.type = newVal
-    //     this.getPieChart1Parm.parammaps.type = newVal
-    //     this.getBarChart2Parm.parammaps.type = newVal
-
-    //     this.getBarChart1()
-    //     this.getLineChart1()
-    //     this.getLineChart2()
-    //     this.getPieChart1()
-    //   }
-    // }
-  },
-
-  created() {
-    this.getBarChart1()
-    this.getLineChart1()
-    this.getLineChart2()
-    this.getPieChart1()
-    const that = this
-    GetDataByName({ 'name': 'getUserPCButtons', 'parammaps': { 'jwt_username': Cookies.get('name') }}).then(response => {
-      that.buttons = response.data.list
-      that.get_auto_buttons()
-    })
-  },
-  mounted() {
-    // this.roadBarChart1(this.chart_data1)
-    // this.roadlineChart1(this.chart_data2, this.pasture, this.year)
-    // this.roadlineChart2(this.chart_data3, this.pasture, this.month)
-    //  this.roadpieChart1(this.chart_data4, this.month)
-    // this.roadBarChart2(this.chart_data5, this.deptment)
-  },
-  methods: {
-    get_auto_buttons() {
-      // 图1
-      const BarChart1 = 'report:queryCombustion:pastures'
-      const isBarChart1 = checkButtons(this.$store.state.user.buttons, BarChart1)
-      this.isBarChart1 = isBarChart1
-    },
-    // 各牧场年度维修成本对比
-    getBarChart1() {
-      GetReportform(this.getBarChart1Parm).then(response => {
-        console.log('图1', response)
-        this.chart_data1 = response.data.chart_data
-        this.roadBarChart1(this.chart_data1)
-        var nowYear = response.data.chart_data.nowYear
-        var total = 0
-        if (nowYear !== null || nowYear !== undefined) {
-          nowYear.forEach(function(item, index) {
-            console.log(parseFloat(item))
-            total = total + parseFloat(item)
-          })
-        }
-        this.total = total.toFixed(4)
-      })
-    },
-    getLineChart1() {
-      GetReportform(this.getLineChart1Parm).then(response => {
-        console.log('图2', response)
-        this.chart_data2 = response.data.chart_data
-        this.roadlineChart1(this.chart_data2, this.pasture, this.year)
-      })
-    },
-    getLineChart2() {
-      GetReportform(this.getLineChart2Parm).then(response => {
-        console.log('图3', response)
-        this.chart_data3 = response.data.chart_data
-        this.roadlineChart2(this.chart_data3, this.pasture, this.month)
-      })
-    },
-    getPieChart1() {
-      GetDataByName(this.getPieChart1Parm).then(response => {
-        console.log('图4', response)
-        if (response.data === null || response.data.list === null) {
-          this.chart_data4 = { name: [], psum: [] }
-          this.roadpieChart1(this.chart_data4, this.month)
-        } else {
-          this.chart_data4.psum = response.data.list
-          var name = []
-          console.log(response.data.list)
-          response.data.list.forEach(function(i) {
-            name.push(i.name)
-          })
-          console.log(this.chart_data4)
-          this.chart_data4.name = name
-          this.roadpieChart1(this.chart_data4, this.month)
-          this.deptment = name[0]
-          this.getdataListParmSee.parammaps.deptName = name[0]
-          this.getBarChart2Parm.parammaps.deptName = name[0]
-          this.getBarChart2()
-        }
-      })
-    },
-    getBarChart2() {
-      GetReportform(this.getBarChart2Parm).then(response => {
-        console.log('图5', response)
-        this.chart_data5 = response.data.chart_data
-        this.roadBarChart2(this.chart_data5, this.deptment)
-      })
-    },
-
-    // 各牧场年度柴油量对比
-    roadBarChart1(chart_data1) {
-      if (this.barChart1 != null) {
-        this.barChart1.dispose()
-      }
-      this.barChart1 = echarts.init(document.getElementById('barChart1'))
-      var option = {
-        title: { text: '各牧场年度柴油量对比', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['今年用量', '去年同期'],
-          right: 40
-        },
-        color: ['#2dc0e8', '#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '4%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', name: '牧场', data: chart_data1.pasture, axisLabel: { interval: 0, rotate: 30 }}],
-        yAxis: [{ type: 'value', name: '升', axisLabel: { formatter: '{value}万' }}],
-        series: [
-          {
-            name: '今年用量',
-            type: 'bar',
-            data: chart_data1.nowYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '去年同期',
-            type: 'bar',
-            data: chart_data1.lastYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.barChart1.setOption(option)
-      window.onresize = function() {
-        this.barChart1.resize()
-      }
-      var that = this
-      this.barChart1.on('click', function(param, i) {
-        console.log(param)
-        that.pasture = param.name
-        that.getLineChart1Parm.parammaps.pastureName = param.name
-        that.getLineChart2Parm.parammaps.pastureName = param.name
-        that.getPieChart1Parm.parammaps.pastureName = param.name
-        that.getBarChart2Parm.parammaps.pastureName = param.name
-
-        that.getLineChart1()
-        that.getLineChart2()
-        that.getPieChart1()
-      })
-    },
-    // 每月维修成本对比
-    roadlineChart1(chart_data2, pasture, year) {
-      if (this.lineChart1 != null) {
-        this.lineChart1.dispose()
-      }
-      this.lineChart1 = echarts.init(document.getElementById('lineChart1'))
-      var option = {
-        title: { text: pasture + year + '每月柴油量对比', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['今年用量', '去年同期用量']
-        },
-        color: [ '#769cfc', '#FFB800', '#6bda00'],
-        grid: { left: '3%', right: '8%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data2.months, name: '月份', axisLabel: { interval: 0, rotate: 30 }}],
-        yAxis: [{ type: 'value', name: '升', axisLabel: { formatter: '{value}' }}],
-        series: [
-          {
-            name: '今年用量',
-            type: 'line',
-            data: chart_data2.nowYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '去年同期用量',
-            type: 'line',
-            data: chart_data2.lastYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '预算',
-            type: 'line',
-            data: chart_data2.budget,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.lineChart1.setOption(option)
-      window.onresize = function() {
-        this.lineChart1.resize()
-      }
-      var that = this
-      this.lineChart1.on('click', function(param, i) {
-        console.log(param)
-
-        that.getLineChart2Parm.parammaps.receiveTime = param.name
-        that.getPieChart1Parm.parammaps.receiveTime = param.name
-        that.getBarChart2Parm.parammaps.receiveTime = param.name
-
-        var num = param.name.substring(5)
-        console.log(num)
-        that.month = num
-        that.getLineChart2()
-        that.getPieChart1()
-      })
-    },
-
-    // 每日维修成本对比
-    roadlineChart2(chart_data3, pasture, month) {
-      if (this.lineChart2 != null) {
-        this.lineChart2.dispose()
-      }
-      this.lineChart2 = echarts.init(document.getElementById('lineChart2'))
-      var option = {
-        title: { text: pasture + month + '月每日柴油量对比', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['今年日用量', '去年同期']
-        },
-        color: [ '#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '5%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data3.day, name: '日期', axisLabel: { interval: 0, rotate: 30 }}],
-        yAxis: [{ type: 'value', name: '升', axisLabel: { formatter: '{value}' }}],
-        series: [
-          {
-            name: '今年日用量',
-            type: 'line',
-            data: chart_data3.nowYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '去年同期',
-            type: 'line',
-            data: chart_data3.lastYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.lineChart2.setOption(option)
-      window.onresize = function() {
-        this.lineChart2.resize()
-      }
-      this.lineChart2.on('click', function(param, i) {
-        console.log(param)
-      })
-    },
-    // 部门统计
-    roadpieChart1(chart_data4, month) {
-      if (this.pieChart1 != null) {
-        this.pieChart1.dispose()
-      }
-      this.pieChart1 = echarts.init(document.getElementById('pieChart1'))
-      var option = {
-        title: { text: month + '月部门统计', textStyle: { color: '#769cfc' }},
-        tooltip: {
-          trigger: 'item',
-          formatter: '{a} <br/>{b} : {c} ({d}%)'
-        },
-        legend: {
-          data: chart_data4.name, top: 40
-        },
-        color: [ '#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '5%', bottom: '4%', containLabel: true },
-        series: [
-          {
-            name: '',
-            type: 'pie',
-            radius: '55%',
-            center: ['50%', '60%'],
-            data: chart_data4.psum,
-            emphasis: {
-              itemStyle: {
-                shadowBlur: 10,
-                shadowOffsetX: 0,
-                shadowColor: 'rgba(0, 0, 0, 0.5)'
-              }
-            }
-          }
-
-        ]
-      }
-      this.pieChart1.setOption(option)
-      window.onresize = function() {
-        this.pieChart1.resize()
-      }
-      var that = this
-      this.pieChart1.on('click', function(param, i) {
-        console.log(param)
-        that.deptment = param.name
-        that.getBarChart2Parm.parammaps.deptName = param.name
-        that.getBarChart2()
-      })
-    },
-    // 维修成本
-    roadBarChart2(chart_data5, deptment) {
-      if (this.barChart2 != null) {
-        this.barChart2.dispose()
-      }
-      this.barChart2 = echarts.init(document.getElementById('barChart2'))
-      var option = {
-        title: { text: deptment + '柴油用量', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['柴油用量']
-        },
-        color: [ '#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '10%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data5.typeName, name: '设备', axisLabel: { interval: 0, rotate: 30 }}],
-        yAxis: [{ type: 'value', name: '升', axisLabel: { formatter: '{value}' }}],
-        series: [
-          {
-            name: '柴油用量',
-            type: 'bar',
-            barWidth: 14,
-            data: chart_data5.eqCost,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.barChart2.setOption(option)
-      window.onresize = function() {
-        this.barChart2.resize()
-      }
-    }
-
-  }
-}
-</script>
-<style>
-.el-row {
-    margin-bottom: 40px;
-    &:last-child {
-      margin-bottom: 0;
-    }
-  }
-</style>
-
-<style lang="scss" scoped>
-
-.dashboard-editor-container {
-  padding: 20px;
-  background-color: rgb(240, 242, 245);
-  position: relative;
-
-  .github-corner {
-    position: absolute;
-    top: 0px;
-    border: 0;
-    right: 0;
-  }
-
-  .chart-wrapper {
-    background: #fff;
-    padding: 16px 16px 0;
-  }
-}
-
-@media (max-width:1024px) {
-  .chart-wrapper {
-    padding: 8px;
-  }
-}
-</style>

+ 0 - 132
src/views/report/queryElec/components/BarChartDept.vue

@@ -1,132 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-// import { parseTime } from '@/utils/index.js'
-// import { emit } from 'cluster'
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    barCharDeptData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null,
-      sourceDate: []
-    }
-  },
-  watch: {
-    barCharDeptData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        console.log(val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.barCharDeptData)
-      console.log(this.barCharDeptData)
-    },
-    setOptions({ xAxisData, seriesData, text } = {}) {
-      this.chart.setOption({
-        title: {
-          text: text + '电表柱状图',
-          subtext: ''
-        },
-        tooltip: {
-          trigger: 'axis',
-          axisPointer: { // 坐标轴指示器,坐标轴触发有效
-            type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'
-          }
-        },
-        grid: {
-          left: '3%',
-          right: '15%',
-          bottom: '-4%',
-          containLabel: true
-        },
-        xAxis: [
-          {
-            name: '电表名称',
-            type: 'category',
-            // data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
-            data: xAxisData,
-            // data: [],
-            axisTick: {
-              alignWithLabel: true
-            },
-            // axisLabel: { interval: 0, rotate: 40 }
-            axisLabel: { interval: 0 }
-            // show: false
-          }
-        ],
-        yAxis: [
-          {
-            name: '千瓦',
-            type: 'value'
-          }
-        ],
-        series: [
-          {
-            name: '',
-            type: 'bar',
-            barWidth: '60%',
-            // data: [10, 52, 200, 334, 390, 330, 220]
-            data: seriesData
-          }
-        ]
-      })
-      const that = this
-      // 点击柱状图拿到对应内容
-      this.chart.on('click', function(params) {
-        console.log(params.name)
-        // console.log(parseTime(new Date(), '{y}') + '-' + params.name.substring(0, 2))
-        // that.$emit('barClickDept', parseTime(new Date(), '{y}') + '-' + params.name.substring(0, 2))
-        that.$emit('barClickDept', params.name)
-      })
-    }
-  }
-}
-</script>

+ 0 - 115
src/views/report/queryElec/components/BarChartPasture.vue

@@ -1,115 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-// import { parseTime } from '@/utils/index.js'
-// import { emit } from 'cluster'
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    barPastureData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null,
-      sourceDate: []
-    }
-  },
-  watch: {
-    barPastureData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        console.log(val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.barPastureData)
-    },
-    setOptions({ sourceDate, text } = {}) {
-      this.chart.setOption({
-        title: {
-          text: '最近12个月用电量同期对比',
-          subtext: ''
-        },
-        legend: { x: 'right' },
-        tooltip: {
-          trigger: 'axis',
-          axisPointer: { // 坐标轴指示器,坐标轴触发有效
-            type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'
-          }
-        },
-        dataset: {
-          source: sourceDate
-          // source: [
-          //   ['product', '去年同期', '预算', '实际']
-          //   // ['10月', 433, 85.8, 93.7],
-          //   // ['9月', 83.1, 73.4, 55.1],
-          //   // ['8月', 86.4, 65.2, 82.5],
-          //   // ['7月', 72.4, 53.9, 39.1]
-          // ]
-        },
-        xAxis: { type: 'category', name: '最近12个月', formatter: '', axisLabel: { interval: 0, rotate: 40 }},
-        yAxis: { name: '千瓦' },
-        grid: [
-          { left: '15%', right: '17%' }
-        ],
-        series: [
-          { type: 'bar' },
-          { type: 'bar' },
-          { type: 'bar' }
-        ]
-      })
-      const that = this
-      // 点击柱状图拿到对应内容
-      this.chart.on('click', function(params) {
-        // console.log(parseTime(new Date(), '{y}') + '-' + params.name.substring(0, 2))
-        // that.$emit('chartClick', parseTime(new Date(), '{y}') + '-' + params.name.substring(0, 2))
-        that.$emit('chartClick', params.name.substring(0, 7))
-      })
-    }
-  }
-}
-</script>

+ 0 - 80
src/views/report/queryElec/components/BarChartPastureMonth.vue

@@ -1,80 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '475px'
-    }
-  },
-  data() {
-    return {
-      chart: null
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.chart.setOption({
-        legend: {},
-        tooltip: {},
-        dataset: {
-          source: [
-            ['product', '2015', '2016', '2017'],
-            ['10月', 43.3, 85.8, 93.7],
-            ['9月', 83.1, 73.4, 55.1],
-            ['8月', 86.4, 65.2, 82.5],
-            ['7月', 72.4, 53.9, 39.1]
-          ]
-        },
-        xAxis: [
-          { type: 'category', gridIndex: 0, name: '最近12个月' }
-        ],
-        yAxis: [
-          { gridIndex: 0, name: '总费用' }
-        ],
-        grid: [
-          { bottom: '58%' },
-          { top: '58%' }
-        ],
-        series: [
-          { type: 'bar' },
-          { type: 'bar' },
-          { type: 'bar' }
-        ]
-      })
-    }
-  }
-}
-</script>

+ 0 - 165
src/views/report/queryElec/components/Contrast.vue

@@ -1,165 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-// import { debounce } from '@/utils'
-
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    contrastData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null
-    }
-  },
-  watch: {
-    contrastData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        console.log('watch拿到的val', val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.contrastData)
-      // console.log('methods拿到的pieDeptData', this.pieDeptData)
-    },
-    setOptions({ lastData, thisData, text, thisMinData, days } = {}) {
-      this.chart.setOption({
-        title: {
-          text: text + '月用电量同期对比',
-          subtext: ''
-        },
-        tooltip: {
-          trigger: 'axis'
-        },
-        legend: {
-          data: ['去年', '今年']
-        },
-        toolbox: {
-          show: true,
-          feature: {
-            dataZoom: {
-              yAxisIndex: 'none'
-            },
-            dataView: { readOnly: false },
-            magicType: { type: ['line', 'bar'] },
-            restore: {},
-            saveAsImage: {}
-          }
-        },
-        xAxis: {
-          type: 'category',
-          name: '日期',
-          boundaryGap: false,
-          data: days
-        },
-        yAxis: {
-          type: 'value',
-          name: '千瓦',
-          axisLabel: {
-            formatter: '{value}'
-          }
-        },
-        grid: [
-          { top: '25%', left: '15%', bottom: '5%' }
-        ],
-        series: [
-          {
-            name: '去年',
-            type: 'line',
-            // data: [11, 11, 15, 13, 12, 13, 10, 9, 11, 3],
-            data: lastData,
-            markPoint: {
-              data: [
-                // { type: 'max', name: '最大值' },
-                // { type: 'min', name: '最小值' }
-              ]
-            },
-            markLine: {
-              data: [
-                { type: 'average', name: '平均值' }
-              ]
-            }
-          },
-          {
-            name: '今年',
-            type: 'line',
-            // data: [1, 5, 2, 5, 3, 2, 0, 9, 6, 7],
-            data: thisData,
-            markPoint: {
-              data: [
-                // { name: '周最低', value: 5, xAxis: 1, yAxis: 2 }
-                // { type: 'max', name: '最大值' },
-                // { type: 'min', name: '最小值' }
-              ]
-            },
-            markLine: {
-              data: [
-                { type: 'average', name: '平均值' },
-                [{
-                  symbol: 'none',
-                  x: '90%',
-                  yAxis: 'max'
-                }, {
-                  symbol: 'circle',
-                  label: {
-                    normal: {
-                      position: 'start',
-                      formatter: '最大值'
-                    }
-                  },
-                  type: 'max',
-                  name: '最高点'
-                }]
-              ]
-            }
-          }
-        ]
-      })
-    }
-  }
-}
-</script>

+ 0 - 120
src/views/report/queryElec/components/PieChartDepartment.vue

@@ -1,120 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-// import { debounce } from '@/utils'
-
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    pieDeptData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null
-    }
-  },
-  watch: {
-    pieDeptData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        console.log('watch拿到的val', val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.pieDeptData)
-      // console.log('methods拿到的pieDeptData', this.pieDeptData)
-    },
-    setOptions({ DeptData, text } = {}) {
-      // console.log('setOptions拿到的DeptData', DeptData)
-      this.chart.setOption({
-        title: {
-          text: text + '月部门统计',
-          subtext: '',
-          x: 'center'
-        },
-        tooltip: {
-          trigger: 'item',
-          formatter: '{a} <br/>{b} : {c} ({d}%)'
-        },
-        legend: {
-          orient: 'vertical',
-          left: 'left',
-          data: ['', '', '', '', '']
-        },
-        series: [
-          {
-            name: text + '月',
-            type: 'pie',
-            radius: '55%',
-            center: ['50%', '60%'],
-            data: DeptData,
-            // data: [
-            //   { value: 335, name: '直接访问' },
-            //   { value: 310, name: '邮件营销' },
-            //   { value: 234, name: '联盟广告' },
-            //   { value: 135, name: '视频广告' },
-            //   { value: 1548, name: '搜索引擎' }
-            // ],
-            itemStyle: {
-              emphasis: {
-                shadowBlur: 10,
-                shadowOffsetX: 0,
-                shadowColor: 'rgba(0, 0, 0, 0.5)'
-              }
-            }
-          }
-        ]
-      })
-      const that = this
-      // 点击饼图拿到对应内容
-      this.chart.on('click', function(params) {
-        // console.log(params)
-        that.$emit('chartClickDept', params.name)
-      })
-    }
-  }
-}
-</script>

+ 0 - 109
src/views/report/queryElec/components/PieChartType.vue

@@ -1,109 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    pieTypeData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null
-    }
-  },
-  watch: {
-    pieTypeData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        console.log('watch拿到的val', val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.pieTypeData)
-      // console.log('methods拿到的pieTypeData', this.pieTypeData)
-    },
-    setOptions({ TypeData, text } = {}) {
-      // console.log('setOptions拿到的TypeData', TypeData)
-      this.chart.setOption({
-        title: {
-          text: text + '月类型统计',
-          subtext: '',
-          x: 'center'
-        },
-        tooltip: {
-          trigger: 'item',
-          formatter: '{a} <br/>{b} : {c} ({d}%)'
-        },
-        legend: {
-          orient: 'vertical',
-          left: 'left',
-          data: ['', '', '', '', '']
-        },
-        series: [
-          {
-            name: text + '月',
-            type: 'pie',
-            radius: '55%',
-            center: ['50%', '60%'],
-            data: TypeData,
-            itemStyle: {
-              emphasis: {
-                shadowBlur: 10,
-                shadowOffsetX: 0,
-                shadowColor: 'rgba(0, 0, 0, 0.5)'
-              }
-            }
-          }
-        ]
-      })
-      const that = this
-      // 点击饼图拿到对应内容
-      this.chart.on('click', function(params) {
-        console.log(params)
-        that.$emit('chartClickType', params.name)
-      })
-    }
-  }
-}
-</script>

+ 0 - 81
src/views/report/queryElec/components/TodoList/Todo.vue

@@ -1,81 +0,0 @@
-<template>
-  <li :class="{ completed: todo.done, editing: editing }" class="todo">
-    <div class="view">
-      <input
-        :checked="todo.done"
-        class="toggle"
-        type="checkbox"
-        @change="toggleTodo( todo)"
-      >
-      <label @dblclick="editing = true" v-text="todo.text" />
-      <button class="destroy" @click="deleteTodo( todo )" />
-    </div>
-    <input
-      v-show="editing"
-      v-focus="editing"
-      :value="todo.text"
-      class="edit"
-      @keyup.enter="doneEdit"
-      @keyup.esc="cancelEdit"
-      @blur="doneEdit"
-    >
-  </li>
-</template>
-
-<script>
-export default {
-  name: 'Todo',
-  directives: {
-    focus(el, { value }, { context }) {
-      if (value) {
-        context.$nextTick(() => {
-          el.focus()
-        })
-      }
-    }
-  },
-  props: {
-    todo: {
-      type: Object,
-      default: function() {
-        return {}
-      }
-    }
-  },
-  data() {
-    return {
-      editing: false
-    }
-  },
-  methods: {
-    deleteTodo(todo) {
-      this.$emit('deleteTodo', todo)
-    },
-    editTodo({ todo, value }) {
-      this.$emit('editTodo', { todo, value })
-    },
-    toggleTodo(todo) {
-      this.$emit('toggleTodo', todo)
-    },
-    doneEdit(e) {
-      const value = e.target.value.trim()
-      const { todo } = this
-      if (!value) {
-        this.deleteTodo({
-          todo
-        })
-      } else if (this.editing) {
-        this.editTodo({
-          todo,
-          value
-        })
-        this.editing = false
-      }
-    },
-    cancelEdit(e) {
-      e.target.value = this.todo.text
-      this.editing = false
-    }
-  }
-}
-</script>

+ 0 - 320
src/views/report/queryElec/components/TodoList/index.scss

@@ -1,320 +0,0 @@
-.todoapp {
-  font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
-  line-height: 1.4em;
-  color: #4d4d4d;
-  min-width: 230px;
-  max-width: 550px;
-  margin: 0 auto ;
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-  font-weight: 300;
-  background: #fff;
-  z-index: 1;
-  position: relative;
-  button {
-    margin: 0;
-    padding: 0;
-    border: 0;
-    background: none;
-    font-size: 100%;
-    vertical-align: baseline;
-    font-family: inherit;
-    font-weight: inherit;
-    color: inherit;
-    -webkit-appearance: none;
-    appearance: none;
-    -webkit-font-smoothing: antialiased;
-    -moz-osx-font-smoothing: grayscale;
-  }
-  :focus {
-    outline: 0;
-  }
-  .hidden {
-    display: none;
-  }
-  .todoapp {
-    background: #fff;
-    margin: 130px 0 40px 0;
-    position: relative;
-    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
-  }
-  .todoapp input::-webkit-input-placeholder {
-    font-style: italic;
-    font-weight: 300;
-    color: #e6e6e6;
-  }
-  .todoapp input::-moz-placeholder {
-    font-style: italic;
-    font-weight: 300;
-    color: #e6e6e6;
-  }
-  .todoapp input::input-placeholder {
-    font-style: italic;
-    font-weight: 300;
-    color: #e6e6e6;
-  }
-  .todoapp h1 {
-    position: absolute;
-    top: -155px;
-    width: 100%;
-    font-size: 100px;
-    font-weight: 100;
-    text-align: center;
-    color: rgba(175, 47, 47, 0.15);
-    -webkit-text-rendering: optimizeLegibility;
-    -moz-text-rendering: optimizeLegibility;
-    text-rendering: optimizeLegibility;
-  }
-  .new-todo,
-  .edit {
-    position: relative;
-    margin: 0;
-    width: 100%;
-    font-size: 18px;
-    font-family: inherit;
-    font-weight: inherit;
-    line-height: 1.4em;
-    border: 0;
-    color: inherit;
-    padding: 6px;
-    border: 1px solid #999;
-    box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2);
-    box-sizing: border-box;
-    -webkit-font-smoothing: antialiased;
-    -moz-osx-font-smoothing: grayscale;
-  }
-  .new-todo {
-    padding: 10px 16px 16px 60px;
-    border: none;
-    background: rgba(0, 0, 0, 0.003);
-    box-shadow: inset 0 -2px 1px rgba(0, 0, 0, 0.03);
-  }
-  .main {
-    position: relative;
-    z-index: 2;
-    border-top: 1px solid #e6e6e6;
-  }
-  .toggle-all {
-    text-align: center;
-    border: none;
-    /* Mobile Safari */
-    opacity: 0;
-    position: absolute;
-  }
-  .toggle-all+label {
-    width: 60px;
-    height: 34px;
-    font-size: 0;
-    position: absolute;
-    top: -52px;
-    left: -13px;
-    -webkit-transform: rotate(90deg);
-    transform: rotate(90deg);
-  }
-  .toggle-all+label:before {
-    content: '❯';
-    font-size: 22px;
-    color: #e6e6e6;
-    padding: 10px 27px 10px 27px;
-  }
-  .toggle-all:checked+label:before {
-    color: #737373;
-  }
-  .todo-list {
-    margin: 0;
-    padding: 0;
-    list-style: none;
-  }
-  .todo-list li {
-    position: relative;
-    font-size: 24px;
-    border-bottom: 1px solid #ededed;
-  }
-  .todo-list li:last-child {
-    border-bottom: none;
-  }
-  .todo-list li.editing {
-    border-bottom: none;
-    padding: 0;
-  }
-  .todo-list li.editing .edit {
-    display: block;
-    width: 506px;
-    padding: 12px 16px;
-    margin: 0 0 0 43px;
-  }
-  .todo-list li.editing .view {
-    display: none;
-  }
-  .todo-list li .toggle {
-    text-align: center;
-    width: 40px;
-    /* auto, since non-WebKit browsers doesn't support input styling */
-    height: auto;
-    position: absolute;
-    top: 0;
-    bottom: 0;
-    margin: auto 0;
-    border: none;
-    /* Mobile Safari */
-    -webkit-appearance: none;
-    appearance: none;
-  }
-  .todo-list li .toggle {
-    opacity: 0;
-  }
-  .todo-list li .toggle+label {
-    /*
-    Firefox requires `#` to be escaped - https://bugzilla.mozilla.org/show_bug.cgi?id=922433
-    IE and Edge requires *everything* to be escaped to render, so we do that instead of just the `#` - https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7157459/
-  */
-    background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%23ededed%22%20stroke-width%3D%223%22/%3E%3C/svg%3E');
-    background-repeat: no-repeat;
-    background-position: center left;
-    background-size: 36px;
-  }
-  .todo-list li .toggle:checked+label {
-    background-size: 36px;
-    background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%23bddad5%22%20stroke-width%3D%223%22/%3E%3Cpath%20fill%3D%22%235dc2af%22%20d%3D%22M72%2025L42%2071%2027%2056l-4%204%2020%2020%2034-52z%22/%3E%3C/svg%3E');
-  }
-  .todo-list li label {
-    word-break: break-all;
-    padding: 15px 15px 15px 50px;
-    display: block;
-    line-height: 1.0;
-        font-size: 14px;
-    transition: color 0.4s;
-  }
-  .todo-list li.completed label {
-    color: #d9d9d9;
-    text-decoration: line-through;
-  }
-  .todo-list li .destroy {
-    display: none;
-    position: absolute;
-    top: 0;
-    right: 10px;
-    bottom: 0;
-    width: 40px;
-    height: 40px;
-    margin: auto 0;
-    font-size: 30px;
-    color: #cc9a9a;
-    transition: color 0.2s ease-out;
-    cursor: pointer;
-  }
-  .todo-list li .destroy:hover {
-    color: #af5b5e;
-  }
-  .todo-list li .destroy:after {
-    content: '×';
-  }
-  .todo-list li:hover .destroy {
-    display: block;
-  }
-  .todo-list li .edit {
-    display: none;
-  }
-  .todo-list li.editing:last-child {
-    margin-bottom: -1px;
-  }
-  .footer {
-    color: #777;
-    position: relative;
-    padding: 10px 15px;
-    height: 40px;
-    text-align: center;
-    border-top: 1px solid #e6e6e6;
-  }
-  .footer:before {
-    content: '';
-    position: absolute;
-    right: 0;
-    bottom: 0;
-    left: 0;
-    height: 40px;
-    overflow: hidden;
-    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 8px 0 -3px #f6f6f6, 0 9px 1px -3px rgba(0, 0, 0, 0.2), 0 16px 0 -6px #f6f6f6, 0 17px 2px -6px rgba(0, 0, 0, 0.2);
-  }
-  .todo-count {
-    float: left;
-    text-align: left;
-  }
-  .todo-count strong {
-    font-weight: 300;
-  }
-  .filters {
-    margin: 0;
-    padding: 0;
-    position: relative;
-    z-index: 1;
-    list-style: none;
-  }
-  .filters li {
-    display: inline;
-  }
-  .filters li a {
-    color: inherit;
-    font-size: 12px;
-    padding: 3px 7px;
-    text-decoration: none;
-    border: 1px solid transparent;
-    border-radius: 3px;
-  }
-  .filters li a:hover {
-    border-color: rgba(175, 47, 47, 0.1);
-  }
-  .filters li a.selected {
-    border-color: rgba(175, 47, 47, 0.2);
-  }
-  .clear-completed,
-  html .clear-completed:active {
-    float: right;
-    position: relative;
-    line-height: 20px;
-    text-decoration: none;
-    cursor: pointer;
-  }
-  .clear-completed:hover {
-    text-decoration: underline;
-  }
-  .info {
-    margin: 65px auto 0;
-    color: #bfbfbf;
-    font-size: 10px;
-    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
-    text-align: center;
-  }
-  .info p {
-    line-height: 1;
-  }
-  .info a {
-    color: inherit;
-    text-decoration: none;
-    font-weight: 400;
-  }
-  .info a:hover {
-    text-decoration: underline;
-  }
-  /*
-  Hack to remove background from Mobile Safari.
-  Can't use it globally since it destroys checkboxes in Firefox
-*/
-  @media screen and (-webkit-min-device-pixel-ratio:0) {
-    .toggle-all,
-    .todo-list li .toggle {
-      background: none;
-    }
-    .todo-list li .toggle {
-      height: 40px;
-    }
-  }
-  @media (max-width: 430px) {
-    .footer {
-      height: 50px;
-    }
-    .filters {
-      bottom: 10px;
-    }
-  }
-}

+ 0 - 127
src/views/report/queryElec/components/TodoList/index.vue

@@ -1,127 +0,0 @@
-<template>
-  <section class="todoapp">
-    <!-- header -->
-    <header class="header">
-      <input class="new-todo" autocomplete="off" placeholder="Todo List" @keyup.enter="addTodo">
-    </header>
-    <!-- main section -->
-    <section v-show="todos.length" class="main">
-      <input id="toggle-all" :checked="allChecked" class="toggle-all" type="checkbox" @change="toggleAll({ done: !allChecked })">
-      <label for="toggle-all" />
-      <ul class="todo-list">
-        <todo
-          v-for="(todo, index) in filteredTodos"
-          :key="index"
-          :todo="todo"
-          @toggleTodo="toggleTodo"
-          @editTodo="editTodo"
-          @deleteTodo="deleteTodo"
-        />
-      </ul>
-    </section>
-    <!-- footer -->
-    <footer v-show="todos.length" class="footer">
-      <span class="todo-count">
-        <strong>{{ remaining }}</strong>
-        {{ remaining | pluralize('item') }} left
-      </span>
-      <ul class="filters">
-        <li v-for="(val, key) in filters" :key="key">
-          <a :class="{ selected: visibility === key }" @click.prevent="visibility = key">{{ key | capitalize }}</a>
-        </li>
-      </ul>
-      <!-- <button class="clear-completed" v-show="todos.length > remaining" @click="clearCompleted">
-        Clear completed
-      </button> -->
-    </footer>
-  </section>
-</template>
-
-<script>
-import Todo from './Todo.vue'
-
-const STORAGE_KEY = 'todos'
-const filters = {
-  all: todos => todos,
-  active: todos => todos.filter(todo => !todo.done),
-  completed: todos => todos.filter(todo => todo.done)
-}
-const defalutList = [
-  { text: 'star this repository', done: false },
-  { text: 'fork this repository', done: false },
-  { text: 'follow author', done: false },
-  { text: 'vue-element-admin', done: true },
-  { text: 'vue', done: true },
-  { text: 'element-ui', done: true },
-  { text: 'axios', done: true },
-  { text: 'webpack', done: true }
-]
-export default {
-  components: { Todo },
-  filters: {
-    pluralize: (n, w) => n === 1 ? w : w + 's',
-    capitalize: s => s.charAt(0).toUpperCase() + s.slice(1)
-  },
-  data() {
-    return {
-      visibility: 'all',
-      filters,
-      // todos: JSON.parse(window.localStorage.getItem(STORAGE_KEY)) || defalutList
-      todos: defalutList
-    }
-  },
-  computed: {
-    allChecked() {
-      return this.todos.every(todo => todo.done)
-    },
-    filteredTodos() {
-      return filters[this.visibility](this.todos)
-    },
-    remaining() {
-      return this.todos.filter(todo => !todo.done).length
-    }
-  },
-  methods: {
-    setLocalStorage() {
-      window.localStorage.setItem(STORAGE_KEY, JSON.stringify(this.todos))
-    },
-    addTodo(e) {
-      const text = e.target.value
-      if (text.trim()) {
-        this.todos.push({
-          text,
-          done: false
-        })
-        this.setLocalStorage()
-      }
-      e.target.value = ''
-    },
-    toggleTodo(val) {
-      val.done = !val.done
-      this.setLocalStorage()
-    },
-    deleteTodo(todo) {
-      this.todos.splice(this.todos.indexOf(todo), 1)
-      this.setLocalStorage()
-    },
-    editTodo({ todo, value }) {
-      todo.text = value
-      this.setLocalStorage()
-    },
-    clearCompleted() {
-      this.todos = this.todos.filter(todo => !todo.done)
-      this.setLocalStorage()
-    },
-    toggleAll({ done }) {
-      this.todos.forEach(todo => {
-        todo.done = done
-        this.setLocalStorage()
-      })
-    }
-  }
-}
-</script>
-
-<style lang="scss">
-  @import './index.scss';
-</style>

+ 0 - 56
src/views/report/queryElec/components/mixins/resize.js

@@ -1,56 +0,0 @@
-import { debounce } from '@/utils'
-
-export default {
-  data() {
-    return {
-      $_sidebarElm: null
-    }
-  },
-  mounted() {
-    this.$_initResizeEvent()
-    this.$_initSidebarResizeEvent()
-  },
-  beforeDestroy() {
-    this.$_destroyResizeEvent()
-    this.$_destroySidebarResizeEvent()
-  },
-  // to fixed bug when cached by keep-alive
-  // https://github.com/PanJiaChen/vue-element-admin/issues/2116
-  activated() {
-    this.$_initResizeEvent()
-    this.$_initSidebarResizeEvent()
-  },
-  deactivated() {
-    this.$_destroyResizeEvent()
-    this.$_destroySidebarResizeEvent()
-  },
-  methods: {
-    // use $_ for mixins properties
-    // https://vuejs.org/v2/style-guide/index.html#Private-property-names-essential
-    $_resizeHandler() {
-      return debounce(() => {
-        if (this.chart) {
-          this.chart.resize()
-        }
-      }, 100)()
-    },
-    $_initResizeEvent() {
-      window.addEventListener('resize', this.$_resizeHandler)
-    },
-    $_destroyResizeEvent() {
-      window.removeEventListener('resize', this.$_resizeHandler)
-    },
-    $_sidebarResizeHandler(e) {
-      if (e.propertyName === 'width') {
-        this.$_resizeHandler()
-      }
-    },
-    $_initSidebarResizeEvent() {
-      this.$_sidebarElm = document.getElementsByClassName('sidebar-container')[0]
-      this.$_sidebarElm && this.$_sidebarElm.addEventListener('transitionend', this.$_sidebarResizeHandler)
-    },
-    $_destroySidebarResizeEvent() {
-      this.$_sidebarElm && this.$_sidebarElm.removeEventListener('transitionend', this.$_sidebarResizeHandler)
-    }
-  }
-}

+ 0 - 580
src/views/report/queryElec/index11.vue

@@ -1,580 +0,0 @@
-/* eslint-disable vue/valid-template-root */
-<template>
-  <div class="app-container">
-    <div class="filter-container">
-      <div class="block">
-        <el-date-picker v-model="yearDate" :clearable="false" type="year" placeholder="选择年" />
-
-        <el-radio-group v-model="radio"    style="float:right;margin-top:20px">
-          <el-radio  label="集团">集团</el-radio>
-          <el-radio  label="一中心">一中心</el-radio>
-          <el-radio  label="二中心">二中心</el-radio>
-          <el-radio  label="三中心">三中心</el-radio>
-        </el-radio-group>   
-
-      </div>
-    </div>
-
-    <el-row v-if="isBarChart1" style="position: relative;">
-      <p style="position: absolute;top:-12px;left:40%;color:rgb(130, 165, 252);background:rgb(230, 243, 255);border:1px solid rgb(130, 165, 252);padding:10px;border-radius:10px">
-        {{ year }}年集团用电量:{{ total }}万千瓦
-      </p>
-      <el-col :span="24">
-        <div id="barChart1" style="width: 100%;height:400px;" />
-      </el-col>
-    </el-row>
-
-    <!-- 年度维修成本 -->
-    <el-row>
-      <el-col :span="12">
-        <div id="lineChart1" style="width: 100%;height:400px;" />
-      </el-col>
-      <el-col :span="12">
-        <div id="lineChart2" style="width: 100%;height:400px;" />
-      </el-col>
-    </el-row>
-
-    <el-row>
-      <el-col :span="12">
-        <div id="pieChart1" style="width: 100%;height:400px;" />
-      </el-col>
-      <el-col :span="12">
-        <div id="barChart2" style="width: 100%;height:400px;" />
-      </el-col>
-    </el-row>
-
-  </div>
-
-</template>
-
-<script>
-import echarts from 'echarts'
-
-require('echarts/theme/macarons') // echarts theme
-
-// eslint-disable-next-line no-unused-vars
-import waves from '@/directive/waves' // waves directive
-import Pagination from '@/components/Pagination' // secondary package based on el-pagination
-import { GetDataByName, GetDataByNames, GetReportform, checkButtons } from '@/api/common'
-import { parseTime } from '@/utils/index.js'
-
-import Cookies from 'js-cookie'
-export default {
-  name: 'QueryElec',
-  directives: { waves },
-  components: { Pagination },
-  data() {
-    return {
-      yearDate: new Date(),
-
-      radio: "集团",
-
-      pasture: Cookies.get('pasturename'),
-      year: new Date().getFullYear(),
-      month: new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1,
-      deptment: '维修处',
-      total: '',
-      getBarChart1Parm: {
-        name: 'getpSumNowElec',
-        parammaps: {
-          receiveTime: new Date().getFullYear(),
-          center:'',
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getLineChart1Parm: {
-        name: 'getPastureSumMonthElec',
-        parammaps: {
-          receiveTime: new Date().getFullYear(),
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getLineChart2Parm: {
-        name: 'getPastureSumDayElec',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() <= 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getPieChart1Parm: {
-        name: 'getdeptSumMonthElec',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() <= 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getBarChart2Parm: {
-        name: 'geteqclassSumMonthElec',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() <= 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename'),
-          deptName: ''
-        }
-      },
-      barChart1: null,
-      lineChart1: null,
-      lineChart2: null,
-      pieChart1: null,
-      barChart2: null,
-
-      chart_data1: {
-        // pasture: ['宝鸡', '恒盛', '塞一', '塞二', '塞三', '塞四', '塞五', '通山', '合肥', '和林'],
-        // nowYear: [123, 332, 222, 333, 444, 333, 222, 334, 234, 223],
-        // lastYear: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66]
-      },
-      chart_data2: {
-        // months: ['2019-01', '2019-02', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01'],
-        // nowYear: [123, 332, 222, 333, 444, 333, 222, 334, 234, 223],
-        // lastYear: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66],
-        // budget: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66]
-      },
-      chart_data3: {
-        // day: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'],
-        // nowYear: [123, 332, 222, 333, 444, 333, 222, 334, 234, 223],
-        // lastYear: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66]
-      },
-      chart_data4: {
-        // name: ['饲养处', '其他部门', '设备处', '能源处', '牧场办公室'],
-        // psum: [
-        //   { value: 335, name: '饲养处' },
-        //   { value: 310, name: '其他部门' },
-        //   { value: 234, name: '设备处' },
-        //   { value: 135, name: '能源处' },
-        //   { value: 1548, name: '牧场办公室' }
-        // ]
-      },
-      chart_data5: {
-        // typeName: ['小型装载机', '叉车', '拖拉机', '抛料机', '搅拌机'],
-        // eqCost: [123, 332, 222, 333, 444],
-        // lastYear: [22, 342, 234, 234, 66]
-      },
-
-      tableKey: 0,
-      list: null,
-      total: 0,
-      listLoading: true,
-      rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
-      cellStyle: { padding: 0 + 'px' },
-
-      dialogFormVisibleCard: false,
-      listLoadingSee: true,
-      rowSeeData: {},
-      listSee: [],
-      totalSee: 0,
-      getdataListParmSee: {
-        name: 'geteqclassSumDay',
-        page: 1,
-        offset: 1,
-        pagecount: 10,
-        returntype: 'Map',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() <= 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename'),
-          deptName: '',
-          typeName: '',
-          assetCode: '',
-          eqName: '',
-          startTime: '',
-          stopTime: '',
-          pastureId: Cookies.get('pastureid')
-        }
-      },
-      buttons: [],
-      isBarChart1: []
-
-    }
-  },
-
-  watch: {
-    'yearDate': {
-      deep: true,
-      handler: function(newVal, oldVal) {
-        var time = this.yearDate
-        console.log(newVal.getFullYear())
-        this.year = time.getFullYear()
-        this.getBarChart1Parm.parammaps.receiveTime = time.getFullYear()
-        this.getLineChart1Parm.parammaps.receiveTime = time.getFullYear()
-        this.getLineChart2Parm.parammaps.receiveTime = time.getFullYear() + '-' + (new Date().getMonth() <= 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1)
-        this.getPieChart1Parm.parammaps.receiveTime = time.getFullYear() + '-' + (new Date().getMonth() <= 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1)
-        this.getBarChart2Parm.parammaps.receiveTime = time.getFullYear() + '-' + (new Date().getMonth() <= 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1)
-
-        this.getBarChart1()
-        this.getLineChart1()
-        this.getLineChart2()
-        this.getPieChart1()
-      }
-    },
-    'radio': {
-      deep: true,
-      handler: function(newVal, oldVal) {
-        console.log(newVal, oldVal)
-        if(newVal == '集团'){
-          this.getBarChart1Parm.parammaps.center = ''
-        } else {
-          this.getBarChart1Parm.parammaps.center = newVal
-        }
-        this.getBarChart1()
-        // this.getLineChart1()
-        // this.getLineChart2()
-        // this.getPieChart1()
-      }
-    },
-  },
-
-  created() {
-    this.getBarChart1()
-    this.getLineChart1()
-    this.getLineChart2()
-    this.getPieChart1()
-    const that = this
-    GetDataByName({ 'name': 'getUserPCButtons', 'parammaps': { 'jwt_username': Cookies.get('name') }}).then(response => {
-      that.buttons = response.data.list
-      that.get_auto_buttons()
-    })
-  },
-  mounted() {
-    // this.roadBarChart1(this.chart_data1)
-    // this.roadlineChart1(this.chart_data2, this.pasture, this.year)
-    // this.roadlineChart2(this.chart_data3, this.pasture, this.month)
-    //  this.roadpieChart1(this.chart_data4, this.month)
-    // this.roadBarChart2(this.chart_data5, this.deptment)
-  },
-  methods: {
-    get_auto_buttons() {
-      // 图1
-      const BarChart1 = 'report:queryElec:pastures'
-      const isBarChart1 = checkButtons(this.$store.state.user.buttons, BarChart1)
-      this.isBarChart1 = isBarChart1
-    },
-    // 各牧场年度维修成本对比
-    getBarChart1() {
-      GetReportform(this.getBarChart1Parm).then(response => {
-        console.log('图1', response)
-        this.chart_data1 = response.data.chart_data
-        this.roadBarChart1(this.chart_data1)
-        var nowYear = response.data.chart_data.nowYear
-        var total = 0
-        if (nowYear !== null || nowYear !== undefined) {
-          nowYear.forEach(function(item, index) {
-            console.log(parseFloat(item))
-            total = total + parseFloat(item)
-          })
-        }
-        this.total = total.toFixed(4)
-      })
-    },
-    getLineChart1() {
-      GetReportform(this.getLineChart1Parm).then(response => {
-        console.log('图2', response)
-        this.chart_data2 = response.data.chart_data
-        this.roadlineChart1(this.chart_data2, this.pasture, this.year)
-      })
-    },
-    getLineChart2() {
-      GetReportform(this.getLineChart2Parm).then(response => {
-        console.log('图3', response)
-        this.chart_data3 = response.data.chart_data
-        this.roadlineChart2(this.chart_data3, this.pasture, this.month)
-      })
-    },
-    getPieChart1() {
-      GetDataByName(this.getPieChart1Parm).then(response => {
-        console.log('图4', response)
-        if (response.data === null || response.data.list === null) {
-          this.chart_data4 = { name: [], psum: [] }
-          this.roadpieChart1(this.chart_data4, this.month)
-        } else {
-          this.chart_data4.psum = response.data.list
-          var name = []
-          console.log(response.data.list)
-          response.data.list.forEach(function(i) {
-            name.push(i.name)
-          })
-          console.log(this.chart_data4)
-          this.chart_data4.name = name
-          this.roadpieChart1(this.chart_data4, this.month)
-          this.deptment = name[0]
-          this.getdataListParmSee.parammaps.deptName = name[0]
-          this.getBarChart2Parm.parammaps.deptName = name[0]
-          this.getBarChart2()
-        }
-      })
-    },
-    getBarChart2() {
-      GetReportform(this.getBarChart2Parm).then(response => {
-        console.log('图5', response)
-        this.chart_data5 = response.data.chart_data
-        this.roadBarChart2(this.chart_data5, this.deptment)
-      })
-    },
-
-    // 各牧场年度维修成本对比
-    roadBarChart1(chart_data1) {
-      if (this.barChart1 != null) {
-        this.barChart1.dispose()
-      }
-      this.barChart1 = echarts.init(document.getElementById('barChart1'))
-      var option = {
-        title: { text: '各牧场年度用电量对比', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['今年用量', '去年同期'],
-          right: 40
-        },
-        color: ['#2dc0e8', '#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '4%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data1.pasture, axisLabel: { interval: 0, rotate: 30 }}],
-        yAxis: [{ type: 'value', name: '电量(千瓦)', axisLabel: { formatter: '{value}万' }}],
-        series: [
-          {
-            name: '今年用量',
-            type: 'bar',
-            data: chart_data1.nowYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '去年同期',
-            type: 'bar',
-            data: chart_data1.lastYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.barChart1.setOption(option)
-      window.onresize = function() {
-        this.barChart1.resize()
-      }
-      var that = this
-      this.barChart1.on('click', function(param, i) {
-        console.log(param)
-        that.pasture = param.name
-        that.getLineChart1Parm.parammaps.pastureName = param.name
-        that.getLineChart2Parm.parammaps.pastureName = param.name
-        that.getPieChart1Parm.parammaps.pastureName = param.name
-        that.getBarChart2Parm.parammaps.pastureName = param.name
-
-        that.getLineChart1()
-        that.getLineChart2()
-        that.getPieChart1()
-      })
-    },
-    // 每月维修成本对比
-    roadlineChart1(chart_data2, pasture, year) {
-      if (this.lineChart1 != null) {
-        this.lineChart1.dispose()
-      }
-      this.lineChart1 = echarts.init(document.getElementById('lineChart1'))
-      var option = {
-        title: { text: pasture + year + '每月用电量对比', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['今年用量', '去年同期用量'],
-          x: 'right'
-        },
-        color: [ '#769cfc', '#FFB800', '#6bda00'],
-        grid: { left: '3%', right: '5%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data2.months, name: '月份', axisLabel: { interval: 0, rotate: 30 }}],
-        yAxis: [{ type: 'value', name: '电量(千瓦)', axisLabel: { formatter: '{value}万' }}],
-        series: [
-          {
-            name: '今年用量',
-            type: 'line',
-            data: chart_data2.nowYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '去年同期用量',
-            type: 'line',
-            data: chart_data2.lastYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '预算',
-            type: 'line',
-            data: chart_data2.budget,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.lineChart1.setOption(option)
-      window.onresize = function() {
-        this.lineChart1.resize()
-      }
-      var that = this
-      this.lineChart1.on('click', function(param, i) {
-        console.log(param)
-
-        that.getLineChart2Parm.parammaps.receiveTime = param.name
-        that.getPieChart1Parm.parammaps.receiveTime = param.name
-        that.getBarChart2Parm.parammaps.receiveTime = param.name
-
-        var num = param.name.substring(5)
-        console.log(num)
-        that.month = num
-        that.getLineChart2()
-        that.getPieChart1()
-      })
-    },
-
-    // 每月维修成本对比
-    roadlineChart2(chart_data3, pasture, month) {
-      if (this.lineChart2 != null) {
-        this.lineChart2.dispose()
-      }
-      this.lineChart2 = echarts.init(document.getElementById('lineChart2'))
-      var option = {
-        title: { text: pasture + month + '月每日用电量对比', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['今年日用量', '去年同期'],
-          x: 'right'
-        },
-        color: [ '#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '5%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data3.day, name: '日期', axisLabel: { interval: 0 }}],
-        yAxis: [{ type: 'value', name: '电量(千瓦)', axisLabel: { formatter: '{value}' }}],
-        series: [
-          {
-            name: '今年日用量',
-            type: 'line',
-            data: chart_data3.nowYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '去年同期',
-            type: 'line',
-            data: chart_data3.lastYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.lineChart2.setOption(option)
-      window.onresize = function() {
-        this.lineChart2.resize()
-      }
-      this.lineChart2.on('click', function(param, i) {
-        console.log(param)
-      })
-    },
-    // 部门统计
-    roadpieChart1(chart_data4, month) {
-      if (this.pieChart1 != null) {
-        this.pieChart1.dispose()
-      }
-      this.pieChart1 = echarts.init(document.getElementById('pieChart1'))
-      var option = {
-        title: { text: month + '月部门统计', textStyle: { color: '#769cfc' }},
-        tooltip: {
-          trigger: 'item',
-          formatter: '{a} <br/>{b} : {c} ({d}%)'
-        },
-        legend: {
-          data: chart_data4.name, top: 40, x: 'right'
-        },
-        color: ['#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '5%', bottom: '4%', containLabel: true },
-        series: [
-          {
-            name: '',
-            type: 'pie',
-            radius: '55%',
-            center: ['50%', '60%'],
-            data: chart_data4.psum,
-            emphasis: {
-              itemStyle: {
-                shadowBlur: 10,
-                shadowOffsetX: 0,
-                shadowColor: 'rgba(0, 0, 0, 0.5)'
-              }
-            }
-          }
-
-        ]
-      }
-      this.pieChart1.setOption(option)
-      window.onresize = function() {
-        this.pieChart1.resize()
-      }
-      var that = this
-      this.pieChart1.on('click', function(param, i) {
-        console.log(param)
-        that.deptment = param.name
-        that.getBarChart2Parm.parammaps.deptName = param.name
-        that.getBarChart2()
-      })
-    },
-    // 维修成本
-    roadBarChart2(chart_data5, deptment) {
-      if (this.barChart2 != null) {
-        this.barChart2.dispose()
-      }
-      this.barChart2 = echarts.init(document.getElementById('barChart2'))
-      var option = {
-        title: { text: deptment + '用电量', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['用电量'],
-          x: 'right'
-        },
-        color: [ '#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '10%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data5.typeName, name: '电表名称', axisLabel: { interval: 0 }}],
-        yAxis: [{ type: 'value', name: '电量(千瓦)', axisLabel: { formatter: '{value}万' }}],
-        series: [
-          {
-            name: '用电量',
-            type: 'bar',
-            barWidth: 14,
-            data: chart_data5.eqCost,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.barChart2.setOption(option)
-      window.onresize = function() {
-        this.barChart2.resize()
-      }
-    }
-
-  }
-}
-</script>
-<style>
-.el-row {
-    margin-bottom: 40px;
-    &:last-child {
-      margin-bottom: 0;
-    }
-  }
-</style>
-
-<style lang="scss" scoped>
-
-.dashboard-editor-container {
-  padding: 20px;
-  background-color: rgb(240, 242, 245);
-  position: relative;
-
-  .github-corner {
-    position: absolute;
-    top: 0px;
-    border: 0;
-    right: 0;
-  }
-
-  .chart-wrapper {
-    background: #fff;
-    padding: 16px 16px 0;
-  }
-}
-
-@media (max-width:1024px) {
-  .chart-wrapper {
-    padding: 8px;
-  }
-}
-</style>

+ 0 - 128
src/views/report/queryRepair/components/BarChartDept.vue

@@ -1,128 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-// import { parseTime } from '@/utils/index.js'
-// import { emit } from 'cluster'
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    barCharDeptData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null,
-      sourceDate: []
-    }
-  },
-  watch: {
-    barCharDeptData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        console.log(val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.barCharDeptData)
-      // console.log('this.barCharDeptData', this.barCharDeptData)
-    },
-    setOptions({ xAxisData, seriesData, text } = {}) {
-      this.chart.setOption({
-        title: {
-          text: text + '维修成本柱状图',
-          subtext: ''
-        },
-        tooltip: {
-          trigger: 'axis',
-          axisPointer: { // 坐标轴指示器,坐标轴触发有效
-            type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'
-          }
-        },
-        grid: {
-          left: '3%',
-          right: '15%',
-          bottom: '3%',
-          containLabel: true
-        },
-        xAxis: [
-          {
-            name: '水表名称',
-            type: 'category',
-            data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
-            // data: xAxisData,
-            axisTick: {
-              alignWithLabel: true
-            },
-            axisLabel: { interval: 0, rotate: 40 }
-          }
-        ],
-        yAxis: [
-          {
-            name: '吨',
-            type: 'value'
-          }
-        ],
-        series: [
-          {
-            type: 'bar',
-            barWidth: '60%',
-            data: [10, 52, 200, 334, 390, 330, 220]
-            // data: seriesData
-          }
-        ]
-      })
-      const that = this
-      // 点击柱状图拿到对应内容
-      this.chart.on('click', function(params) {
-        console.log(params)
-        // console.log(parseTime(new Date(), '{y}') + '-' + params.name.substring(0, 2))
-        // that.$emit('barClickDept', parseTime(new Date(), '{y}') + '-' + params.name.substring(0, 2))
-        that.$emit('barClickDept', params.name)
-      })
-    }
-  }
-}
-</script>

+ 0 - 114
src/views/report/queryRepair/components/BarChartPasture.vue

@@ -1,114 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-import { parseTime } from '@/utils/index.js'
-// import { emit } from 'cluster'
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    barPastureData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null,
-      sourceDate: []
-    }
-  },
-  watch: {
-    barPastureData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        console.log(val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.barPastureData)
-    },
-    setOptions({ sourceDate, text } = {}) {
-      this.chart.setOption({
-        title: {
-          text: '最近12个月维修同期对比',
-          subtext: ''
-        },
-        legend: { x: 'right' },
-        tooltip: {
-          trigger: 'axis',
-          axisPointer: { // 坐标轴指示器,坐标轴触发有效
-            type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'
-          }
-        },
-        dataset: {
-          source: sourceDate
-          // source: [
-          //   ['product', '去年同期', '预算', '实际']
-          //   // ['10月', 433, 85.8, 93.7],
-          //   // ['9月', 83.1, 73.4, 55.1],
-          //   // ['8月', 86.4, 65.2, 82.5],
-          //   // ['7月', 72.4, 53.9, 39.1]
-          // ]
-        },
-        xAxis: { type: 'category', name: '最近12个月', formatter: '' },
-        yAxis: { name: '元' },
-        grid: [
-          { left: '15%', right: '17%' }
-        ],
-        series: [
-          { type: 'bar' },
-          { type: 'bar' },
-          { type: 'bar' }
-        ]
-      })
-      const that = this
-      // 点击柱状图拿到对应内容
-      this.chart.on('click', function(params) {
-        // console.log(parseTime(new Date(), '{y}') + '-' + params.name.substring(0, 2))
-        that.$emit('chartClick', parseTime(new Date(), '{y}') + '-' + params.name.substring(0, 2))
-      })
-    }
-  }
-}
-</script>

+ 0 - 80
src/views/report/queryRepair/components/BarChartPastureMonth.vue

@@ -1,80 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '475px'
-    }
-  },
-  data() {
-    return {
-      chart: null
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.chart.setOption({
-        legend: {},
-        tooltip: {},
-        dataset: {
-          source: [
-            ['product', '2015', '2016', '2017'],
-            ['10月', 43.3, 85.8, 93.7],
-            ['9月', 83.1, 73.4, 55.1],
-            ['8月', 86.4, 65.2, 82.5],
-            ['7月', 72.4, 53.9, 39.1]
-          ]
-        },
-        xAxis: [
-          { type: 'category', gridIndex: 0, name: '最近12个月' }
-        ],
-        yAxis: [
-          { gridIndex: 0, name: '总费用' }
-        ],
-        grid: [
-          { bottom: '58%' },
-          { top: '58%' }
-        ],
-        series: [
-          { type: 'bar' },
-          { type: 'bar' },
-          { type: 'bar' }
-        ]
-      })
-    }
-  }
-}
-</script>

+ 0 - 165
src/views/report/queryRepair/components/Contrast.vue

@@ -1,165 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-import { debounce } from '@/utils'
-
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    contrastData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null
-    }
-  },
-  watch: {
-    contrastData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        console.log('watch拿到的val', val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.contrastData)
-      // console.log('methods拿到的pieDeptData', this.pieDeptData)
-    },
-    setOptions({ lastData, thisData, text, thisMinData, days } = {}) {
-      this.chart.setOption({
-        title: {
-          text: text + '月维修同期对比',
-          subtext: ''
-        },
-        tooltip: {
-          trigger: 'axis'
-        },
-        legend: {
-          data: ['去年', '今年']
-        },
-        toolbox: {
-          show: true,
-          feature: {
-            dataZoom: {
-              yAxisIndex: 'none'
-            },
-            dataView: { readOnly: false },
-            magicType: { type: ['line', 'bar'] },
-            restore: {},
-            saveAsImage: {}
-          }
-        },
-        xAxis: {
-          type: 'category',
-          name: '日期',
-          boundaryGap: false,
-          data: days
-        },
-        yAxis: {
-          type: 'value',
-          name: '元',
-          axisLabel: {
-            formatter: '{value}'
-          }
-        },
-        grid: [
-          { top: '25%', left: '15%' }
-        ],
-        series: [
-          {
-            name: '去年',
-            type: 'line',
-            // data: [11, 11, 15, 13, 12, 13, 10, 9, 11, 3],
-            data: lastData,
-            markPoint: {
-              data: [
-                // { type: 'max', name: '最大值' },
-                // { type: 'min', name: '最小值' }
-              ]
-            },
-            markLine: {
-              data: [
-                { type: 'average', name: '平均值' }
-              ]
-            }
-          },
-          {
-            name: '今年',
-            type: 'line',
-            // data: [1, 5, 2, 5, 3, 2, 0, 9, 6, 7],
-            data: thisData,
-            markPoint: {
-              data: [
-                // { name: '周最低', value: 5, xAxis: 1, yAxis: 2 }
-                // { type: 'max', name: '最大值' },
-                // { type: 'min', name: '最小值' }
-              ]
-            },
-            markLine: {
-              data: [
-                { type: 'average', name: '平均值' },
-                [{
-                  symbol: 'none',
-                  x: '90%',
-                  yAxis: 'max'
-                }, {
-                  symbol: 'circle',
-                  label: {
-                    normal: {
-                      position: 'start',
-                      formatter: '最大值'
-                    }
-                  },
-                  type: 'max',
-                  name: '最高点'
-                }]
-              ]
-            }
-          }
-        ]
-      })
-    }
-  }
-}
-</script>

+ 0 - 120
src/views/report/queryRepair/components/PieChartDepartment.vue

@@ -1,120 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-import { debounce } from '@/utils'
-
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    pieDeptData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null
-    }
-  },
-  watch: {
-    pieDeptData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        console.log('watch拿到的val', val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.pieDeptData)
-      // console.log('methods拿到的pieDeptData', this.pieDeptData)
-    },
-    setOptions({ DeptData, text } = {}) {
-      // console.log('setOptions拿到的DeptData', DeptData)
-      this.chart.setOption({
-        title: {
-          text: text + '月部门统计',
-          subtext: '',
-          x: 'center'
-        },
-        tooltip: {
-          trigger: 'item',
-          formatter: '{a} <br/>{b} : {c} ({d}%)'
-        },
-        legend: {
-          orient: 'vertical',
-          left: 'left',
-          data: ['', '', '', '', '']
-        },
-        series: [
-          {
-            name: text + '月',
-            type: 'pie',
-            radius: '55%',
-            center: ['50%', '60%'],
-            data: DeptData,
-            // data: [
-            //   { value: 335, name: '直接访问' },
-            //   { value: 310, name: '邮件营销' },
-            //   { value: 234, name: '联盟广告' },
-            //   { value: 135, name: '视频广告' },
-            //   { value: 1548, name: '搜索引擎' }
-            // ],
-            itemStyle: {
-              emphasis: {
-                shadowBlur: 10,
-                shadowOffsetX: 0,
-                shadowColor: 'rgba(0, 0, 0, 0.5)'
-              }
-            }
-          }
-        ]
-      })
-      const that = this
-      // 点击饼图拿到对应内容
-      this.chart.on('click', function(params) {
-        // console.log(params)
-        that.$emit('chartClickDept', params.name)
-      })
-    }
-  }
-}
-</script>

+ 0 - 116
src/views/report/queryRepair/components/PieChartType.vue

@@ -1,116 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    pieTypeData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null
-    }
-  },
-  watch: {
-    pieTypeData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        console.log('watch拿到的val', val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.pieTypeData)
-      // console.log('methods拿到的pieTypeData', this.pieTypeData)
-    },
-    setOptions({ TypeData, text } = {}) {
-      // console.log('setOptions拿到的TypeData', TypeData)
-      this.chart.setOption({
-        title: {
-          text: text + '月类型统计',
-          subtext: '',
-          x: 'center'
-        },
-        tooltip: {
-          trigger: 'item',
-          formatter: '{a} <br/>{b} : {c} ({d}%)'
-        },
-        legend: {
-          orient: 'vertical',
-          left: 'left',
-          data: ['', '', '', '', '']
-        },
-        series: [
-          {
-            name: text + '月',
-            type: 'pie',
-            radius: '55%',
-            center: ['50%', '60%'],
-            data: TypeData,
-            // data: [
-            //   { value: 335, name: '直接访问' },
-            //   { value: 310, name: '邮件营销' },
-            //   { value: 234, name: '联盟广告' },
-            //   { value: 135, name: '视频广告' },
-            //   { value: 1548, name: '搜索引擎' }
-            // ],
-            itemStyle: {
-              emphasis: {
-                shadowBlur: 10,
-                shadowOffsetX: 0,
-                shadowColor: 'rgba(0, 0, 0, 0.5)'
-              }
-            }
-          }
-        ]
-      })
-      const that = this
-      // 点击饼图拿到对应内容
-      this.chart.on('click', function(params) {
-        console.log(params)
-        that.$emit('chartClickType', params.name)
-      })
-    }
-  }
-}
-</script>

+ 0 - 81
src/views/report/queryRepair/components/TodoList/Todo.vue

@@ -1,81 +0,0 @@
-<template>
-  <li :class="{ completed: todo.done, editing: editing }" class="todo">
-    <div class="view">
-      <input
-        :checked="todo.done"
-        class="toggle"
-        type="checkbox"
-        @change="toggleTodo( todo)"
-      >
-      <label @dblclick="editing = true" v-text="todo.text" />
-      <button class="destroy" @click="deleteTodo( todo )" />
-    </div>
-    <input
-      v-show="editing"
-      v-focus="editing"
-      :value="todo.text"
-      class="edit"
-      @keyup.enter="doneEdit"
-      @keyup.esc="cancelEdit"
-      @blur="doneEdit"
-    >
-  </li>
-</template>
-
-<script>
-export default {
-  name: 'Todo',
-  directives: {
-    focus(el, { value }, { context }) {
-      if (value) {
-        context.$nextTick(() => {
-          el.focus()
-        })
-      }
-    }
-  },
-  props: {
-    todo: {
-      type: Object,
-      default: function() {
-        return {}
-      }
-    }
-  },
-  data() {
-    return {
-      editing: false
-    }
-  },
-  methods: {
-    deleteTodo(todo) {
-      this.$emit('deleteTodo', todo)
-    },
-    editTodo({ todo, value }) {
-      this.$emit('editTodo', { todo, value })
-    },
-    toggleTodo(todo) {
-      this.$emit('toggleTodo', todo)
-    },
-    doneEdit(e) {
-      const value = e.target.value.trim()
-      const { todo } = this
-      if (!value) {
-        this.deleteTodo({
-          todo
-        })
-      } else if (this.editing) {
-        this.editTodo({
-          todo,
-          value
-        })
-        this.editing = false
-      }
-    },
-    cancelEdit(e) {
-      e.target.value = this.todo.text
-      this.editing = false
-    }
-  }
-}
-</script>

+ 0 - 320
src/views/report/queryRepair/components/TodoList/index.scss

@@ -1,320 +0,0 @@
-.todoapp {
-  font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
-  line-height: 1.4em;
-  color: #4d4d4d;
-  min-width: 230px;
-  max-width: 550px;
-  margin: 0 auto ;
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-  font-weight: 300;
-  background: #fff;
-  z-index: 1;
-  position: relative;
-  button {
-    margin: 0;
-    padding: 0;
-    border: 0;
-    background: none;
-    font-size: 100%;
-    vertical-align: baseline;
-    font-family: inherit;
-    font-weight: inherit;
-    color: inherit;
-    -webkit-appearance: none;
-    appearance: none;
-    -webkit-font-smoothing: antialiased;
-    -moz-osx-font-smoothing: grayscale;
-  }
-  :focus {
-    outline: 0;
-  }
-  .hidden {
-    display: none;
-  }
-  .todoapp {
-    background: #fff;
-    margin: 130px 0 40px 0;
-    position: relative;
-    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
-  }
-  .todoapp input::-webkit-input-placeholder {
-    font-style: italic;
-    font-weight: 300;
-    color: #e6e6e6;
-  }
-  .todoapp input::-moz-placeholder {
-    font-style: italic;
-    font-weight: 300;
-    color: #e6e6e6;
-  }
-  .todoapp input::input-placeholder {
-    font-style: italic;
-    font-weight: 300;
-    color: #e6e6e6;
-  }
-  .todoapp h1 {
-    position: absolute;
-    top: -155px;
-    width: 100%;
-    font-size: 100px;
-    font-weight: 100;
-    text-align: center;
-    color: rgba(175, 47, 47, 0.15);
-    -webkit-text-rendering: optimizeLegibility;
-    -moz-text-rendering: optimizeLegibility;
-    text-rendering: optimizeLegibility;
-  }
-  .new-todo,
-  .edit {
-    position: relative;
-    margin: 0;
-    width: 100%;
-    font-size: 18px;
-    font-family: inherit;
-    font-weight: inherit;
-    line-height: 1.4em;
-    border: 0;
-    color: inherit;
-    padding: 6px;
-    border: 1px solid #999;
-    box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2);
-    box-sizing: border-box;
-    -webkit-font-smoothing: antialiased;
-    -moz-osx-font-smoothing: grayscale;
-  }
-  .new-todo {
-    padding: 10px 16px 16px 60px;
-    border: none;
-    background: rgba(0, 0, 0, 0.003);
-    box-shadow: inset 0 -2px 1px rgba(0, 0, 0, 0.03);
-  }
-  .main {
-    position: relative;
-    z-index: 2;
-    border-top: 1px solid #e6e6e6;
-  }
-  .toggle-all {
-    text-align: center;
-    border: none;
-    /* Mobile Safari */
-    opacity: 0;
-    position: absolute;
-  }
-  .toggle-all+label {
-    width: 60px;
-    height: 34px;
-    font-size: 0;
-    position: absolute;
-    top: -52px;
-    left: -13px;
-    -webkit-transform: rotate(90deg);
-    transform: rotate(90deg);
-  }
-  .toggle-all+label:before {
-    content: '❯';
-    font-size: 22px;
-    color: #e6e6e6;
-    padding: 10px 27px 10px 27px;
-  }
-  .toggle-all:checked+label:before {
-    color: #737373;
-  }
-  .todo-list {
-    margin: 0;
-    padding: 0;
-    list-style: none;
-  }
-  .todo-list li {
-    position: relative;
-    font-size: 24px;
-    border-bottom: 1px solid #ededed;
-  }
-  .todo-list li:last-child {
-    border-bottom: none;
-  }
-  .todo-list li.editing {
-    border-bottom: none;
-    padding: 0;
-  }
-  .todo-list li.editing .edit {
-    display: block;
-    width: 506px;
-    padding: 12px 16px;
-    margin: 0 0 0 43px;
-  }
-  .todo-list li.editing .view {
-    display: none;
-  }
-  .todo-list li .toggle {
-    text-align: center;
-    width: 40px;
-    /* auto, since non-WebKit browsers doesn't support input styling */
-    height: auto;
-    position: absolute;
-    top: 0;
-    bottom: 0;
-    margin: auto 0;
-    border: none;
-    /* Mobile Safari */
-    -webkit-appearance: none;
-    appearance: none;
-  }
-  .todo-list li .toggle {
-    opacity: 0;
-  }
-  .todo-list li .toggle+label {
-    /*
-    Firefox requires `#` to be escaped - https://bugzilla.mozilla.org/show_bug.cgi?id=922433
-    IE and Edge requires *everything* to be escaped to render, so we do that instead of just the `#` - https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7157459/
-  */
-    background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%23ededed%22%20stroke-width%3D%223%22/%3E%3C/svg%3E');
-    background-repeat: no-repeat;
-    background-position: center left;
-    background-size: 36px;
-  }
-  .todo-list li .toggle:checked+label {
-    background-size: 36px;
-    background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%23bddad5%22%20stroke-width%3D%223%22/%3E%3Cpath%20fill%3D%22%235dc2af%22%20d%3D%22M72%2025L42%2071%2027%2056l-4%204%2020%2020%2034-52z%22/%3E%3C/svg%3E');
-  }
-  .todo-list li label {
-    word-break: break-all;
-    padding: 15px 15px 15px 50px;
-    display: block;
-    line-height: 1.0;
-        font-size: 14px;
-    transition: color 0.4s;
-  }
-  .todo-list li.completed label {
-    color: #d9d9d9;
-    text-decoration: line-through;
-  }
-  .todo-list li .destroy {
-    display: none;
-    position: absolute;
-    top: 0;
-    right: 10px;
-    bottom: 0;
-    width: 40px;
-    height: 40px;
-    margin: auto 0;
-    font-size: 30px;
-    color: #cc9a9a;
-    transition: color 0.2s ease-out;
-    cursor: pointer;
-  }
-  .todo-list li .destroy:hover {
-    color: #af5b5e;
-  }
-  .todo-list li .destroy:after {
-    content: '×';
-  }
-  .todo-list li:hover .destroy {
-    display: block;
-  }
-  .todo-list li .edit {
-    display: none;
-  }
-  .todo-list li.editing:last-child {
-    margin-bottom: -1px;
-  }
-  .footer {
-    color: #777;
-    position: relative;
-    padding: 10px 15px;
-    height: 40px;
-    text-align: center;
-    border-top: 1px solid #e6e6e6;
-  }
-  .footer:before {
-    content: '';
-    position: absolute;
-    right: 0;
-    bottom: 0;
-    left: 0;
-    height: 40px;
-    overflow: hidden;
-    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 8px 0 -3px #f6f6f6, 0 9px 1px -3px rgba(0, 0, 0, 0.2), 0 16px 0 -6px #f6f6f6, 0 17px 2px -6px rgba(0, 0, 0, 0.2);
-  }
-  .todo-count {
-    float: left;
-    text-align: left;
-  }
-  .todo-count strong {
-    font-weight: 300;
-  }
-  .filters {
-    margin: 0;
-    padding: 0;
-    position: relative;
-    z-index: 1;
-    list-style: none;
-  }
-  .filters li {
-    display: inline;
-  }
-  .filters li a {
-    color: inherit;
-    font-size: 12px;
-    padding: 3px 7px;
-    text-decoration: none;
-    border: 1px solid transparent;
-    border-radius: 3px;
-  }
-  .filters li a:hover {
-    border-color: rgba(175, 47, 47, 0.1);
-  }
-  .filters li a.selected {
-    border-color: rgba(175, 47, 47, 0.2);
-  }
-  .clear-completed,
-  html .clear-completed:active {
-    float: right;
-    position: relative;
-    line-height: 20px;
-    text-decoration: none;
-    cursor: pointer;
-  }
-  .clear-completed:hover {
-    text-decoration: underline;
-  }
-  .info {
-    margin: 65px auto 0;
-    color: #bfbfbf;
-    font-size: 10px;
-    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
-    text-align: center;
-  }
-  .info p {
-    line-height: 1;
-  }
-  .info a {
-    color: inherit;
-    text-decoration: none;
-    font-weight: 400;
-  }
-  .info a:hover {
-    text-decoration: underline;
-  }
-  /*
-  Hack to remove background from Mobile Safari.
-  Can't use it globally since it destroys checkboxes in Firefox
-*/
-  @media screen and (-webkit-min-device-pixel-ratio:0) {
-    .toggle-all,
-    .todo-list li .toggle {
-      background: none;
-    }
-    .todo-list li .toggle {
-      height: 40px;
-    }
-  }
-  @media (max-width: 430px) {
-    .footer {
-      height: 50px;
-    }
-    .filters {
-      bottom: 10px;
-    }
-  }
-}

+ 0 - 127
src/views/report/queryRepair/components/TodoList/index.vue

@@ -1,127 +0,0 @@
-<template>
-  <section class="todoapp">
-    <!-- header -->
-    <header class="header">
-      <input class="new-todo" autocomplete="off" placeholder="Todo List" @keyup.enter="addTodo">
-    </header>
-    <!-- main section -->
-    <section v-show="todos.length" class="main">
-      <input id="toggle-all" :checked="allChecked" class="toggle-all" type="checkbox" @change="toggleAll({ done: !allChecked })">
-      <label for="toggle-all" />
-      <ul class="todo-list">
-        <todo
-          v-for="(todo, index) in filteredTodos"
-          :key="index"
-          :todo="todo"
-          @toggleTodo="toggleTodo"
-          @editTodo="editTodo"
-          @deleteTodo="deleteTodo"
-        />
-      </ul>
-    </section>
-    <!-- footer -->
-    <footer v-show="todos.length" class="footer">
-      <span class="todo-count">
-        <strong>{{ remaining }}</strong>
-        {{ remaining | pluralize('item') }} left
-      </span>
-      <ul class="filters">
-        <li v-for="(val, key) in filters" :key="key">
-          <a :class="{ selected: visibility === key }" @click.prevent="visibility = key">{{ key | capitalize }}</a>
-        </li>
-      </ul>
-      <!-- <button class="clear-completed" v-show="todos.length > remaining" @click="clearCompleted">
-        Clear completed
-      </button> -->
-    </footer>
-  </section>
-</template>
-
-<script>
-import Todo from './Todo.vue'
-
-const STORAGE_KEY = 'todos'
-const filters = {
-  all: todos => todos,
-  active: todos => todos.filter(todo => !todo.done),
-  completed: todos => todos.filter(todo => todo.done)
-}
-const defalutList = [
-  { text: 'star this repository', done: false },
-  { text: 'fork this repository', done: false },
-  { text: 'follow author', done: false },
-  { text: 'vue-element-admin', done: true },
-  { text: 'vue', done: true },
-  { text: 'element-ui', done: true },
-  { text: 'axios', done: true },
-  { text: 'webpack', done: true }
-]
-export default {
-  components: { Todo },
-  filters: {
-    pluralize: (n, w) => n === 1 ? w : w + 's',
-    capitalize: s => s.charAt(0).toUpperCase() + s.slice(1)
-  },
-  data() {
-    return {
-      visibility: 'all',
-      filters,
-      // todos: JSON.parse(window.localStorage.getItem(STORAGE_KEY)) || defalutList
-      todos: defalutList
-    }
-  },
-  computed: {
-    allChecked() {
-      return this.todos.every(todo => todo.done)
-    },
-    filteredTodos() {
-      return filters[this.visibility](this.todos)
-    },
-    remaining() {
-      return this.todos.filter(todo => !todo.done).length
-    }
-  },
-  methods: {
-    setLocalStorage() {
-      window.localStorage.setItem(STORAGE_KEY, JSON.stringify(this.todos))
-    },
-    addTodo(e) {
-      const text = e.target.value
-      if (text.trim()) {
-        this.todos.push({
-          text,
-          done: false
-        })
-        this.setLocalStorage()
-      }
-      e.target.value = ''
-    },
-    toggleTodo(val) {
-      val.done = !val.done
-      this.setLocalStorage()
-    },
-    deleteTodo(todo) {
-      this.todos.splice(this.todos.indexOf(todo), 1)
-      this.setLocalStorage()
-    },
-    editTodo({ todo, value }) {
-      todo.text = value
-      this.setLocalStorage()
-    },
-    clearCompleted() {
-      this.todos = this.todos.filter(todo => !todo.done)
-      this.setLocalStorage()
-    },
-    toggleAll({ done }) {
-      this.todos.forEach(todo => {
-        todo.done = done
-        this.setLocalStorage()
-      })
-    }
-  }
-}
-</script>
-
-<style lang="scss">
-  @import './index.scss';
-</style>

+ 0 - 56
src/views/report/queryRepair/components/mixins/resize.js

@@ -1,56 +0,0 @@
-import { debounce } from '@/utils'
-
-export default {
-  data() {
-    return {
-      $_sidebarElm: null
-    }
-  },
-  mounted() {
-    this.$_initResizeEvent()
-    this.$_initSidebarResizeEvent()
-  },
-  beforeDestroy() {
-    this.$_destroyResizeEvent()
-    this.$_destroySidebarResizeEvent()
-  },
-  // to fixed bug when cached by keep-alive
-  // https://github.com/PanJiaChen/vue-element-admin/issues/2116
-  activated() {
-    this.$_initResizeEvent()
-    this.$_initSidebarResizeEvent()
-  },
-  deactivated() {
-    this.$_destroyResizeEvent()
-    this.$_destroySidebarResizeEvent()
-  },
-  methods: {
-    // use $_ for mixins properties
-    // https://vuejs.org/v2/style-guide/index.html#Private-property-names-essential
-    $_resizeHandler() {
-      return debounce(() => {
-        if (this.chart) {
-          this.chart.resize()
-        }
-      }, 100)()
-    },
-    $_initResizeEvent() {
-      window.addEventListener('resize', this.$_resizeHandler)
-    },
-    $_destroyResizeEvent() {
-      window.removeEventListener('resize', this.$_resizeHandler)
-    },
-    $_sidebarResizeHandler(e) {
-      if (e.propertyName === 'width') {
-        this.$_resizeHandler()
-      }
-    },
-    $_initSidebarResizeEvent() {
-      this.$_sidebarElm = document.getElementsByClassName('sidebar-container')[0]
-      this.$_sidebarElm && this.$_sidebarElm.addEventListener('transitionend', this.$_sidebarResizeHandler)
-    },
-    $_destroySidebarResizeEvent() {
-      this.$_sidebarElm && this.$_sidebarElm.removeEventListener('transitionend', this.$_sidebarResizeHandler)
-    }
-  }
-}

+ 0 - 833
src/views/report/queryRepair/index11.vue

@@ -1,833 +0,0 @@
-<template>
-  <div class="app-container">
-    <div v-if="isPercentage" class="percentage" style="width: 210px;height: 90px;background: #fff;position: fixed;bottom: 0;left: 0;z-index: 9999999999999;">
-      <h4 style="padding-left: 10px;line-height: 0;">导出进度:</h4>
-      <el-progress style="padding-left: 10px;" :text-inside="true" :stroke-width="26" :percentage="percentage" />
-    </div>
-    <div class="filter-container">
-      <div class="block">
-        <el-date-picker v-model="yearDate" :clearable="false" class="filter-item" type="year" placeholder="选择年" />
-        <el-select v-model="cost" style="width: 150px;" placeholder="费用分类" class="filter-item" @change="changeCost">
-          <el-option v-for="item in costList" :key="item.id" :label="item.name" :value="item.id" />
-        </el-select>
-
-        <el-radio-group v-model="radio"    style="float:right;margin-top:20px">
-          <el-radio  label="集团">集团</el-radio>
-          <el-radio  label="一中心">一中心</el-radio>
-          <el-radio  label="二中心">二中心</el-radio>
-          <el-radio  label="三中心">三中心</el-radio>
-        </el-radio-group>   
-
-      </div>
-    </div>
-    <!-- 年度维修成本 -->
-    <el-row v-if="isBarChart1" style="position: relative;">
-      <p style="position: absolute;top:-12px;left:40%;color:rgb(130, 165, 252);background:rgb(230, 243, 255);border:1px solid rgb(130, 165, 252);padding:10px;border-radius:10px">
-        {{ year }}年集团{{ costTypeName }}:{{ totaltitle }}万元
-      </p>
-      <el-col :span="24">
-        <div id="barChart1" style="width: 100%;height:400px;" />
-      </el-col>
-    </el-row>
-
-    <!-- 年度维修成本 -->
-    <el-row>
-      <el-col :span="12">
-        <div id="lineChart1" style="width: 100%;height:400px;" />
-      </el-col>
-      <el-col :span="12">
-        <div id="lineChart2" style="width: 100%;height:400px;" />
-      </el-col>
-    </el-row>
-
-    <el-row>
-      <el-col :span="12">
-        <div id="pieChart1" style="width: 100%;height:400px;" />
-      </el-col>
-      <el-col :span="12">
-        <div id="barChart2" style="width: 100%;height:400px;" />
-      </el-col>
-    </el-row>
-
-    <!-- 弹窗 -->
-    <el-dialog title="详情" :visible.sync="dialogFormVisibleCard" width="90%" :close-on-click-modal="false">
-      <div class="app-contentcard">
-        <el-form ref="rowSeeData" :model="rowSeeData" label-position="right" label-width="120px" style="width: 100%;margin:0 auto;">
-          <div class="filter-container">
-            <el-input v-model="getdataListParmSee.parammaps.eqName" placeholder="设备内部编号" clearable class="filter-item" style="width: 130px" />
-            <el-input v-model="getdataListParmSee.parammaps.assetCode" placeholder="资产编号" clearable class="filter-item" style="width: 130px" />
-            <el-date-picker ref="inputDatetime" v-model="getdataListParmSee.parammaps.inputDatetime" class="inputDatetime" type="datetimerange" style="width: 250px;top:-3px;" format="yyyy-MM-dd" value-format="yyyy-MM-dd" range-separator="至" start-placeholder="领用开始日期" end-placeholder="领用结束日期" />
-
-            <el-button v-waves class="filter-item" type="primary" icon="el-icon-search" @click="form_searchDelivery">搜索</el-button>
-            <el-button class="filter-item" style="margin-left: 10px;" type="success" icon="el-icon-edit" @click="handleDownloadDelivery">导出</el-button>
-          </div>
-        </el-form>
-        <el-table
-          :key="tableKey"
-          v-loading="listLoadingSee"
-          element-loading-text="给我一点时间"
-          :data="listSee"
-          border
-          fit
-          highlight-current-row
-          style="width: 100%;"
-          :row-style="rowStyle"
-          :cell-style="cellStyle"
-          class="elTable"
-        >
-          <el-table-column label="序号" align="center" type="index" width="50px">
-            <template slot-scope="scope">
-              <span>{{ scope.$index + (pageNumSee-1) * pageSizeSee + 1 }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="资产编号" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.assetCode }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="设备名称" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.eqName }}</span>
-            </template>
-          </el-table-column>
-
-          <el-table-column label="设备内部编号" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.eqCode }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="设备规格" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.eqSpecification }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="领用日期" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.receiveTime }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="领用部门" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.deptName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件编号" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partCode }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件名称" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.partName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件规格" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.specification }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="备件品牌" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.brandName }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="计量单位" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.unit }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="出库数量" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.checkoutNumber }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="退库数量" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.quitNumber }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="单价" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.price }}</span>
-            </template>
-          </el-table-column>
-          <el-table-column label="总价" min-width="110px" align="center">
-            <template slot-scope="scope">
-              <span>{{ scope.row.sumPrice }}</span>
-            </template>
-          </el-table-column>
-
-        </el-table>
-        <pagination
-          v-show="totalSee>=0"
-          :total="totalSee"
-          :page.sync="getdataListParmSee.offset"
-          :limit.sync="getdataListParmSee.pagecount"
-          @pagination="get_table_dataSee"
-        />
-        <div slot="footer" class="dialog-footer" style="right:30px;position:absolute;bottom:10px">
-          <el-button @click="dialogFormVisibleCard = false">关闭</el-button>
-        </div>
-      </div>
-    </el-dialog>
-  </div>
-
-</template>
-
-<script>
-import echarts from 'echarts'
-
-require('echarts/theme/macarons') // echarts theme
-
-// eslint-disable-next-line no-unused-vars
-import waves from '@/directive/waves' // waves directive
-import Pagination from '@/components/Pagination' // secondary package based on el-pagination
-import { GetDataByName, GetDataByNames, GetReportform, checkButtons, GetAccount } from '@/api/common'
-import { parseTime } from '@/utils/index.js'
-import { json2excel } from '@/utils/index.js'
-import Cookies from 'js-cookie'
-export default {
-  name: 'QueryRepair',
-  directives: { waves },
-  components: { Pagination },
-  data() {
-    return {
-      yearDate: new Date(),
-
-      radio: "集团",
-
-      cost: '',
-      totaltitle: 0,
-      costTypeName: '所有维修费',
-      costList: [{ id: '', name: '全部费用' }, { id: '挤奶处', name: '直接费用' }, { id: '牧场办公室', name: '管理费用' }, { id: 1, name: '制造费用' }],
-      pasture: Cookies.get('pasturename'),
-      year: new Date().getFullYear(),
-      month: new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1,
-      deptment: '维修处',
-
-      getBarChart1Parm: {
-        name: 'getpSumNow',
-        parammaps: {
-          receiveTime: new Date().getFullYear(),
-          center:'',
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getLineChart1Parm: {
-        name: 'getPastureSumMonth',
-        parammaps: {
-          receiveTime: new Date().getFullYear(),
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getLineChart2Parm: {
-        name: 'getPastureSumDay',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getPieChart1Parm: {
-        name: 'getdeptSumMonth',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getBarChart2Parm: {
-        name: 'geteqclassSumMonth',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename'),
-          deptName: ''
-        }
-      },
-      barChart1: null,
-      lineChart1: null,
-      lineChart2: null,
-      pieChart1: null,
-      barChart2: null,
-
-      chart_data1: {
-        // pasture: ['宝鸡', '恒盛', '塞一', '塞二', '塞三', '塞四', '塞五', '通山', '合肥', '和林'],
-        // nowYear: [123, 332, 222, 333, 444, 333, 222, 334, 234, 223],
-        // lastYear: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66]
-      },
-      chart_data2: {
-        // months: ['2019-01', '2019-02', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01'],
-        // nowYear: [123, 332, 222, 333, 444, 333, 222, 334, 234, 223],
-        // lastYear: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66],
-        // budget: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66]
-      },
-      chart_data3: {
-        // day: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'],
-        // nowYear: [123, 332, 222, 333, 444, 333, 222, 334, 234, 223],
-        // lastYear: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66]
-      },
-      chart_data4: {
-        // name: ['饲养处', '其他部门', '设备处', '能源处', '牧场办公室'],
-        // psum: [
-        //   { value: 335, name: '饲养处' },
-        //   { value: 310, name: '其他部门' },
-        //   { value: 234, name: '设备处' },
-        //   { value: 135, name: '能源处' },
-        //   { value: 1548, name: '牧场办公室' }
-        // ]
-      },
-      chart_data5: {
-        // typeName: ['小型装载机', '叉车', '拖拉机', '抛料机', '搅拌机'],
-        // eqCost: [123, 332, 222, 333, 444],
-        // lastYear: [22, 342, 234, 234, 66]
-      },
-
-      tableKey: 0,
-      list: null,
-      total: 0,
-      listLoading: true,
-      rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
-      cellStyle: { padding: 0 + 'px' },
-
-      dialogFormVisibleCard: false,
-      listLoadingSee: true,
-      rowSeeData: {},
-      listSee: [],
-      totalSee: 0,
-      getdataListParmSee: {
-        name: 'geteqclassSumDay',
-        page: 1,
-        offset: 1,
-        pagecount: 10,
-        returntype: 'Map',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          deptName: '',
-          typeName: '',
-          assetCode: '',
-          eqName: '',
-          startTime: '',
-          stopTime: '',
-          pastureId: Cookies.get('pastureid'),
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      buttons: [],
-      isBarChart1: [],
-      downLoadParm: {},
-      downLoadList: [],
-      isPercentage: false,
-      percentage: 1
-
-    }
-  },
-
-  watch: {
-    'yearDate': {
-      deep: true,
-      handler: function(newVal, oldVal) {
-        var time = this.yearDate
-        console.log(newVal.getFullYear())
-        this.year = time.getFullYear()
-        this.getBarChart1Parm.parammaps.receiveTime = time.getFullYear()
-        this.getLineChart1Parm.parammaps.receiveTime = time.getFullYear()
-        this.getLineChart2Parm.parammaps.receiveTime = time.getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1)
-        this.getPieChart1Parm.parammaps.receiveTime = time.getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1)
-        this.getBarChart2Parm.parammaps.receiveTime = time.getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1)
-        this.getBarChart1Parm.parammaps.departmentName = this.cost
-        this.getLineChart1Parm.parammaps.departmentName = this.cost
-        this.getLineChart2Parm.parammaps.departmentName = this.cost
-        this.getBarChart1()
-        this.getLineChart1()
-        this.getLineChart2()
-        this.getPieChart1()
-        this.getBarChart2()
-      }
-    },
-    'radio': {
-      deep: true,
-      handler: function(newVal, oldVal) {
-        console.log(newVal, oldVal)
-        if(newVal == '集团'){
-          this.getBarChart1Parm.parammaps.center = ''
-        } else {
-          this.getBarChart1Parm.parammaps.center = newVal
-        }
-        this.getBarChart1()
-        // this.getLineChart1()
-        // this.getLineChart2()
-        // this.getPieChart1()
-      }
-    },
-  },
-
-  created() {
-    this.getBarChart1()
-    this.getLineChart1()
-    this.getLineChart2()
-    this.getPieChart1()
-    const that = this
-    GetDataByName({ 'name': 'getUserPCButtons', 'parammaps': { 'jwt_username': Cookies.get('name') }}).then(response => {
-      that.buttons = response.data.list
-      that.get_auto_buttons()
-    })
-  },
-  mounted() {
-    // this.roadBarChart1(this.chart_data1)
-    // this.roadlineChart1(this.chart_data2, this.pasture, this.year)
-    // this.roadlineChart2(this.chart_data3, this.pasture, this.month)
-    //  this.roadpieChart1(this.chart_data4, this.month)
-    // this.roadBarChart2(this.chart_data5, this.deptment)
-  },
-  methods: {
-    get_auto_buttons() {
-      // 图1
-      const BarChart1 = 'report:queryRepair:pastures'
-      const isBarChart1 = checkButtons(this.$store.state.user.buttons, BarChart1)
-      this.isBarChart1 = isBarChart1
-    },
-    // 各牧场年度维修成本对比
-    getBarChart1() {
-      GetReportform(this.getBarChart1Parm).then(response => {
-        console.log('图1', response)
-        this.chart_data1 = response.data.chart_data
-        this.roadBarChart1(this.chart_data1)
-        var nowYear = response.data.chart_data.nowYear
-        var totaltitle = 0
-        if (nowYear !== null || nowYear !== undefined) {
-          nowYear.forEach(function(item, index) {
-            // console.log(parseFloat(item))
-            totaltitle = totaltitle + parseFloat(item)
-          })
-        }
-        this.totaltitle = totaltitle.toFixed(4)
-      })
-    },
-    getLineChart1() {
-      GetReportform(this.getLineChart1Parm).then(response => {
-        console.log('图2', response)
-        this.chart_data2 = response.data.chart_data
-        this.roadlineChart1(this.chart_data2, this.pasture, this.year)
-      })
-    },
-    getLineChart2() {
-      GetReportform(this.getLineChart2Parm).then(response => {
-        console.log('图3', response)
-        this.chart_data3 = response.data.chart_data
-        this.roadlineChart2(this.chart_data3, this.pasture, this.year)
-      })
-    },
-    getPieChart1() {
-      GetDataByName(this.getPieChart1Parm).then(response => {
-        console.log('图4', response)
-        if (response.data === null || response.data.list === null) {
-          this.chart_data4 = { name: [], psum: [] }
-          this.roadpieChart1(this.chart_data4, this.month)
-        } else {
-          this.chart_data4.psum = response.data.list
-          var name = []
-          console.log(response.data.list)
-          response.data.list.forEach(function(i) {
-            name.push(i.name)
-          })
-          console.log(this.chart_data4)
-          this.chart_data4.name = name
-          this.roadpieChart1(this.chart_data4, this.month)
-          this.deptment = name[0]
-          this.getBarChart2Parm.parammaps.deptName = name[0]
-          this.getBarChart2Parm.parammaps.deptName = name[0]
-          this.getdataListParmSee.parammaps.deptName = name[0]
-
-          this.getBarChart2()
-        }
-      })
-    },
-    getBarChart2() {
-      GetReportform(this.getBarChart2Parm).then(response => {
-        console.log('图5', response)
-        this.chart_data5 = response.data.chart_data
-        this.roadBarChart2(this.chart_data5, this.deptment)
-      })
-    },
-
-    // 各牧场年度维修成本对比
-    roadBarChart1(chart_data1) {
-      if (this.barChart1 != null) {
-        this.barChart1.dispose()
-      }
-      this.barChart1 = echarts.init(document.getElementById('barChart1'))
-      var option = {
-        title: { text: '各牧场年度维修费用对比', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['今年维修费用', '去年同期维修费用'],
-          right: 40,
-          x: 'right'
-        },
-        color: ['#2dc0e8', '#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '4%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data1.pasture, axisLabel: { interval: 0, rotate: 30 }}],
-
-        yAxis: [{ type: 'value', name: '元', axisLabel: { formatter: '{value}万' }}],
-        series: [
-          {
-            name: '今年维修费用',
-            type: 'bar',
-            data: chart_data1.nowYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '去年同期维修费用',
-            type: 'bar',
-            data: chart_data1.lastYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.barChart1.setOption(option)
-      window.onresize = function() {
-        this.barChart1.resize()
-      }
-      var that = this
-      this.barChart1.on('click', function(param, i) {
-        console.log(param)
-        that.pasture = param.name
-        that.getLineChart1Parm.parammaps.pastureName = param.name
-        that.getLineChart2Parm.parammaps.pastureName = param.name
-        that.getPieChart1Parm.parammaps.pastureName = param.name
-        that.getBarChart2Parm.parammaps.pastureName = param.name
-        that.getdataListParmSee.parammaps.pastureName = param.name
-
-        that.getLineChart1()
-        that.getLineChart2()
-        that.getPieChart1()
-      })
-    },
-    // 每月维修成本对比
-    roadlineChart1(chart_data2, pasture, year) {
-      if (this.lineChart1 != null) {
-        this.lineChart1.dispose()
-      }
-      this.lineChart1 = echarts.init(document.getElementById('lineChart1'))
-      var option = {
-        title: { text: pasture + year + '每月维修费用对比', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['今年维修费用', '去年同期维修费用'],
-          x: 'right'
-        },
-        color: [ '#769cfc', '#FFB800', '#6bda00'],
-        grid: { left: '3%', right: '10%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data2.months, name: '月份', axisLabel: { interval: 0, rotate: 30 }}],
-        yAxis: [{ type: 'value', name: '元', axisLabel: { formatter: '{value}万' }}],
-        series: [
-          {
-            name: '今年维修费用',
-            type: 'line',
-            data: chart_data2.nowYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '去年同期维修费用',
-            type: 'line',
-            data: chart_data2.lastYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '预算',
-            type: 'line',
-            data: chart_data2.budget,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.lineChart1.setOption(option)
-      window.onresize = function() {
-        this.lineChart1.resize()
-      }
-      var that = this
-      this.lineChart1.on('click', function(param, i) {
-        console.log(param)
-
-        that.getLineChart2Parm.parammaps.receiveTime = param.name
-        that.getPieChart1Parm.parammaps.receiveTime = param.name
-        that.getBarChart2Parm.parammaps.receiveTime = param.name
-        that.getdataListParmSee.parammaps.receiveTime = param.name
-
-        var num = param.name.substring(5)
-        console.log(num)
-        that.month = num
-        that.getLineChart2()
-        that.getPieChart1()
-      })
-    },
-
-    // 每月维修成本对比
-    roadlineChart2(chart_data3, pasture, year) {
-      if (this.lineChart2 != null) {
-        this.lineChart2.dispose()
-      }
-      this.lineChart2 = echarts.init(document.getElementById('lineChart2'))
-      var option = {
-        title: { text: pasture + year + '年每月单头牛维修费用', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['今年维修费用', '去年同期维修费用'],
-          x: 'right'
-        },
-        color: ['#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '10%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data3.months, name: '日期', axisLabel: { interval: 0, rotate: 30 }}],
-        yAxis: [{ type: 'value', name: '元', axisLabel: { formatter: '{value}' }}],
-        series: [
-          {
-            name: '今年维修费用',
-            type: 'line',
-            data: chart_data3.nowYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '去年同期维修费用',
-            type: 'line',
-            data: chart_data3.lastYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.lineChart2.setOption(option)
-      window.onresize = function() {
-        this.lineChart2.resize()
-      }
-      this.lineChart2.on('click', function(param, i) {
-        console.log(param)
-      })
-    },
-    // 部门统计
-    roadpieChart1(chart_data4, month) {
-      if (this.pieChart1 != null) {
-        this.pieChart1.dispose()
-      }
-      this.pieChart1 = echarts.init(document.getElementById('pieChart1'))
-      var option = {
-        title: { text: month + '月部门统计', textStyle: { color: '#769cfc' }},
-        tooltip: {
-          trigger: 'item',
-          formatter: '{a} <br/>{b} : {c} ({d}%)'
-        },
-        legend: {
-          data: chart_data4.name, top: 40, x: 'right'
-        },
-        color: ['#42b983', '#769cfc', '#FFB800', '#fb9999', '#ba99fb', '#99fbf2', '#b5ffc5', '#edffb5', '#ff9d6e', '#897cf3'],
-        grid: { left: '3%', right: '5%', bottom: '4%', containLabel: true },
-        series: [
-          {
-            name: '',
-            type: 'pie',
-            radius: '55%',
-            center: ['50%', '60%'],
-            // label: { // 饼图图形上的文本标签
-            //   normal: {
-            //     show: true,
-            //     position: 'inner', // 标签的位置
-            //     textStyle: {
-            //       fontWeight: 300,
-            //       fontSize: 16 // 文字的字体大小
-            //     },
-            //     formatter: '{d}%'
-
-            //   }
-            // },
-            data: chart_data4.psum,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.pieChart1.setOption(option)
-      window.onresize = function() {
-        this.pieChart1.resize()
-      }
-      var that = this
-      this.pieChart1.on('click', function(param, i) {
-        console.log(param)
-        that.deptment = param.name
-
-        that.getdataListParmSee.parammaps.deptName = param.name
-        that.getBarChart2Parm.parammaps.deptName = param.name
-        that.getBarChart2()
-      })
-    },
-    // 维修成本
-    roadBarChart2(chart_data5, deptment) {
-      if (this.barChart2 != null) {
-        this.barChart2.dispose()
-      }
-      this.barChart2 = echarts.init(document.getElementById('barChart2'))
-      var option = {
-        title: { text: deptment + '维修费用', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['维修费用'],
-          x: 'right'
-        },
-        color: ['#42b983', '#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '12%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data5.typeName, name: '设备类别', axisLabel: { interval: 0, rotate: 30 }}],
-        yAxis: [{ type: 'value', name: '元', axisLabel: { formatter: '{value}' }}],
-        series: [
-          {
-            name: '维修费用',
-            type: 'bar',
-            barWidth: 14,
-            data: chart_data5.eqCost,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.barChart2.setOption(option)
-      window.onresize = function() {
-        this.barChart2.resize()
-      }
-      var that = this
-
-      that.barChart2.on('click', function(param, i) {
-        console.log(param)
-
-        that.getdataListParmSee.parammaps.typeName = param.name
-        that.getdataListParmSee.offset = 1
-        that.get_table_dataSee()
-        that.dialogFormVisibleCard = true
-      })
-    },
-    // 搜索
-    form_searchDelivery() {
-      if (this.getdataListParmSee.parammaps.inputDatetime == null) {
-        this.getdataListParmSee.parammaps.startTime = ''
-        this.getdataListParmSee.parammaps.stopTime = ''
-      }
-      this.getdataListParmSee.offset = 1
-      this.get_table_dataSee()
-    },
-    get_table_dataSee() {
-      if (this.getdataListParmSee.parammaps.inputDatetime !== undefined && this.getdataListParmSee.parammaps.inputDatetime !== null) {
-        this.getdataListParmSee.parammaps.startTime = this.$refs['inputDatetime'].value[0]
-        this.getdataListParmSee.parammaps.stopTime = this.$refs['inputDatetime'].value[1]
-      } else {
-        this.getdataListParmSee.parammaps.startTime = ''
-        this.getdataListParmSee.parammaps.stopTime = ''
-      }
-
-      GetDataByName(this.getdataListParmSee).then(response => {
-        this.listSee = response.data.list
-        console.log('记录列表数据', response.data.list)
-        this.pageNumSee = response.data.pageNum
-        this.pageSizeSee = response.data.pageSize
-        if (response.data.total) {
-          this.totalSee = response.data.total
-        }
-        // Just to simulate the time of the request
-        setTimeout(() => {
-          this.listLoadingSee = false
-        }, 300)
-      })
-    },
-    handleDownloadDelivery() {
-      this.$alert('正在导出中,请勿刷新或离开本页面,若导出时间过长,建议缩小导出数据范围重新导出', {})
-      this.isPercentage = true
-      this.percentage = 1
-      var timer = setInterval(() => {
-        this.percentage += 5
-        if (this.percentage > 95) {
-          this.percentage = 99
-          clearInterval(timer)
-        }
-        this.percentage = this.percentage
-      }, 1000)
-      this.downLoadParm.name = 'geteqclassSumDay'
-      this.downLoadParm.returntype = 'Map'
-      this.downLoadParm.parammaps = this.getdataListParmSee.parammaps
-      GetAccount(this.downLoadParm).then(response => {
-        if (response.data.list !== '') {
-          this.percentage = 99
-          setTimeout(() => {
-            this.isPercentage = false
-          }, 2000)
-        }
-        this.$nextTick(() => {
-          this.downLoadList = response.data.list
-          console.log(this.downLoadList)
-          const ExcelDatas = [
-            {
-              tHeader: ['资产编号', '设备名称', '设备内部编号', '设备规格', '领用日期', '领用部门', '备件编号', '备件名称', '备件规格', '备件品牌', '计量单位', '出库数量', '退库数量', '单价', '总价'],
-              filterVal: ['assetCode', 'eqName', 'eqCode', 'eqSpecification', 'receiveTime', 'deptName', 'partCode', 'partName', 'specification', 'brandName', 'unit', 'checkoutNumber', 'quitNumber', 'price', 'sumPrice'],
-              tableDatas: this.downLoadList,
-              sheetName: '设备维修费用'
-            }
-          ]
-          json2excel(ExcelDatas, '设备维修费用', true, 'xlsx')
-        })
-      })
-    },
-    changeCost(item) {
-      console.log(item)
-      // costList: [{ id: '全部费用', name: '全部费用' }, { id: '挤奶处', name: '直接费用' }, { id: '牧场办公室', name: '管理费用' }, { id: 1, name: '制造费用' }],
-      if (item == '挤奶处') {
-        this.costTypeName = '直接维修费'
-      } else if (item == '牧场办公室') {
-        this.costTypeName = '管理维修费'
-      } else if (item == 1) {
-        this.costTypeName = '制造维修费'
-      } else if (item == '') {
-        this.costTypeName = '所有维修费'
-        this.cost = ''
-      } else {
-        this.costTypeName = '所有维修费'
-      }
-      this.getBarChart1Parm.parammaps.departmentName = this.cost
-      this.getLineChart1Parm.parammaps.departmentName = this.cost
-      this.getLineChart2Parm.parammaps.departmentName = this.cost
-      this.getBarChart1()
-      this.getLineChart1()
-      this.getLineChart2()
-    }
-
-  }
-}
-</script>
-<style>
-.el-row {
-    margin-bottom: 40px;
-    &:last-child {
-      margin-bottom: 0;
-    }
-  }
-</style>
-
-<style lang="scss" scoped>
-
-.dashboard-editor-container {
-  padding: 20px;
-  background-color: rgb(240, 242, 245);
-  position: relative;
-
-  .github-corner {
-    position: absolute;
-    top: 0px;
-    border: 0;
-    right: 0;
-  }
-
-  .chart-wrapper {
-    background: #fff;
-    padding: 16px 16px 0;
-  }
-}
-
-@media (max-width:1024px) {
-  .chart-wrapper {
-    padding: 8px;
-  }
-}
-</style>

+ 0 - 130
src/views/report/queryWater/components/BarChartDept.vue

@@ -1,130 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-// import { parseTime } from '@/utils/index.js'
-// import { emit } from 'cluster'
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    barCharDeptData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null,
-      sourceDate: []
-    }
-  },
-  watch: {
-    barCharDeptData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        console.log(val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.barCharDeptData)
-      // console.log('this.barCharDeptData', this.barCharDeptData)
-    },
-    setOptions({ xAxisData, seriesData, text } = {}) {
-      this.chart.setOption({
-        title: {
-          text: text + '水表柱状图',
-          subtext: ''
-        },
-        tooltip: {
-          trigger: 'axis',
-          axisPointer: { // 坐标轴指示器,坐标轴触发有效
-            type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'
-          }
-        },
-        grid: {
-          left: '3%',
-          right: '15%',
-          bottom: '-4%',
-          containLabel: true
-        },
-        xAxis: [
-          {
-            name: '水表名称',
-            type: 'category',
-            // data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
-            data: xAxisData,
-            axisTick: {
-              alignWithLabel: true
-            },
-            // axisLabel: { interval: 0, rotate: 40 }
-            axisLabel: { interval: 0 }
-            // show: false
-          }
-        ],
-        yAxis: [
-          {
-            name: '吨',
-            type: 'value'
-          }
-        ],
-        series: [
-          {
-            type: 'bar',
-            barWidth: '60%',
-            // data: [10, 52, 200, 334, 390, 330, 220]
-            data: seriesData
-          }
-        ]
-      })
-      const that = this
-      // 点击柱状图拿到对应内容
-      this.chart.on('click', function(params) {
-        console.log(params)
-        // console.log(parseTime(new Date(), '{y}') + '-' + params.name.substring(0, 2))
-        // that.$emit('barClickDept', parseTime(new Date(), '{y}') + '-' + params.name.substring(0, 2))
-        that.$emit('barClickDept', params.name)
-      })
-    }
-  }
-}
-</script>

+ 0 - 115
src/views/report/queryWater/components/BarChartPasture.vue

@@ -1,115 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-// import { parseTime } from '@/utils/index.js'
-// import { emit } from 'cluster'
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    barPastureData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null,
-      sourceDate: []
-    }
-  },
-  watch: {
-    barPastureData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        // console.log(val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.barPastureData)
-    },
-    setOptions({ sourceDate, text } = {}) {
-      this.chart.setOption({
-        title: {
-          text: '最近12个月用水量同期对比',
-          subtext: ''
-        },
-        legend: { x: 'right' },
-        tooltip: {
-          trigger: 'axis',
-          axisPointer: { // 坐标轴指示器,坐标轴触发有效
-            type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'
-          }
-        },
-        dataset: {
-          source: sourceDate
-          // source: [
-          //   ['product', '去年同期', '预算', '实际']
-          //   // ['10月', 433, 85.8, 93.7],
-          //   // ['9月', 83.1, 73.4, 55.1],
-          //   // ['8月', 86.4, 65.2, 82.5],
-          //   // ['7月', 72.4, 53.9, 39.1]
-          // ]
-        },
-        xAxis: { type: 'category', name: '最近12个月', formatter: '', axisLabel: { interval: 0, rotate: 40 }},
-        yAxis: { name: 'm³' },
-        grid: [
-          { left: '15%', right: '17%' }
-        ],
-        series: [
-          { type: 'bar' },
-          { type: 'bar' },
-          { type: 'bar' }
-        ]
-      })
-      const that = this
-      // 点击柱状图拿到对应内容
-      this.chart.on('click', function(params) {
-        console.log(params.name)
-        // that.$emit('chartClick', parseTime(new Date(), '{y}') + '-' + params.name.substring(0, 2))
-        that.$emit('chartClick', params.name.substring(0, 7))
-      })
-    }
-  }
-}
-</script>

+ 0 - 80
src/views/report/queryWater/components/BarChartPastureMonth.vue

@@ -1,80 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '475px'
-    }
-  },
-  data() {
-    return {
-      chart: null
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.chart.setOption({
-        legend: {},
-        tooltip: {},
-        dataset: {
-          source: [
-            ['product', '2015', '2016', '2017'],
-            ['10月', 43.3, 85.8, 93.7],
-            ['9月', 83.1, 73.4, 55.1],
-            ['8月', 86.4, 65.2, 82.5],
-            ['7月', 72.4, 53.9, 39.1]
-          ]
-        },
-        xAxis: [
-          { type: 'category', gridIndex: 0, name: '最近12个月' }
-        ],
-        yAxis: [
-          { gridIndex: 0, name: '总费用' }
-        ],
-        grid: [
-          { bottom: '58%' },
-          { top: '58%' }
-        ],
-        series: [
-          { type: 'bar' },
-          { type: 'bar' },
-          { type: 'bar' }
-        ]
-      })
-    }
-  }
-}
-</script>

+ 0 - 166
src/views/report/queryWater/components/Contrast.vue

@@ -1,166 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-// import { debounce } from '@/utils'
-
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    contrastData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null
-    }
-  },
-  watch: {
-    contrastData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        console.log('watch拿到的val', val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.contrastData)
-      // console.log('methods拿到的contrastData', this.contrastData)
-    },
-    setOptions({ lastData, thisData, text, thisMinData, days } = {}) {
-      this.chart.setOption({
-        title: {
-          text: text + '月用水量同期对比',
-          subtext: ''
-        },
-        tooltip: {
-          trigger: 'axis'
-        },
-        legend: {
-          data: ['去年同期', '今年日用量'],
-          orient: 'vertical'
-        },
-        toolbox: {
-          show: true,
-          feature: {
-            dataZoom: {
-              yAxisIndex: 'none'
-            },
-            dataView: { readOnly: false },
-            magicType: { type: ['line', 'bar'] },
-            restore: {},
-            saveAsImage: {}
-          }
-        },
-        xAxis: {
-          type: 'category',
-          name: '日期',
-          boundaryGap: false,
-          data: days
-        },
-        yAxis: {
-          type: 'value',
-          name: 'm³',
-          axisLabel: {
-            formatter: '{value}'
-          }
-        },
-        grid: [
-          { top: '25%', left: '15%', bottom: '5%' }
-        ],
-        series: [
-          {
-            name: '去年同期',
-            type: 'line',
-            // data: [11, 11, 15, 13, 12, 13, 10, 9, 11, 3],
-            data: lastData,
-            markPoint: {
-              data: [
-                // { type: 'max', name: '最大值' },
-                // { type: 'min', name: '最小值' }
-              ]
-            },
-            markLine: {
-              data: [
-                { type: 'average', name: '平均值' }
-              ]
-            }
-          },
-          {
-            name: '今年日用量',
-            type: 'line',
-            // data: [1, 5, 2, 5, 3, 2, 0, 9, 6, 7],
-            data: thisData,
-            markPoint: {
-              data: [
-                // { name: '周最低', value: 5, xAxis: 1, yAxis: 2 }
-                // { type: 'max', name: '最大值' },
-                // { type: 'min', name: '最小值' }
-              ]
-            },
-            markLine: {
-              data: [
-                { type: 'average', name: '平均值' },
-                [{
-                  symbol: 'none',
-                  x: '90%',
-                  yAxis: 'max'
-                }, {
-                  symbol: 'circle',
-                  label: {
-                    normal: {
-                      position: 'start',
-                      formatter: '最大值'
-                    }
-                  },
-                  type: 'max',
-                  name: '最高点'
-                }]
-              ]
-            }
-          }
-        ]
-      })
-    }
-  }
-}
-</script>

+ 0 - 120
src/views/report/queryWater/components/PieChartDepartment.vue

@@ -1,120 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-import { debounce } from '@/utils'
-
-// eslint-disable-next-line no-unused-vars
-const animationDuration = 6000
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    pieDeptData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null
-    }
-  },
-  watch: {
-    pieDeptData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        console.log('watch拿到的val', val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.pieDeptData)
-      // console.log('methods拿到的pieDeptData', this.pieDeptData)
-    },
-    setOptions({ DeptData, text } = {}) {
-      // console.log('setOptions拿到的DeptData', DeptData)
-      this.chart.setOption({
-        title: {
-          text: text + '月部门统计',
-          subtext: '',
-          x: 'center'
-        },
-        tooltip: {
-          trigger: 'item',
-          formatter: '{a} <br/>{b} : {c} ({d}%)'
-        },
-        legend: {
-          orient: 'vertical',
-          left: 'left',
-          data: ['', '', '', '', '']
-        },
-        series: [
-          {
-            name: text + '月',
-            type: 'pie',
-            radius: '55%',
-            center: ['50%', '60%'],
-            data: DeptData,
-            // data: [
-            //   { value: 335, name: '直接访问' },
-            //   { value: 310, name: '邮件营销' },
-            //   { value: 234, name: '联盟广告' },
-            //   { value: 135, name: '视频广告' },
-            //   { value: 1548, name: '搜索引擎' }
-            // ],
-            itemStyle: {
-              emphasis: {
-                shadowBlur: 10,
-                shadowOffsetX: 0,
-                shadowColor: 'rgba(0, 0, 0, 0.5)'
-              }
-            }
-          }
-        ]
-      })
-      const that = this
-      // 点击饼图拿到对应内容
-      this.chart.on('click', function(params) {
-        console.log(params)
-        that.$emit('pieClickDept', params.name)
-      })
-    }
-  }
-}
-</script>

+ 0 - 116
src/views/report/queryWater/components/PieChartType.vue

@@ -1,116 +0,0 @@
-<template>
-  <div :class="className" :style="{height:height,width:width}" />
-</template>
-
-<script>
-import echarts from 'echarts'
-require('echarts/theme/macarons') // echarts theme
-import resize from './mixins/resize'
-
-export default {
-  mixins: [resize],
-  props: {
-    className: {
-      type: String,
-      default: 'chart'
-    },
-    width: {
-      type: String,
-      default: '100%'
-    },
-    height: {
-      type: String,
-      default: '350px'
-    },
-    autoResize: {
-      type: Boolean,
-      default: true
-    },
-    pieTypeData: {
-      type: Object,
-      required: true
-    }
-  },
-  data() {
-    return {
-      chart: null
-    }
-  },
-  watch: {
-    pieTypeData: {
-      deep: true,
-      handler(val) {
-        this.setOptions(val)
-        // console.log('watch拿到的val', val)
-      }
-    }
-  },
-  mounted() {
-    this.$nextTick(() => {
-      this.initChart()
-    })
-  },
-  beforeDestroy() {
-    if (!this.chart) {
-      return
-    }
-    this.chart.dispose()
-    this.chart = null
-  },
-  methods: {
-    initChart() {
-      this.chart = echarts.init(this.$el, 'macarons')
-      this.setOptions(this.pieTypeData)
-      // console.log('methods拿到的pieTypeData', this.pieTypeData)
-    },
-    setOptions({ TypeData, text } = {}) {
-      // console.log('setOptions拿到的TypeData', TypeData)
-      this.chart.setOption({
-        title: {
-          text: text + '月类型统计',
-          subtext: '',
-          x: 'center'
-        },
-        tooltip: {
-          trigger: 'item',
-          formatter: '{a} <br/>{b} : {c} ({d}%)'
-        },
-        legend: {
-          orient: 'vertical',
-          left: 'left',
-          data: ['', '', '', '', '']
-        },
-        series: [
-          {
-            name: text + '月',
-            type: 'pie',
-            radius: '55%',
-            center: ['50%', '60%'],
-            data: TypeData,
-            // data: [
-            //   { value: 335, name: '直接访问' },
-            //   { value: 310, name: '邮件营销' },
-            //   { value: 234, name: '联盟广告' },
-            //   { value: 135, name: '视频广告' },
-            //   { value: 1548, name: '搜索引擎' }
-            // ],
-            itemStyle: {
-              emphasis: {
-                shadowBlur: 10,
-                shadowOffsetX: 0,
-                shadowColor: 'rgba(0, 0, 0, 0.5)'
-              }
-            }
-          }
-        ]
-      })
-      const that = this
-      // 点击饼图拿到对应内容
-      this.chart.on('click', function(params) {
-        console.log(params)
-        that.$emit('chartClickType', params.name)
-      })
-    }
-  }
-}
-</script>

+ 0 - 81
src/views/report/queryWater/components/TodoList/Todo.vue

@@ -1,81 +0,0 @@
-<template>
-  <li :class="{ completed: todo.done, editing: editing }" class="todo">
-    <div class="view">
-      <input
-        :checked="todo.done"
-        class="toggle"
-        type="checkbox"
-        @change="toggleTodo( todo)"
-      >
-      <label @dblclick="editing = true" v-text="todo.text" />
-      <button class="destroy" @click="deleteTodo( todo )" />
-    </div>
-    <input
-      v-show="editing"
-      v-focus="editing"
-      :value="todo.text"
-      class="edit"
-      @keyup.enter="doneEdit"
-      @keyup.esc="cancelEdit"
-      @blur="doneEdit"
-    >
-  </li>
-</template>
-
-<script>
-export default {
-  name: 'Todo',
-  directives: {
-    focus(el, { value }, { context }) {
-      if (value) {
-        context.$nextTick(() => {
-          el.focus()
-        })
-      }
-    }
-  },
-  props: {
-    todo: {
-      type: Object,
-      default: function() {
-        return {}
-      }
-    }
-  },
-  data() {
-    return {
-      editing: false
-    }
-  },
-  methods: {
-    deleteTodo(todo) {
-      this.$emit('deleteTodo', todo)
-    },
-    editTodo({ todo, value }) {
-      this.$emit('editTodo', { todo, value })
-    },
-    toggleTodo(todo) {
-      this.$emit('toggleTodo', todo)
-    },
-    doneEdit(e) {
-      const value = e.target.value.trim()
-      const { todo } = this
-      if (!value) {
-        this.deleteTodo({
-          todo
-        })
-      } else if (this.editing) {
-        this.editTodo({
-          todo,
-          value
-        })
-        this.editing = false
-      }
-    },
-    cancelEdit(e) {
-      e.target.value = this.todo.text
-      this.editing = false
-    }
-  }
-}
-</script>

+ 0 - 320
src/views/report/queryWater/components/TodoList/index.scss

@@ -1,320 +0,0 @@
-.todoapp {
-  font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
-  line-height: 1.4em;
-  color: #4d4d4d;
-  min-width: 230px;
-  max-width: 550px;
-  margin: 0 auto ;
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-  font-weight: 300;
-  background: #fff;
-  z-index: 1;
-  position: relative;
-  button {
-    margin: 0;
-    padding: 0;
-    border: 0;
-    background: none;
-    font-size: 100%;
-    vertical-align: baseline;
-    font-family: inherit;
-    font-weight: inherit;
-    color: inherit;
-    -webkit-appearance: none;
-    appearance: none;
-    -webkit-font-smoothing: antialiased;
-    -moz-osx-font-smoothing: grayscale;
-  }
-  :focus {
-    outline: 0;
-  }
-  .hidden {
-    display: none;
-  }
-  .todoapp {
-    background: #fff;
-    margin: 130px 0 40px 0;
-    position: relative;
-    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
-  }
-  .todoapp input::-webkit-input-placeholder {
-    font-style: italic;
-    font-weight: 300;
-    color: #e6e6e6;
-  }
-  .todoapp input::-moz-placeholder {
-    font-style: italic;
-    font-weight: 300;
-    color: #e6e6e6;
-  }
-  .todoapp input::input-placeholder {
-    font-style: italic;
-    font-weight: 300;
-    color: #e6e6e6;
-  }
-  .todoapp h1 {
-    position: absolute;
-    top: -155px;
-    width: 100%;
-    font-size: 100px;
-    font-weight: 100;
-    text-align: center;
-    color: rgba(175, 47, 47, 0.15);
-    -webkit-text-rendering: optimizeLegibility;
-    -moz-text-rendering: optimizeLegibility;
-    text-rendering: optimizeLegibility;
-  }
-  .new-todo,
-  .edit {
-    position: relative;
-    margin: 0;
-    width: 100%;
-    font-size: 18px;
-    font-family: inherit;
-    font-weight: inherit;
-    line-height: 1.4em;
-    border: 0;
-    color: inherit;
-    padding: 6px;
-    border: 1px solid #999;
-    box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2);
-    box-sizing: border-box;
-    -webkit-font-smoothing: antialiased;
-    -moz-osx-font-smoothing: grayscale;
-  }
-  .new-todo {
-    padding: 10px 16px 16px 60px;
-    border: none;
-    background: rgba(0, 0, 0, 0.003);
-    box-shadow: inset 0 -2px 1px rgba(0, 0, 0, 0.03);
-  }
-  .main {
-    position: relative;
-    z-index: 2;
-    border-top: 1px solid #e6e6e6;
-  }
-  .toggle-all {
-    text-align: center;
-    border: none;
-    /* Mobile Safari */
-    opacity: 0;
-    position: absolute;
-  }
-  .toggle-all+label {
-    width: 60px;
-    height: 34px;
-    font-size: 0;
-    position: absolute;
-    top: -52px;
-    left: -13px;
-    -webkit-transform: rotate(90deg);
-    transform: rotate(90deg);
-  }
-  .toggle-all+label:before {
-    content: '❯';
-    font-size: 22px;
-    color: #e6e6e6;
-    padding: 10px 27px 10px 27px;
-  }
-  .toggle-all:checked+label:before {
-    color: #737373;
-  }
-  .todo-list {
-    margin: 0;
-    padding: 0;
-    list-style: none;
-  }
-  .todo-list li {
-    position: relative;
-    font-size: 24px;
-    border-bottom: 1px solid #ededed;
-  }
-  .todo-list li:last-child {
-    border-bottom: none;
-  }
-  .todo-list li.editing {
-    border-bottom: none;
-    padding: 0;
-  }
-  .todo-list li.editing .edit {
-    display: block;
-    width: 506px;
-    padding: 12px 16px;
-    margin: 0 0 0 43px;
-  }
-  .todo-list li.editing .view {
-    display: none;
-  }
-  .todo-list li .toggle {
-    text-align: center;
-    width: 40px;
-    /* auto, since non-WebKit browsers doesn't support input styling */
-    height: auto;
-    position: absolute;
-    top: 0;
-    bottom: 0;
-    margin: auto 0;
-    border: none;
-    /* Mobile Safari */
-    -webkit-appearance: none;
-    appearance: none;
-  }
-  .todo-list li .toggle {
-    opacity: 0;
-  }
-  .todo-list li .toggle+label {
-    /*
-    Firefox requires `#` to be escaped - https://bugzilla.mozilla.org/show_bug.cgi?id=922433
-    IE and Edge requires *everything* to be escaped to render, so we do that instead of just the `#` - https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7157459/
-  */
-    background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%23ededed%22%20stroke-width%3D%223%22/%3E%3C/svg%3E');
-    background-repeat: no-repeat;
-    background-position: center left;
-    background-size: 36px;
-  }
-  .todo-list li .toggle:checked+label {
-    background-size: 36px;
-    background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%23bddad5%22%20stroke-width%3D%223%22/%3E%3Cpath%20fill%3D%22%235dc2af%22%20d%3D%22M72%2025L42%2071%2027%2056l-4%204%2020%2020%2034-52z%22/%3E%3C/svg%3E');
-  }
-  .todo-list li label {
-    word-break: break-all;
-    padding: 15px 15px 15px 50px;
-    display: block;
-    line-height: 1.0;
-        font-size: 14px;
-    transition: color 0.4s;
-  }
-  .todo-list li.completed label {
-    color: #d9d9d9;
-    text-decoration: line-through;
-  }
-  .todo-list li .destroy {
-    display: none;
-    position: absolute;
-    top: 0;
-    right: 10px;
-    bottom: 0;
-    width: 40px;
-    height: 40px;
-    margin: auto 0;
-    font-size: 30px;
-    color: #cc9a9a;
-    transition: color 0.2s ease-out;
-    cursor: pointer;
-  }
-  .todo-list li .destroy:hover {
-    color: #af5b5e;
-  }
-  .todo-list li .destroy:after {
-    content: '×';
-  }
-  .todo-list li:hover .destroy {
-    display: block;
-  }
-  .todo-list li .edit {
-    display: none;
-  }
-  .todo-list li.editing:last-child {
-    margin-bottom: -1px;
-  }
-  .footer {
-    color: #777;
-    position: relative;
-    padding: 10px 15px;
-    height: 40px;
-    text-align: center;
-    border-top: 1px solid #e6e6e6;
-  }
-  .footer:before {
-    content: '';
-    position: absolute;
-    right: 0;
-    bottom: 0;
-    left: 0;
-    height: 40px;
-    overflow: hidden;
-    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 8px 0 -3px #f6f6f6, 0 9px 1px -3px rgba(0, 0, 0, 0.2), 0 16px 0 -6px #f6f6f6, 0 17px 2px -6px rgba(0, 0, 0, 0.2);
-  }
-  .todo-count {
-    float: left;
-    text-align: left;
-  }
-  .todo-count strong {
-    font-weight: 300;
-  }
-  .filters {
-    margin: 0;
-    padding: 0;
-    position: relative;
-    z-index: 1;
-    list-style: none;
-  }
-  .filters li {
-    display: inline;
-  }
-  .filters li a {
-    color: inherit;
-    font-size: 12px;
-    padding: 3px 7px;
-    text-decoration: none;
-    border: 1px solid transparent;
-    border-radius: 3px;
-  }
-  .filters li a:hover {
-    border-color: rgba(175, 47, 47, 0.1);
-  }
-  .filters li a.selected {
-    border-color: rgba(175, 47, 47, 0.2);
-  }
-  .clear-completed,
-  html .clear-completed:active {
-    float: right;
-    position: relative;
-    line-height: 20px;
-    text-decoration: none;
-    cursor: pointer;
-  }
-  .clear-completed:hover {
-    text-decoration: underline;
-  }
-  .info {
-    margin: 65px auto 0;
-    color: #bfbfbf;
-    font-size: 10px;
-    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
-    text-align: center;
-  }
-  .info p {
-    line-height: 1;
-  }
-  .info a {
-    color: inherit;
-    text-decoration: none;
-    font-weight: 400;
-  }
-  .info a:hover {
-    text-decoration: underline;
-  }
-  /*
-  Hack to remove background from Mobile Safari.
-  Can't use it globally since it destroys checkboxes in Firefox
-*/
-  @media screen and (-webkit-min-device-pixel-ratio:0) {
-    .toggle-all,
-    .todo-list li .toggle {
-      background: none;
-    }
-    .todo-list li .toggle {
-      height: 40px;
-    }
-  }
-  @media (max-width: 430px) {
-    .footer {
-      height: 50px;
-    }
-    .filters {
-      bottom: 10px;
-    }
-  }
-}

+ 0 - 127
src/views/report/queryWater/components/TodoList/index.vue

@@ -1,127 +0,0 @@
-<template>
-  <section class="todoapp">
-    <!-- header -->
-    <header class="header">
-      <input class="new-todo" autocomplete="off" placeholder="Todo List" @keyup.enter="addTodo">
-    </header>
-    <!-- main section -->
-    <section v-show="todos.length" class="main">
-      <input id="toggle-all" :checked="allChecked" class="toggle-all" type="checkbox" @change="toggleAll({ done: !allChecked })">
-      <label for="toggle-all" />
-      <ul class="todo-list">
-        <todo
-          v-for="(todo, index) in filteredTodos"
-          :key="index"
-          :todo="todo"
-          @toggleTodo="toggleTodo"
-          @editTodo="editTodo"
-          @deleteTodo="deleteTodo"
-        />
-      </ul>
-    </section>
-    <!-- footer -->
-    <footer v-show="todos.length" class="footer">
-      <span class="todo-count">
-        <strong>{{ remaining }}</strong>
-        {{ remaining | pluralize('item') }} left
-      </span>
-      <ul class="filters">
-        <li v-for="(val, key) in filters" :key="key">
-          <a :class="{ selected: visibility === key }" @click.prevent="visibility = key">{{ key | capitalize }}</a>
-        </li>
-      </ul>
-      <!-- <button class="clear-completed" v-show="todos.length > remaining" @click="clearCompleted">
-        Clear completed
-      </button> -->
-    </footer>
-  </section>
-</template>
-
-<script>
-import Todo from './Todo.vue'
-
-const STORAGE_KEY = 'todos'
-const filters = {
-  all: todos => todos,
-  active: todos => todos.filter(todo => !todo.done),
-  completed: todos => todos.filter(todo => todo.done)
-}
-const defalutList = [
-  { text: 'star this repository', done: false },
-  { text: 'fork this repository', done: false },
-  { text: 'follow author', done: false },
-  { text: 'vue-element-admin', done: true },
-  { text: 'vue', done: true },
-  { text: 'element-ui', done: true },
-  { text: 'axios', done: true },
-  { text: 'webpack', done: true }
-]
-export default {
-  components: { Todo },
-  filters: {
-    pluralize: (n, w) => n === 1 ? w : w + 's',
-    capitalize: s => s.charAt(0).toUpperCase() + s.slice(1)
-  },
-  data() {
-    return {
-      visibility: 'all',
-      filters,
-      // todos: JSON.parse(window.localStorage.getItem(STORAGE_KEY)) || defalutList
-      todos: defalutList
-    }
-  },
-  computed: {
-    allChecked() {
-      return this.todos.every(todo => todo.done)
-    },
-    filteredTodos() {
-      return filters[this.visibility](this.todos)
-    },
-    remaining() {
-      return this.todos.filter(todo => !todo.done).length
-    }
-  },
-  methods: {
-    setLocalStorage() {
-      window.localStorage.setItem(STORAGE_KEY, JSON.stringify(this.todos))
-    },
-    addTodo(e) {
-      const text = e.target.value
-      if (text.trim()) {
-        this.todos.push({
-          text,
-          done: false
-        })
-        this.setLocalStorage()
-      }
-      e.target.value = ''
-    },
-    toggleTodo(val) {
-      val.done = !val.done
-      this.setLocalStorage()
-    },
-    deleteTodo(todo) {
-      this.todos.splice(this.todos.indexOf(todo), 1)
-      this.setLocalStorage()
-    },
-    editTodo({ todo, value }) {
-      todo.text = value
-      this.setLocalStorage()
-    },
-    clearCompleted() {
-      this.todos = this.todos.filter(todo => !todo.done)
-      this.setLocalStorage()
-    },
-    toggleAll({ done }) {
-      this.todos.forEach(todo => {
-        todo.done = done
-        this.setLocalStorage()
-      })
-    }
-  }
-}
-</script>
-
-<style lang="scss">
-  @import './index.scss';
-</style>

+ 0 - 56
src/views/report/queryWater/components/mixins/resize.js

@@ -1,56 +0,0 @@
-import { debounce } from '@/utils'
-
-export default {
-  data() {
-    return {
-      $_sidebarElm: null
-    }
-  },
-  mounted() {
-    this.$_initResizeEvent()
-    this.$_initSidebarResizeEvent()
-  },
-  beforeDestroy() {
-    this.$_destroyResizeEvent()
-    this.$_destroySidebarResizeEvent()
-  },
-  // to fixed bug when cached by keep-alive
-  // https://github.com/PanJiaChen/vue-element-admin/issues/2116
-  activated() {
-    this.$_initResizeEvent()
-    this.$_initSidebarResizeEvent()
-  },
-  deactivated() {
-    this.$_destroyResizeEvent()
-    this.$_destroySidebarResizeEvent()
-  },
-  methods: {
-    // use $_ for mixins properties
-    // https://vuejs.org/v2/style-guide/index.html#Private-property-names-essential
-    $_resizeHandler() {
-      return debounce(() => {
-        if (this.chart) {
-          this.chart.resize()
-        }
-      }, 100)()
-    },
-    $_initResizeEvent() {
-      window.addEventListener('resize', this.$_resizeHandler)
-    },
-    $_destroyResizeEvent() {
-      window.removeEventListener('resize', this.$_resizeHandler)
-    },
-    $_sidebarResizeHandler(e) {
-      if (e.propertyName === 'width') {
-        this.$_resizeHandler()
-      }
-    },
-    $_initSidebarResizeEvent() {
-      this.$_sidebarElm = document.getElementsByClassName('sidebar-container')[0]
-      this.$_sidebarElm && this.$_sidebarElm.addEventListener('transitionend', this.$_sidebarResizeHandler)
-    },
-    $_destroySidebarResizeEvent() {
-      this.$_sidebarElm && this.$_sidebarElm.removeEventListener('transitionend', this.$_sidebarResizeHandler)
-    }
-  }
-}

+ 0 - 642
src/views/report/queryWater/index11.vue

@@ -1,642 +0,0 @@
-/* eslint-disable vue/valid-template-root */
-<template>
-  <div class="app-container">
-    <div class="filter-container">
-      <div class="block">
-        <el-date-picker v-model="yearDate" :clearable="false" type="year" placeholder="选择年" />
- 
-        <el-radio-group v-model="radio"    style="float:right;margin-top:20px">
-          <el-radio  label="集团">集团</el-radio>
-          <el-radio  label="一中心">一中心</el-radio>
-          <el-radio  label="二中心">二中心</el-radio>
-          <el-radio  label="三中心">三中心</el-radio>
-        </el-radio-group>   
-
-      </div>
-
-      
-    </div>
-
-    <!-- 年度维修成本 -->
-    <el-row v-if="isBarChart1" style="position: relative;">
-      <p style="position: absolute;top:-12px;left:40%;color:rgb(130, 165, 252);background:rgb(230, 243, 255);border:1px solid rgb(130, 165, 252);padding:10px;border-radius:10px">
-        {{ year }}年集团用水量:{{ total }}万m³
-      </p>
-      <el-col :span="24">
-        <div id="barChart1" style="width: 100%;height:400px;" />
-      </el-col>
-    </el-row>
-
-    <!-- 年度维修成本 -->
-    <el-row>
-      <el-col :span="12">
-        <div  style="width: 100%;height:70px;" />
-        <div id="lineChart1" style="width: 100%;height:400px;" />
-      </el-col>
-      <el-col :span="12">
-
-
-        <el-select v-model="pastureNameListP"  multiple clearable filterable placeholder="牧场" class="filter-item" style="width:700px" @change="changePastureName">
-          <el-option v-for="item in findAllPasture" :key="item.id" :label="item.name" :value="item.name" />
-        </el-select>
-
-
-        <div id="lineChart2" style="width: 100%;height:400px;" />
-      </el-col>
-    </el-row>
-
-    <el-row>
-      <el-col :span="12">
-        <div id="pieChart1" style="width: 100%;height:400px;" />
-      </el-col>
-      <el-col :span="12">
-        <div id="barChart2" style="width: 100%;height:400px;" />
-      </el-col>
-    </el-row>
-
-  </div>
-
-</template>
-
-<script>
-import echarts from 'echarts'
-
-require('echarts/theme/macarons')
-
-// eslint-disable-next-line no-unused-vars
-import waves from '@/directive/waves' // waves directive
-import Pagination from '@/components/Pagination' // secondary package based on el-pagination
-import { GetDataByName, GetReportform, checkButtons } from '@/api/common'
-
-import Cookies from 'js-cookie'
-export default {
-  name: 'QueryWater',
-  directives: { waves },
-  components: { Pagination },
-  data() {
-    return {
-      yearDate: new Date(),
-      total: '',
-
-      pasture: Cookies.get('pasturename'),
-      year: new Date().getFullYear(),
-      month: new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1,
-      deptment: '维修处',
-
-
-      pastureNameListP: [],
-      findAllPasture: [],
-
-      radio: "集团",
-
-      getBarChart1Parm: {
-        name: 'getpSumNowWater',
-        parammaps: {
-          receiveTime: new Date().getFullYear(),
-          center:'',
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getLineChart1Parm: {
-        name: 'getPastureSumMonthWater',
-        parammaps: {
-          receiveTime: new Date().getFullYear(),
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getLineChart2Parm: {
-        name: 'getPastureSumDayWater',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getPieChart1Parm: {
-        name: 'getdeptSumMonthWater',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename')
-        }
-      },
-      getBarChart2Parm: {
-        name: 'geteqclassSumMonthWater',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename'),
-          deptName: ''
-        }
-      },
-      barChart1: null,
-      lineChart1: null,
-      lineChart2: null,
-      pieChart1: null,
-      barChart2: null,
-
-      chart_data1: {
-        // pasture: ['宝鸡', '恒盛', '塞一', '塞二', '塞三', '塞四', '塞五', '通山', '合肥', '和林'],
-        // nowYear: [123, 332, 222, 333, 444, 333, 222, 334, 234, 223],
-        // lastYear: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66]
-      },
-      chart_data2: {
-        // months: ['2019-01', '2019-02', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01', '2019-01'],
-        // nowYear: [123, 332, 222, 333, 444, 333, 222, 334, 234, 223],
-        // lastYear: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66],
-        // budget: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66]
-      },
-      chart_data3: {
-        // day: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'],
-        // nowYear: [123, 332, 222, 333, 444, 333, 222, 334, 234, 223],
-        // lastYear: [22, 44, 77, 88, 444, 234, 342, 234, 234, 66]
-      },
-      chart_data4: {
-        // name: ['饲养处', '其他部门', '设备处', '能源处', '牧场办公室'],
-        // psum: [
-        //   { value: 335, name: '饲养处' },
-        //   { value: 310, name: '其他部门' },
-        //   { value: 234, name: '设备处' },
-        //   { value: 135, name: '能源处' },
-        //   { value: 1548, name: '牧场办公室' }
-        // ]
-      },
-      chart_data5: {
-        // typeName: ['小型装载机', '叉车', '拖拉机', '抛料机', '搅拌机'],
-        // eqCost: [123, 332, 222, 333, 444],
-        // lastYear: [22, 342, 234, 234, 66]
-      },
-
-      tableKey: 0,
-      list: null,
-      total: 0,
-      listLoading: true,
-      rowStyle: { maxHeight: 50 + 'px', height: 45 + 'px' },
-      cellStyle: { padding: 0 + 'px' },
-
-      dialogFormVisibleCard: false,
-      listLoadingSee: true,
-      rowSeeData: {},
-      listSee: [],
-      totalSee: 0,
-      getdataListParmSee: {
-        name: 'geteqclassSumDay',
-        page: 1,
-        offset: 1,
-        pagecount: 10,
-        returntype: 'Map',
-        parammaps: {
-          receiveTime: new Date().getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1),
-          pastureName: Cookies.get('pasturename'),
-          deptName: '',
-          typeName: '',
-          assetCode: '',
-          eqName: '',
-          startTime: '',
-          stopTime: '',
-          pastureId: Cookies.get('pastureid')
-        }
-      },
-      buttons: [],
-      isBarChart1: []
-
-    }
-  },
-
-  watch: {
-    'yearDate': {
-      deep: true,
-      handler: function(newVal, oldVal) {
-        var time = this.yearDate
-        console.log(newVal.getFullYear())
-        this.year = time.getFullYear()
-        this.getBarChart1Parm.parammaps.receiveTime = time.getFullYear()
-        this.getLineChart1Parm.parammaps.receiveTime = time.getFullYear()
-        this.getLineChart2Parm.parammaps.receiveTime = time.getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1)
-        this.getPieChart1Parm.parammaps.receiveTime = time.getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1)
-        this.getBarChart2Parm.parammaps.receiveTime = time.getFullYear() + '-' + (new Date().getMonth() < 9 ? '0' + (new Date().getMonth() + 1) : new Date().getMonth() + 1)
-
-        this.getBarChart1()
-        this.getLineChart1()
-        this.getLineChart2()
-        this.getPieChart1()
-      }
-    },
-    'radio': {
-      deep: true,
-      handler: function(newVal, oldVal) {
-        console.log(newVal, oldVal)
-        if(newVal == '集团'){
-          this.getBarChart1Parm.parammaps.center = ''
-        } else {
-          this.getBarChart1Parm.parammaps.center = newVal
-        }
-        this.getBarChart1()
-        // this.getLineChart1()
-        // this.getLineChart2()
-        // this.getPieChart1()
-      }
-    },
-
-  },
-
-  created() {
-    this.getBarChart1()
-    this.getLineChart1()
-    this.getLineChart2()
-    
-    this.getPieChart1()
-    const that = this
-    GetDataByName({ 'name': 'getUserPCButtons', 'parammaps': { 'jwt_username': Cookies.get('name') }}).then(response => {
-      that.buttons = response.data.list
-      that.get_auto_buttons()
-    })
-
-    GetDataByName({ name: 'findAllPasture', offset: 0, pagecount: 0, returntype: 'Map', parammaps: { 'id': Cookies.get('pastureid') }}).then(response => {
-      console.log(response)
-      that.findAllPasture = response.data.list
- 
-    })
-  },
-  mounted() {
-    // this.roadBarChart1(this.chart_data1)
-    // this.roadlineChart1(this.chart_data2, this.pasture, this.year)
-    // this.roadlineChart2(this.chart_data3, this.pasture, this.month)
-    //  this.roadpieChart1(this.chart_data4, this.month)
-    // this.roadBarChart2(this.chart_data5, this.deptment)
-  },
-  methods: {
-
-    changePastureName(item){
-      console.log(item)
-      if(item.length > 5){
-          this.$notify({
-            title: '提示',
-            message: '最多只能选5家牧场!',
-            type: 'danger',
-            duration: 2000
-          })
-      } else {
-
-      }
-    },
-    get_auto_buttons() {
-      // 图1
-      const BarChart1 = 'report:queryWater:pastures'
-      const isBarChart1 = checkButtons(this.$store.state.user.buttons, BarChart1)
-      this.isBarChart1 = isBarChart1
-    },
-    // 各牧场年度维修成本对比
-    getBarChart1() {
-      GetReportform(this.getBarChart1Parm).then(response => {
-        console.log('图1', response)
-        this.chart_data1 = response.data.chart_data
-        this.roadBarChart1(this.chart_data1)
-        var nowYear = response.data.chart_data.nowYear
-        var total = 0
-        if (nowYear !== null || nowYear !== undefined) {
-          nowYear.forEach(function(item, index) {
-            console.log(parseFloat(item))
-            total = total + parseFloat(item)
-          })
-        }
-        this.total = total.toFixed(4)
-      })
-    },
-    getLineChart1() {
-      GetReportform(this.getLineChart1Parm).then(response => {
-        console.log('图2', response)
-        this.chart_data2 = response.data.chart_data
-        this.roadlineChart1(this.chart_data2, this.pasture, this.year)
-      })
-    },
-    getLineChart2() {
-      GetReportform(this.getLineChart2Parm).then(response => {
-        console.log('图3', response)
-        this.chart_data3 = response.data.chart_data
-
-        this.roadlineChart2(this.chart_data3, this.pasture, this.month)
-      })
-    },
-    
-
-    getPieChart1() {
-      GetDataByName(this.getPieChart1Parm).then(response => {
-        console.log('图4', response)
-        if (response.data === null || response.data.list === null) {
-          this.chart_data4 = { name: [], arr1: [] , arr2: [] }
-          this.chart_data4 = {
-            name: ['挤奶处', '安环处', '饲喂处', '牧场办公室', '品控处'], 
-            arr1: [2,3,13,43,12],
-            arr2: [12,31,23,33,13]
-          }
-          this.roadpieChart1(this.chart_data4, this.month)
-        } else {
-        
-          this.chart_data4 = {
-            name: ['挤奶处', '安环处', '饲喂处', '牧场办公室', '品控处'], 
-            arr1: [2,3,13,43,12],
-            arr2: [12,31,23,33,13]
-          }
-          this.roadpieChart1(this.chart_data4, this.month)
- 
-        }
-
-    
-       })
-    },
-
-    roadpieChart1(chart_data4, month) {
-      if (this.pieChart1 != null) {
-        this.pieChart1.dispose()
-      }
-      this.pieChart1 = echarts.init(document.getElementById('pieChart1'))
-      var option = {
-        title: { text: month + '月部门统计', textStyle: { color: '#769cfc' }},
-       
-        tooltip: {  trigger: 'axis'  },
-        legend: {
-          data:['实际', '预算']
-        },
-        color: ['#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '5%', bottom: '4%', containLabel: true },
-        toolbox: {show: true },
-        calculable: true,
-        xAxis: [
-          {
-            type: 'category',
-            // prettier-ignore
-            data: chart_data4.name
-          }
-        ],
-        yAxis: [
-          {
-            type: 'value'
-          }
-        ],
-        series: [
-          {
-            name: '实际', type: 'bar',  data: chart_data4.arr1,  
-          },
-          {
-            name: '预算',  type: 'bar',  data: chart_data4.arr2, 
-          }
-        ]
-      }
-      this.pieChart1.setOption(option)
-      window.onresize = function() {
-        this.pieChart1.resize()
-      }
-      var that = this
-      this.pieChart1.on('click', function(param, i) {
-        console.log(param)
-        that.deptment = param.name
-        that.getBarChart2Parm.parammaps.deptName = param.name
-        that.getBarChart2()
-      })
-    },
-    getBarChart2() {
-      GetReportform(this.getBarChart2Parm).then(response => {
-        console.log('图5', response)
-        this.chart_data5 = response.data.chart_data
-        this.chart_data5 = {
-            name: ['装载机', '安环处', '饲喂处', '牧场办公室', '品控处'], 
-            arr1: [2,3,13,43,12],
-            arr2: [12,31,23,33,13]
-          }
-
-        this.roadBarChart2(this.chart_data5, this.deptment)
-      })
-    },
-
-    // xx用水量
-    roadBarChart2(chart_data5, deptment) {
-      if (this.barChart2 != null) {
-        this.barChart2.dispose()
-      }
-      this.barChart2 = echarts.init(document.getElementById('barChart2'))
-      var option = {
-        title: { text: deptment + '用水量', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['实际', '预算'],
-          x: 'right'
-        },
-        color: ['#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '15%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data5.name, name: '', axisLabel: { interval: 0, rotate: 30 }}],
-        yAxis: [{ type: 'value', name: '水(m³)', axisLabel: { formatter: '{value}' }}],
-        series: [
-          // {
-          //   name: '用水量',
-          //   type: 'bar',
-          //   barWidth: 14,
-          //   data: chart_data5.eqCost,
-          //   emphasis: { label: { show: true, position: 'inside' }}
-          // }
-
-          {
-            name: '实际', type: 'bar',  data: chart_data5.arr1,  
-          },
-          {
-            name: '预算',  type: 'bar',  data: chart_data5.arr2, 
-          }
-
-        ]
-      }
-      this.barChart2.setOption(option)
-      window.onresize = function() {
-        this.barChart2.resize()
-      }
-    },
-
-
-    // 各牧场年度维修成本对比
-    roadBarChart1(chart_data1) {
-      if (this.barChart1 != null) {
-        this.barChart1.dispose()
-      }
-      this.barChart1 = echarts.init(document.getElementById('barChart1'))
-      var option = {
-        title: { text: '各牧场年度用水量对比', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['今年用量', '去年同期'],
-          right: 40
-        },
-        color: ['#2dc0e8', '#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '4%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data1.pasture, axisLabel: { interval: 0, rotate: 30 }}],
-        yAxis: [{ type: 'value', name: '水(m³)', axisLabel: { formatter: '{value}万' }}],
-        series: [
-          {
-            name: '今年用量',
-            type: 'bar',
-            data: chart_data1.nowYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '去年同期',
-            type: 'bar',
-            data: chart_data1.lastYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.barChart1.setOption(option)
-      window.onresize = function() {
-        this.barChart1.resize()
-      }
-      var that = this
-      this.barChart1.on('click', function(param, i) {
-        console.log(param)
-        that.pasture = param.name
-        that.getLineChart1Parm.parammaps.pastureName = param.name
-        that.getLineChart2Parm.parammaps.pastureName = param.name
-        that.getPieChart1Parm.parammaps.pastureName = param.name
-        that.getBarChart2Parm.parammaps.pastureName = param.name
-
-        that.getLineChart1()
-        that.getLineChart2()
-        that.getPieChart1()
-      })
-    },
-    // xx每月用水量对比
-    roadlineChart1(chart_data2, pasture, year) {
-      if (this.lineChart1 != null) {
-        this.lineChart1.dispose()
-      }
-      this.lineChart1 = echarts.init(document.getElementById('lineChart1'))
-      var option = {
-        title: { text: pasture + year + '每月用水量对比', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['今年用量', '去年同期用量', '预算'],
-          x: 'right'
-        },
-        color: ['#769cfc', '#FFB800', '#6bda00'],
-        grid: { left: '3%', right: '8%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data2.months, name: '月份', axisLabel: { interval: 0, rotate: 30 }}],
-        yAxis: [{ type: 'value', name: '水(m³)', axisLabel: { formatter: '{value}' }}],
-        series: [
-          {
-            name: '今年用量',
-            type: 'line',
-            data: chart_data2.nowYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '去年同期用量',
-            type: 'line',
-            data: chart_data2.lastYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '预算',
-            type: 'line',
-            data: chart_data2.budget,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.lineChart1.setOption(option)
-      window.onresize = function() {
-        this.lineChart1.resize()
-      }
-      var that = this
-      this.lineChart1.on('click', function(param, i) {
-        console.log(param)
-
-        that.getLineChart2Parm.parammaps.receiveTime = param.name
-        that.getPieChart1Parm.parammaps.receiveTime = param.name
-        that.getBarChart2Parm.parammaps.receiveTime = param.name
-
-        var num = param.name.substring(5)
-        console.log(num)
-        that.month = num
-        that.getLineChart2()
-        that.getPieChart1()
-      })
-    },
-
-    // xx用水量对比
-    roadlineChart2(chart_data3, pasture, month) {
-      if (this.lineChart2 != null) {
-        this.lineChart2.dispose()
-      }
-      this.lineChart2 = echarts.init(document.getElementById('lineChart2'))
-      var option = {
-        title: { text:  month + '月每日用水量对比', textStyle: { color: '#769cfc' }},
-        tooltip: { trigger: 'axis' },
-        legend: {
-          data: ['今年日用量', '去年同期'],
-          x: 'right'
-        },
-        color: ['#769cfc', '#FFB800'],
-        grid: { left: '3%', right: '8%', bottom: '4%', containLabel: true },
-        xAxis: [{ type: 'category', data: chart_data3.day, name: '日期', axisLabel: { interval: 0 }}],
-        yAxis: [{ type: 'value', name: '水(m³)', axisLabel: { formatter: '{value}' }}],
-        series: [
-          {
-            name: '今年日用量',
-            type: 'line',
-            data: chart_data3.nowYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          },
-          {
-            name: '去年同期',
-            type: 'line',
-            data: chart_data3.lastYear,
-            emphasis: { label: { show: true, position: 'inside' }}
-          }
-
-        ]
-      }
-      this.lineChart2.setOption(option)
-      window.onresize = function() {
-        this.lineChart2.resize()
-      }
-      this.lineChart2.on('click', function(param, i) {
-        console.log(param)
-      })
-    },
-    // 部门统计
-   
-    
-  }
-}
-</script>
-<style>
-.el-row {
-    margin-bottom: 40px;
-    &:last-child {
-      margin-bottom: 0;
-    }
-  }
-</style>
-
-<style lang="scss" scoped>
-
-.dashboard-editor-container {
-  padding: 20px;
-  background-color: rgb(240, 242, 245);
-  position: relative;
-
-  .github-corner {
-    position: absolute;
-    top: 0px;
-    border: 0;
-    right: 0;
-  }
-
-  .chart-wrapper {
-    background: #fff;
-    padding: 16px 16px 0;
-  }
-}
-
-@media (max-width:1024px) {
-  .chart-wrapper {
-    padding: 8px;
-  }
-}
-</style>

Some files were not shown because too many files changed in this diff