apis.js 12 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
import { getEmail } from '@/utils/auth'
import request from '@/utils/request'
export default [
  // {
  //   label: '提交表单',
  //   value: 'submitForm',
  // },
  // {
  //   label: '启动流程',
  //   value: 'startProcess',
  // },
  {
    label: '获取所有部门',
    value: 'getDepts'
  },
  {
    label: '获取所有用户',
    value: 'getUsers'
  },
  {
    label: '获取项目阶段',
    value: 'getProjectStage'
  },
  {
    label: '获取业务类型',
    value: 'getServiceType'
  },
  // {
  //   label: '获取项目类型',
  //   value: 'getProjectType'
  // },
  {
    label: '获取移动业务阶段',
    value: 'getYidongStage'
  },
  {
    label: '获取驻地网业务阶段',
    value: 'getZhudiwangStage'
  },
  {
    label: '获取铁塔业务阶段',
    value: 'getTietaStage'
  },
  {
    label: '获取项目状态',
    value: 'getProjectStatus'
  },
  {
    label: '获取商机来源',
    value: 'getSourceBusinessOppor'
  },
  {
    label: '获取合同',
    value: 'getContracts'
  },
  {
    label: '获取供应商',
    value: 'getSuppliers'
  },
  {
    label: '获取客户信息',
    value: 'getCustomers'
  },
  {
    label: '获取区域列表',
    value: 'getAreas'
  },
  {
    label: '获取业务线列表',
    value: 'getServiceLines'
  },
  {
    label: '获取运营商列表',
    value: 'getOperators'
  },
  {
    label: '获取上游客户列表',
    value: 'getUppers'
  },
  {
    label: '获取需求来源',
    value: 'getNeedSources'
  },
  {
    label: '获取基站状态列表',
    value: 'getJzStates'
  },
  {
    label: '获取付款方式',
    value: 'getPayType'
  },
  {
    label: '获取付款组织',
    value: 'getPayOrg'
  },
  {
    label: '获取款项类型',
    value: 'getAmountType'
  }
]
export const tableApis = [
  {
    label: '获取合同',
    value: 'getContracts'
  },
  {
    label: '获取供应商',
    value: 'getSuppliers'
  },
  {
    label: '获取客户信息',
    value: 'getCustomers'
  }
]

export const apiMap = {
  submitForm(that, params) {
    const arry = []
    params.instanceFieldList.forEach(element => {
      // 空数组暂时不判断(也存为实例值)
      if (element.value !== '' && element.value !== null) {
        arry.push({
          fieldId: element.businessId,
          fieldValue: typeof element.value === 'string' ? element.value : JSON.stringify(element.value)
        })
      }
    })
    // TODO:判断apiParams中是否有实例id,有则请求编辑接口、无则请求添加接口
    const apiParams = {
      templateId: params.templateId,
      addData: JSON.stringify(arry)
    }
    // 请求添加实例接口
    that.$http.post('/pmsinstancefield/newInsert', apiParams).then(res => {
      that.$message.success('实例添加成功!')
      window.history.back(-1)
    })
  },
  startProcess(that, params, message, callback) {
    // 启动流程、(提交/驳回/通过)
    const array = params.queryProcessCommitDtoList
    if (array instanceof Array) {
      params.queryProcessCommitDtoList = JSON.stringify(array.map(field => {
        return {
          fieldId: field.businessId,
          fieldValue: typeof field.value === 'string' ? field.value : JSON.stringify(field.value),
          remarks: field.remarks
        }
      }))
    } else {
      return
    }
    that.$http.post('/pmsinstance/startProcessInstance', params).then(res => {
      that.$message.success(message)
      callback && callback()
      window.history.back(-1)
      // eslint-disable-next-line handle-callback-err
    }).catch(err => {
      callback && callback()
    })
  },
  addAndStartProcess(that, params, message, callback) {
    // 添加实例且启动流程
    const array = params.queryProcessCommitDtoList
    if (array instanceof Array) {
      params.queryProcessCommitDtoList = JSON.stringify(array.map(field => {
        return {
          fieldId: field.businessId,
          fieldValue: typeof field.value === 'string' ? field.value : JSON.stringify(field.value),
          remarks: field.remarks
        }
      }))
    } else {
      return
    }
    that.$http.post('/pmsinstance/addAndStartProcessInstance', params).then(res => {
      that.$message.success(message)
      callback && callback()
      window.history.back(-1)
      // eslint-disable-next-line handle-callback-err
    }).catch(err => {
      callback && callback()
    })
  },
  getProjectStage(that, params, callback) {
    // that.$http.get('/sdictionary', { type: 'project' }).then(res => {
    //   callback(res)
    // })
    return request({
      url: '/sdictionary',
      method: 'get',
      params: { type: 'project' }
    })
  },
  getYidongStage(that, params, callback) {
    that.$http.get('/sdictionary', { type: 'yidong' }).then(res => {
      callback(res)
    })
  },
  getZhudiwangStage(that, params, callback) {
    that.$http.get('/sdictionary', { type: 'zhudiwang' }).then(res => {
      callback(res)
    })
  },
  getTietaStage(that, params, callback) {
    that.$http.get('/sdictionary', { type: 'tieta' }).then(res => {
      callback(res)
    })
  },
  getDepts(that, params, callback) {
    that.$http.get('/sdept', params || {}).then(res => {
      callback(res)
    })
  },
  getUsers(that, params, callback) {
    that.$http.get('/login/getAllUsers', params || {}).then(res => {
      // let optionArray = []
      // if(res.data instanceof Array){
      //   res.data.forEach(item => {
      //     optionArray.push({
      //       label: item.cate_name,
      //       value: item.cate_id
      //     })
      //   })
      // }
      // res.data = optionArray
      callback && callback(res)
    })
  },
  getProjectStatus(that, params, callback) {
    that.$http.get('/sdictionary', { type: 'PROJECT_STATUS' }).then(res => {
      callback(res)
    })
  },
  getProjectType(that, params, callback) {
    that.$http.get('/sdictionary', { type: 'project' }).then(res => {
      callback(res)
    })
  },
  getSourceBusinessOppor(that, params, callback) {
    that.$http.get('/sdictionary', { type: 'SOURCE_BUSINESS_OPPOR' }).then(res => {
      callback(res)
    })
  },
  getServiceType(that, params, callback) {
    // that.$http.get('/sdictionary', { type: 'SERVICE' }).then(res => {
    //   callback(res)
    // })
    return request({
      url: '/sdictionary',
      method: 'get',
      params: { type: 'SERVICE' }
    })
  },
  getContracts(that, params, callback) {
    if (params) {
      params.email = getEmail()
    }
    that.$http.get('/contract/getContractList', params || { email: getEmail() }).then(res => {
      const optionArray = []
      if (res.data instanceof Array) {
        res.data.forEach(item => {
          item.label = item.title
          item.value = item.numb
          optionArray.push(item)
        })
      }
      res.data = optionArray
      callback && callback(res)
    })
  },
  getSuppliers(that, params, callback) {
    if (params) {
      params.email = getEmail()
    }
    that.$http.get('/contract/getSupplierList', params || { email: getEmail() }).then(res => {
      const optionArray = []
      if (res.data instanceof Array) {
        res.data.forEach(item => {
          item.label = item.name
          item.value = item.id
          optionArray.push(item)
        })
      }
      res.data = optionArray
      callback && callback(res)
    })
  },
  getCustomers(that, params, callback) {
    that.$http.get('/contract/getCustomerList', params || { email: getEmail() }).then(res => {
      const optionArray = []
      if (res.data instanceof Array) {
        res.data.forEach(item => {
          item.label = item.name
          item.value = item.id
          optionArray.push(item)
        })
      }
      res.data = optionArray
      callback && callback(res)
    })
  },
  getAreas(that, params, callback) {
    params = that.$ha.generateSignAndTimestamp()
    that.$http.get('/commonMes/getArea', params || {}).then(res => {
      const optionArray = []
      if (res.data instanceof Array) {
        res.data.forEach(item => {
          optionArray.push({
            label: item.region_name,
            value: item.id
          })
        })
      }
      res.data = optionArray
      callback && callback(res)
    })
  },
  getServiceLines(that, params, callback) {
    params = that.$ha.generateSignAndTimestamp()
    that.$http.get('/commonMes/getServiceLine', params || {}).then(res => {
      const optionArray = []
      if (res.data instanceof Array) {
        res.data.forEach(item => {
          optionArray.push({
            label: item.business_name,
            value: item.business_id
          })
        })
      }
      res.data = optionArray
      callback && callback(res)
    })
  },
  getOperators(that, params, callback) {
    params = that.$ha.generateSignAndTimestamp()
    that.$http.get('/commonMes/getOperator', params || {}).then(res => {
      const optionArray = []
      if (res.data instanceof Array) {
        res.data.forEach(item => {
          optionArray.push({
            label: item.operator_name,
            value: item.operator_id
          })
        })
      }
      res.data = optionArray
      callback && callback(res)
    })
  },
  getUppers(that, params, callback) {
    params = that.$ha.generateSignAndTimestamp()
    that.$http.get('/commonMes/getUpper', params || {}).then(res => {
      const optionArray = []
      if (res.data instanceof Array) {
        res.data.forEach(item => {
          optionArray.push({
            label: item.customers_name,
            value: item.customers_id
          })
        })
      }
      res.data = optionArray
      callback && callback(res)
    })
  },
  getNeedSources(that, params, callback) {
    params = that.$ha.generateSignAndTimestamp()
    that.$http.get('/commonMes/getNeedSouce', params || {}).then(res => {
      const optionArray = []
      if (res.data instanceof Array) {
        res.data.forEach(item => {
          optionArray.push({
            label: item.sources_name,
            value: item.sources_id
          })
        })
      }
      res.data = optionArray
      callback && callback(res)
    })
  },
  getJzStates(that, params, callback) {
    params = that.$ha.generateSignAndTimestamp()
    that.$http.get('/commonMes/getJzState', params || {}).then(res => {
      const optionArray = []
      if (res.data instanceof Array) {
        res.data.forEach(item => {
          optionArray.push({
            label: item.cate_name,
            value: item.cate_id
          })
        })
      }
      res.data = optionArray
      callback && callback(res)
    })
  },
  getPayType(that, params, callback) {
    that.$http.post('/contract/getPayCommonMes', {
      type: 1
    }).then(res => {
      const optionArray = []
      if (res.data instanceof Array) {
        res.data.forEach(item => {
          optionArray.push({
            label: item.name,
            value: item.name
          })
        })
      }
      res.data = optionArray
      callback && callback(res)
    })
  },
  getPayOrg(that, params, callback) {
    that.$http.post('/contract/getPayCommonMes', {
      type: 2
    }).then(res => {
      const optionArray = []
      if (res.data instanceof Array) {
        res.data.forEach(item => {
          optionArray.push({
            label: item.name,
            value: item.name
          })
        })
      }
      res.data = optionArray
      callback && callback(res)
    })
  },
  getAmountType(that, params, callback) {
    that.$http.post('/contract/getPayCommonMes', {
      type: 3
    }).then(res => {
      const optionArray = []
      if (res.data instanceof Array) {
        res.data.forEach(item => {
          optionArray.push({
            label: item.name,
            value: item.name
          })
        })
      }
      res.data = optionArray
      callback && callback(res)
    })
  },
  submitPayForm(that, params, callback) {
    that.$http.post('/contract/savePay', params).then(res => {
      callback && callback(res)
    }).catch(err => {
      callback && callback(err)
    })
  },
  editPayForm(that, params, callback) {
    that.$http.post('/contract/updatePay', params).then(res => {
      callback && callback(res)
    }).catch(err => {
      callback && callback(err)
    })
  }
}