zhonghuizhen 1 год назад
Родитель
Сommit
aac0081f5f

+ 0 - 1
src/views/business/​scheduleManage/adjust.vue

@@ -113,7 +113,6 @@ export default {
          * 获取格式化参数
          */
         getSearchFormData () {
-            debugger
             let paramjson = this.$refs['crud'] ? this.$refs['crud'].getSearcFormData() : {}
             if (this.$store.getters.isSuper) { // 超级管理员不做申请人过滤
             } else {

+ 2 - 5
src/views/business/​scheduleManage/adjustVerify.vue

@@ -198,20 +198,18 @@ export default {
          * 处理编辑\详情
          */
         async handleEdit (key, { id, scheduleId }) {
-            debugger
             this.params = {
                 id,
                 scheduleId
             }
             this.readonly = key === 'detail'
             this.showAdjustEdit = true
-            console.log('readonly', this.readonly)
         },
         /**
          * 处理单条同意/不同意
          */
         async handleAgree (key, data) {
-            console.log(data)
+            // console.log(data)
             data.status = (key === 'agree' ? (data.status === '待审核' ? '待审批' : '已通过') : '已拒绝')
             saveAdjustment(data).then(() => {
                 ActionUtils.successMessage()
@@ -222,7 +220,7 @@ export default {
          * 批量处理同意/不同意
          */
         async handleMassAgree (key, data) {
-            console.log(key, data)
+            // console.log(key, data)
             if (data.length < 1) {
                 ActionUtils.warning('请选择数据!')
                 return
@@ -263,7 +261,6 @@ export default {
          *
          */
         handleRowDblclick (row) {
-            debugger
             this.handleEdit(row, 'detail')
         }
     }