Bläddra i källkod

财务-bug修改

wangqiang 2 år sedan
förälder
incheckning
bb7e6b23d2

+ 9 - 6
src/views/modules/cw/reimbursementApproval/info/InfoList.vue

@@ -85,7 +85,7 @@
           <el-button v-if="hasPermission('sys:project:exportFile')"  type="warning" plain @click="exportFile()" size="small">导出</el-button>
         </template>
       </vxe-toolbar>
-      <div style="height: calc(100% - 50px)">
+      <div style="height: calc(100% - 80px)">
         <vxe-table
           border="inner"
           auto-resize
@@ -138,7 +138,6 @@
             </template>
           </vxe-column>
         </vxe-table>
-
         <vxe-pager
           background
           size="small"
@@ -152,7 +151,8 @@
 
         <ProgramPageForm ref="programPageForm" @getProgram="getProgram"></ProgramPageForm>
         <InfoForm ref="infoForm" @refreshDataList="refreshList"></InfoForm>
-        <ProjectForm ref="projectForm" @refreshDataList="refreshList"></ProjectForm>
+<!--        <ProjectForm ref="projectForm" @refreshDataList="refreshList"></ProjectForm>-->
+        <ProjectRecordsForm ref="projectRecordsForm" @refreshDataList="refreshList"></ProjectRecordsForm>
       </div>
     </div>
   </div>
@@ -170,7 +170,8 @@
   import TaskService from '@/api/flowable/TaskService'
   import ProcessService from '@/api/flowable/ProcessService'
   import pick from 'lodash.pick'
-  import ProjectForm from '@/views/modules/program/registered/ProjectForm'
+  // import ProjectForm from '@/views/modules/program/registered/ProjectForm'
+  import ProjectRecordsForm from '../../projectRecords/ProjectRecordsForm'
   export default {
     data () {
       return {
@@ -214,7 +215,8 @@
       SelectTree,
       ProgramPageForm,
       InfoForm,
-      ProjectForm,
+      // ProjectForm,
+      ProjectRecordsForm,
       UserSelect
     },
     mounted () {
@@ -330,7 +332,8 @@
       },
       // 查看报销项目
       viewProject (id) {
-        this.$refs.projectForm.init('view', id)
+        // this.$refs.projectForm.init('view', id)
+        this.$refs.projectRecordsForm.init('view', id)
       },
       // 获取数据列表
       refreshList () {

+ 29 - 33
src/views/modules/cw/reportManagement/ReportManagementTaskForm.vue

@@ -201,21 +201,7 @@
           </el-col>
           <el-form size="middle" :model="inputForm" ref="inputForm" v-loading="loading" :class="method==='view'?'readonly':''"  :disabled="status !== 'audit'"
                    label-width="135px" @submit.native.prevent>
-            <el-col v-if="inputForm.status !== '2'" :span="12">
-              <el-form-item label="意见类型" prop="opinionType"
-                            :rules="[
-                     ]">
-                <el-select v-model="inputForm.opinionType" placeholder="请选择意见类型" style="width:100%;">
-                  <el-option
-                    v-for="item in $dictUtils.getDictList('cw_opinion_type')"
-                    :key="item.value"
-                    :label="item.label"
-                    :value="item.value">
-                  </el-option>
-                </el-select>
-              </el-form-item>
-            </el-col>
-            <el-col v-if="inputForm.status === '2'" :span="12">
+            <el-col :span="12">
               <el-form-item label="意见类型" prop="opinionType"
                             :rules="[
                               {required: true, message:'意见类型不能为空', trigger:'change'}
@@ -579,32 +565,42 @@
         this.$refs['inputForm'].validate((valid) => {
           if (valid) {
             this.loading = true
-            if (this.commonJS.isEmpty(this.inputForm.createDate)) {
-              this.inputForm.createDate = this.moment(new Date()).format('YYYY-MM-DD HH:mm:ss')
-            }
-            this.$refs.archiveFile.getDataList().then((data) => {
-              this.inputForm.cwFileInfoList = data
-              if (this.commonJS.isNotEmpty(this.inputForm.cwFileInfoList)) {
-                let _this = this
-                _this.inputForm.cwFileInfoList.forEach((item, index) => {
-                  if (_this.commonJS.isEmpty(item.fileType)) {
-                    _this.$message.error('签章文件中,第' + (index + 1) + '条数据的“文件类型”未填写')
-                    _this.loading = false
-                    throw new Error('签章文件中,第' + (index + 1) + '条数据的“文件类型”未填写')
-                  } else if (_this.commonJS.isEmpty(item.sealType)) {
-                    _this.$message.error('签章文件中,第' + (index + 1) + '条数据的“盖章类型”未填写')
-                    _this.loading = false
-                    throw new Error('签章文件中,第' + (index + 1) + '条数据的“盖章类型”未填写')
+            let _this = this
+            let _num = 0
+            const wait = function () {
+              return new Promise((resolve, reject) => {
+                _this.$refs.archiveFile.getDataList().then((data) => {
+                  _this.inputForm.cwFileInfoList = data
+                  if (_this.commonJS.isNotEmpty(_this.inputForm.cwFileInfoList)) {
+                    _this.inputForm.cwFileInfoList.forEach((item, index) => {
+                      if (_this.commonJS.isEmpty(item.fileType)) {
+                        _this.$message.error('签章文件中,第' + (index + 1) + '条数据的“文件类型”未填写')
+                        _num = 1
+                        _this.loading = false
+                        throw new Error('签章文件中,第' + (index + 1) + '条数据的“文件类型”未填写')
+                      } else if (_this.commonJS.isEmpty(item.sealType)) {
+                        _this.$message.error('签章文件中,第' + (index + 1) + '条数据的“盖章类型”未填写')
+                        _num = 1
+                        _this.loading = false
+                        throw new Error('签章文件中,第' + (index + 1) + '条数据的“盖章类型”未填写')
+                      }
+                    })
                   }
                 })
+                resolve()
+              })
+            }
+            wait().then(() => {
+              if (_num !== 1) {
+                if (this.commonJS.isEmpty(this.inputForm.createDate)) {
+                  this.inputForm.createDate = this.moment(new Date()).format('YYYY-MM-DD HH:mm:ss')
+                }
                 if (status === 'agree' && this.commonJS.isEmpty(this.inputForm.opinionType)) {
                   this.$message.error('意见类型不能为空')
                   this.loading = false
                   throw new Error('意见类型不能为空')
                 }
                 this.projectReportService.saveForm(this.inputForm).then(({data}) => {
-                  // console.log('businessTable', data.businessTable)
-                  // console.log('businessId', data.businessId)
                   callback(data.businessTable, data.businessId, this.inputForm)
                   this.loading = false
                 }).catch(() => {

+ 11 - 0
src/views/modules/cw/workContract/ContractRegistration.vue

@@ -76,6 +76,16 @@
           </el-option>
         </el-select>
       </el-form-item>
+      <el-form-item label="纸质归档" prop="filedPaperType">
+        <el-select v-model="searchForm.filedPaperType" placeholder="请选择" style="width:100%;">
+          <el-option
+            v-for="item in $dictUtils.getDictList('filed_type')"
+            :key="item.value"
+            :label="item.label"
+            :value="item.value">
+          </el-option>
+        </el-select>
+      </el-form-item>
 
       <el-form-item>
         <el-button type="primary" @click="refreshList()" size="small" icon="el-icon-search">查询</el-button>
@@ -222,6 +232,7 @@
         visible: false,
         num: 0,
         searchForm: {
+          filedPaperType: '',
           contractNo: '',
           contractName: '',
           contractAmount: '',

+ 1 - 1
src/views/modules/cw/workContract/ContractRegistrationForm.vue

@@ -749,7 +749,7 @@
           this.$refs['inputForm'].validate(async (valid) => {
             if (valid) {
               this.loading = true
-              this.inputForm.status = '2'
+              this.inputForm.status = '5'
               this.inputForm.contractProperList = this.$refs.uploadComponent.getDataList()
               this.inputForm.fees = this.inputForm.contractFees.join(',')
               await this.contractInfoService.save(this.inputForm).then(({data}) => {

+ 4 - 37
src/views/modules/cw/workContract/CwWorkContractBorrowForm.vue

@@ -204,34 +204,15 @@
     methods: {
       init (id) {
         if (id) {
+          console.log('进来了')
           this.loading = true
           this.inputForm.id = id
           this.$nextTick(() => {
-            // console.log('id', id)
             this.$refs.inputForm.resetFields()
-            // this.contractInfoService.findById(this.inputForm.id).then(({data}) => {
-            //   this.$refs.archiveFile.clearUpload()
-            //   this.$refs.uploadFile.clearUpload()
-            //   this.inputForm = this.recover(this.inputForm, data)
-            //   this.inputForm.borrowName = this.userName
-            //   this.inputForm.borrowData = new Date()
-            //   this.$refs.uploadFile.newUpload('view', data.contractProperList, 'cwWorkContract', null, null, null, null, false)
-            //   this.$refs.archiveFile.newUpload('view', data.contractInfoList, 'cwWorkContract', null, null, null, null, false)
-            //   console.log('data', data)
-            //   this.loading = false
-            // })
             this.cwWorkContractBorrowService.findById(this.inputForm.id).then(({data}) => {
               this.$refs.archiveFile.clearUpload()
               this.$refs.uploadFile.clearUpload()
-              // this.contractInfoService.findById(this.inputForm.id).then(({data}) => {
-              //   this.inputForm = this.recover(this.inputForm, data)
-              //   this.inputForm.borrowName = this.userName
-              //   this.inputForm.borrowData = new Date()
-              //   this.$refs.uploadFile.newUpload('view', data.contractProperList, 'cwWorkContract', null, null, null, null, false)
-              //   this.$refs.archiveFile.newUpload('view', data.contractInfoList, 'cwWorkContract', null, null, null, null, false)
-              //   console.log('data', data)
-              //   this.loading = false
-              // })
+              console.log('data1', data)
               if (this.commonJS.isEmpty(data.id)) {
                 this.contractInfoService.findById(this.inputForm.id).then(({data}) => {
                   this.inputForm = this.recover(this.inputForm, data)
@@ -243,7 +224,8 @@
                   this.loading = false
                 })
               } else {
-                this.contractInfoService.findFileInfoById(this.inputForm.id).then(({data}) => {
+                console.log('data2', data)
+                this.contractInfoService.findFileInfoById(data.contractInfoId).then(({data}) => {
                   this.inputForm.cwWorkClientContactDTOList = data.cwWorkClientContactDTOList
                   this.$refs.uploadFile.newUpload('view', data.contractProperList, 'cwWorkContract', null, null, null, null, false)
                   this.$refs.archiveFile.newUpload('view', data.contractInfoList, 'cwWorkContract', null, null, null, null, false)
@@ -253,21 +235,6 @@
                 this.inputForm.borrowData = new Date()
                 this.loading = false
               }
-            // })
-            // this.workContractBorrowService.findById(this.inputForm.id).then(({data}) => {
-            //   if (this.commonJS.isEmpty(data.id)) {
-            //     this.workContractService.findById(this.inputForm.id).then(({data}) => {
-            //       this.inputForm = this.recover(this.inputForm, data)
-            //       this.inputForm.borrowName = this.userName
-            //       this.inputForm.borrowData = new Date()
-            //       this.loading = false
-            //     })
-            //   } else {
-            //     this.inputForm = this.recover(this.inputForm, data)
-            //     this.inputForm.borrowName = this.userName
-            //     this.inputForm.borrowData = new Date()
-            //     this.loading = false
-            //   }
             })
           })
         }

+ 49 - 17
src/views/modules/materialManagement/info/UpdateInfoForm.vue

@@ -105,7 +105,7 @@
             @cell-click=""
             @edit-closed=""
             highlight-current-row
-            :edit-config="{trigger: 'click', mode: 'cell', showStatus: true, autoClear: true}"
+            :edit-config="{trigger: 'click', mode: 'row', showStatus: false, autoClear: true, icon: '-'}"
           >
             <vxe-table-column field="purchaser" title="采购人" :edit-render="{}" :rules="[{required: true, message:'请选择采购人', trigger:'blur'}]">
               <template v-slot:edit="scope">
@@ -129,12 +129,19 @@
             </vxe-table-column>
             <vxe-table-column field="tradePrice" title="商品单价(元)" :edit-render="{}" :rules="[{required: true, message:'请输入商品单价', trigger:'blur'}]">
               <template v-slot:edit="scope">
-                <el-input maxlength="15" v-model="scope.row.tradePrice" @keyup.native="scope.row.tradePrice = twoDecimalPlaces(scope.row.tradePrice)"></el-input>
+                <!--              <el-input @change="changeValue" maxlength="15" v-model="scope.row.tradePrice" @keyup.native="scope.row.tradePrice = twoDecimalPlaces(scope.row.tradePrice)"></el-input>-->
+                <el-input @change="changeValue" maxlength="15" v-model="scope.row.tradePrice" @blur="scope.row.tradePrice = twoDecimalPlaces(scope.row.tradePrice)"></el-input>
               </template>
             </vxe-table-column>
             <vxe-table-column field="tradeNumber" title="商品数量" :edit-render="{}">
               <template v-slot:edit="scope">
-                <el-input v-model="scope.row.tradeNumber" oninput ="value=value.replace(/\D|^0/g,'')" maxlength="10"></el-input>
+                <!--              <el-input @change="changeValue" v-model="scope.row.tradeNumber" oninput ="value=value.replace(/\D|^0/g,'')" maxlength="10"></el-input>-->
+                <el-input @change="changeValue" v-model="scope.row.tradeNumber" @blur="scope.row.tradeNumber = twoDecimalPlaces2(scope.row.tradeNumber)" maxlength="10"></el-input>
+              </template>
+            </vxe-table-column>
+            <vxe-table-column field="priceSum" title="商品总价" :edit-render="{}">
+              <template v-slot:edit="scope">
+                <el-input v-model="scope.row.priceSum" @blur="scope.row.priceSum = twoDecimalPlaces(scope.row.priceSum)" maxlength="15"></el-input>
               </template>
             </vxe-table-column>
             <vxe-table-column field="company" title="单位" :edit-render="{}" :rules="[{required: true, message:'请填写单位', trigger:'blur'}]">
@@ -225,6 +232,7 @@
 </template>
 
 <script>
+  import SelectTree from '@/components/treeSelect/treeSelect.vue'
   import MaterialManagementDialog from '../file/MaterialManagementDialog'
   import CwProgramPageForm from '@/views/modules/cw/reimbursementApproval/info/CwProgramPageForm'
   import MaterialTypePullForm from './MaterialTypePullForm'
@@ -266,6 +274,7 @@
       this.materialManagementService = new MaterialManagementService()
     },
     components: {
+      SelectTree,
       MaterialTypePullForm,
       CwProgramPageForm,
       MaterialManagementDialog,
@@ -312,22 +321,18 @@
               if (this.commonJS.isEmpty(this.inputForm.handledByOffice)) {
                 this.inputForm.handledByOffice = JSON.parse(localStorage.getItem('user')).officeDTO.id
               }
+              let i = this.inputForm.detailInfos.length
+              for (let j = 0; j < i; j++) {
+                if (this.commonJS.isNotEmpty(this.inputForm.detailInfos[j].tradePrice)) {
+                  if (this.commonJS.isNotEmpty(this.inputForm.detailInfos[j].tradeNumber)) {
+                    this.inputForm.detailInfos[j].priceSum = this.inputForm.detailInfos[j].tradePrice * this.inputForm.detailInfos[j].tradeNumber
+                  }
+                }
+              }
               this.$refs.uploadComponent.newUpload(method, this.inputForm.files, 'reimbursement')
               this.inputForm = JSON.parse(JSON.stringify(this.inputForm))
               this.loading = false
             })
-            // this.reimbursementApprovalService.findById(this.inputForm.id).then(({data}) => {
-            //   this.inputForm = this.recover(this.inputForm, data)
-            //   this.$refs.uploadComponent.newUpload(method, this.inputForm.files, 'reimbursement')
-            //   this.inputForm = JSON.parse(JSON.stringify(this.inputForm))
-            //   this.loading = false
-            // })
-            // this.reimbursementService.findById(this.inputForm.id).then(({data}) => {
-            //   this.inputForm = this.recover(this.inputForm, data)
-            //   this.$refs.uploadComponent.newUpload(method, this.inputForm.files, 'reimbursement')
-            //   this.inputForm = JSON.parse(JSON.stringify(this.inputForm))
-            //   this.loading = false
-            // })
           }
         })
       },
@@ -381,6 +386,34 @@
         str = str.replace(/[^\d^\.]+/g, '') // 保留数字和小数点
         return str
       },
+      twoDecimalPlaces2 (num) {
+        let str = num.toString()
+        var len1 = str.substr(0, 1)
+        var len2 = str.substr(1, 1)
+        // eslint-disable-next-line eqeqeq
+        if (str.length > 1 && len1 == 0 && len2 != '.') {
+          str = str.substr(1, 1)
+        }
+        // eslint-disable-next-line eqeqeq
+        if (len1 == '.') {
+          str = ''
+        }
+        // eslint-disable-next-line eqeqeq
+        if (str.indexOf('.') != -1) {
+          var str_ = str.substr(str.indexOf('.') + 1)
+          // eslint-disable-next-line eqeqeq
+          if (str_.indexOf('.') != -1) {
+            str = str.substr(0, str.indexOf('.') + str_.indexOf('.') + 1)
+          }
+          if (str_.length > 2) {
+            this.$message.warning(`商品数量小数点后只能输入两位,请正确输入!`)
+            return (str = '')
+          }
+        }
+        // eslint-disable-next-line no-useless-escape
+        str = str.replace(/[^\d^\.]+/g, '') // 保留数字和小数点
+        return str
+      },
       // 采购人下拉弹窗
       userPullListForm (rowIndex) {
         this.indexRow = rowIndex
@@ -392,10 +425,9 @@
             if (columnIndex === 0) {
               return '商品总价'
             }
-            if (['tradePrice'].includes(column.property)) {
+            if (['priceSum'].includes(column.property)) {
               // eslint-disable-next-line no-undef
               this.inputForm.tradeTotalPrice = XEUtils.sum(data, column.property)
-              console.log('this.inputForm.tradeTotalPrice', this.inputForm.tradeTotalPrice)
               return XEUtils.sum(data, column.property)
             }
             return null

+ 42 - 5
src/views/modules/materialManagement/purchase/PurchaseForm.vue

@@ -54,7 +54,9 @@
         </el-col>
         <el-col :span="12">
           <el-form-item label="采购方式" prop="purchaseMode"
-                        :rules="[]">
+                        :rules="[
+                          {required: true, message: '采购方式不能为空', trigger: 'blur'},
+          ]">
             <el-select v-model="inputForm.purchaseMode" placeholder="请选择采购方式" style="width:100%;">
               <el-option
                 v-for="item in $dictUtils.getDictList('material_purchase_mode')"
@@ -97,7 +99,7 @@
           @cell-click=""
           @edit-closed=""
           highlight-current-row
-          :edit-config="{trigger: 'click', mode: 'cell', showStatus: true, autoClear: true}"
+          :edit-config="{trigger: 'click', mode: 'row', showStatus: false, autoClear: true, icon: '-'}"
         >
           <vxe-table-column field="purchaser" title="采购人" :edit-render="{}" :rules="[{required: true, message:'请选择采购人', trigger:'blur'}]">
             <template v-slot:edit="scope">
@@ -121,17 +123,19 @@
           </vxe-table-column>
           <vxe-table-column field="tradePrice" title="商品单价(元)" :edit-render="{}" :rules="[{required: true, message:'请输入商品单价', trigger:'blur'}]">
             <template v-slot:edit="scope">
-              <el-input @change="changeValue" maxlength="15" v-model="scope.row.tradePrice" @keyup.native="scope.row.tradePrice = twoDecimalPlaces(scope.row.tradePrice)"></el-input>
+<!--              <el-input @change="changeValue" maxlength="15" v-model="scope.row.tradePrice" @keyup.native="scope.row.tradePrice = twoDecimalPlaces(scope.row.tradePrice)"></el-input>-->
+              <el-input @change="changeValue" maxlength="15" v-model="scope.row.tradePrice" @blur="scope.row.tradePrice = twoDecimalPlaces(scope.row.tradePrice)"></el-input>
             </template>
           </vxe-table-column>
           <vxe-table-column field="tradeNumber" title="商品数量" :edit-render="{}">
             <template v-slot:edit="scope">
-              <el-input @change="changeValue" v-model="scope.row.tradeNumber" oninput ="value=value.replace(/\D|^0/g,'')" maxlength="10"></el-input>
+<!--              <el-input @change="changeValue" v-model="scope.row.tradeNumber" oninput ="value=value.replace(/\D|^0/g,'')" maxlength="10"></el-input>-->
+              <el-input @change="changeValue" v-model="scope.row.tradeNumber" @blur="scope.row.tradeNumber = twoDecimalPlaces2(scope.row.tradeNumber)" maxlength="10"></el-input>
             </template>
           </vxe-table-column>
           <vxe-table-column field="priceSum" title="商品总价" :edit-render="{}">
             <template v-slot:edit="scope">
-              <el-input v-model="scope.row.priceSum" @keyup.native="scope.row.priceSum = twoDecimalPlaces(scope.row.priceSum)" maxlength="15"></el-input>
+              <el-input v-model="scope.row.priceSum" @blur="scope.row.priceSum = twoDecimalPlaces(scope.row.priceSum)" maxlength="15"></el-input>
             </template>
           </vxe-table-column>
           <vxe-table-column field="company" title="单位" :edit-render="{}" :rules="[{required: true, message:'请填写单位', trigger:'blur'}]">
@@ -220,6 +224,7 @@
 </template>
 
 <script>
+  import UserSelect from '@/components/userSelect'
   // import UpLoadComponentDialog from '@/views/common/UpLoadComponentDialog'
   import MaterialManagementDialog from '../file/MaterialManagementDialog'
   // import ReimbursementApprovalService from '@/api/cw/reimbursementApproval/ReimbursementApprovalService'
@@ -284,6 +289,7 @@
       }
     },
     components: {
+      UserSelect,
       MaterialManagementDialog,
       UpLoadComponent,
       SelectUserTree,
@@ -636,6 +642,34 @@
         str = str.replace(/[^\d^\.]+/g, '') // 保留数字和小数点
         return str
       },
+      twoDecimalPlaces2 (num) {
+        let str = num.toString()
+        var len1 = str.substr(0, 1)
+        var len2 = str.substr(1, 1)
+        // eslint-disable-next-line eqeqeq
+        if (str.length > 1 && len1 == 0 && len2 != '.') {
+          str = str.substr(1, 1)
+        }
+        // eslint-disable-next-line eqeqeq
+        if (len1 == '.') {
+          str = ''
+        }
+        // eslint-disable-next-line eqeqeq
+        if (str.indexOf('.') != -1) {
+          var str_ = str.substr(str.indexOf('.') + 1)
+          // eslint-disable-next-line eqeqeq
+          if (str_.indexOf('.') != -1) {
+            str = str.substr(0, str.indexOf('.') + str_.indexOf('.') + 1)
+          }
+          if (str_.length > 2) {
+            this.$message.warning(`商品数量小数点后只能输入两位,请正确输入!`)
+            return (str = '')
+          }
+        }
+        // eslint-disable-next-line no-useless-escape
+        str = str.replace(/[^\d^\.]+/g, '') // 保留数字和小数点
+        return str
+      },
       // isExict (row) {
       //   this.reimbursementApprovalService.checkNumber(row.number).then(({data}) => {
       //     if (data) {
@@ -693,6 +727,9 @@
         this.indexRow = ''
         this.$forceUpdate()
       },
+      getUserInfo (rows) {
+        console.log('rows', rows)
+      },
       // 值改变事件
       changeValue () {
         console.log('进来了')

+ 14 - 14
src/views/modules/materialManagement/purchase/PurchaseList.vue

@@ -46,20 +46,20 @@
           </el-option>
         </el-select>
       </el-form-item>
-      <el-form-item label="报销类别" prop="procurementType">
-        <SelectTree
-          ref="areaTree"
-          :props="{
-                  value: 'id',             // ID字段名
-                  label: 'name',         // 显示名称
-                  children: 'children'    // 子级字段名
-                }"
-          url="/reimbursementApproval/type/treeData2?type=12"
-          :value="searchForm.procurementType"
-          :clearable="true"
-          :accordion="true"
-          @getValue="(value, label) => {searchForm.procurementType=label}"/>
-      </el-form-item>
+<!--      <el-form-item label="报销类别" prop="procurementType">-->
+<!--        <SelectTree-->
+<!--          ref="areaTree"-->
+<!--          :props="{-->
+<!--                  value: 'id',             // ID字段名-->
+<!--                  label: 'name',         // 显示名称-->
+<!--                  children: 'children'    // 子级字段名-->
+<!--                }"-->
+<!--          url="/reimbursementApproval/type/treeData2?type=12"-->
+<!--          :value="searchForm.procurementType"-->
+<!--          :clearable="true"-->
+<!--          :accordion="true"-->
+<!--          @getValue="(value, label) => {searchForm.procurementType=label}"/>-->
+<!--      </el-form-item>-->
 <!--      <el-form-item label="采购类别" prop="procurementType">-->
 <!--        <el-select v-model="searchForm.procurementType" placeholder="请选择" style="width:100%;">-->
 <!--          <el-option-->