index.js 6.71 KB
Newer Older
fukai committed
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
import Api from '~/service/Api';
import moment from 'moment';

export default {
  methods: {
    async handleSearch() {
      if ((this.model.infcon.seaownref == '' || this.model.infcon.seaownref == null) && this.model.infcon.opndatfrom == null) {
      this.$notify.error({ title: '错误', message: '开始日期必输!' });
      return;
      }
      if ((this.model.infcon.seaownref == '' || this.model.infcon.seaownref == null) && this.model.infcon.opndatto == null) {
        this.$notify.error({ title: '错误', message: '截止日期必输!' });
        return;
      }
      if (this.model.infcon.opndatfrom != null && this.model.infcon.opndatto != null) {
        if (new Date(this.model.infcon.opndatfrom).getTime() > new Date(this.model.infcon.opndatto).getTime()) {
          this.$notify.error({ title: '错误', message: '开始日期应小于截止日期!' });
          return
        }
      }
      this.load = true;
      let queryCon = this.activeTab === 'cc' ? this.model.infcon : this.model[this.activeTab + 'con']
      let params = {
        ...queryCon,
        opndatfrom : queryCon.opndatfrom ? moment(queryCon.opndatfrom).format("YYYY-MM-DD") : '',
        opndatto : queryCon.opndatto ? moment(queryCon.opndatto).format("YYYY-MM-DD") : '',
        branch : JSON.parse(sessionStorage.getItem('currentOrg')).departmentNumber,
        pageNumber: this.pagination.pageIndex,
        pageSize:this.pagination.pageSize,
      };
      if( this.activeTab === 'bp' ){
        params.pnttyp = 'CCD'
      }
      delete params.markSet
      delete params.modifySet
      let rtnmsg = await Api.post('/Collection/cctsel/list' + this.activeTab, params);
      if (rtnmsg.respCode == SUCCESS) {
        if(this.activeTab === 'cc'){
          this.stmData.data = [];
          this.stmData.data = rtnmsg.data.list;
        }else{
          this['stmData' + this.toTitleCase(this.activeTab)].data = [];
          this['stmData' + this.toTitleCase(this.activeTab)].data = rtnmsg.data.list;
        }
        this.pagination.total = rtnmsg.data.total;
      } else {
        this.$notify.error({ title: '错误', message: '服务请求失败!' });
      }
      this.load = false;
    },

    toTitleCase(str){
      return str.charAt(0).toUpperCase() + str.slice(1).toLowerCase()
    },

    async handleReset() {
      if(this.activeTab === 'cc'){
        this.model.infcon = {}
      }else{
        this.model[this.activeTab + 'con']  = {}
      }
    },
    // 处理
    async handler(row) {
      this.handleModel = row;
      if(this.activeTab === 'bp'){
        this.trnUrl = 'Financing';
        this.inifrm = 'bptsel';
      }else {
        this.trnUrl = 'Collection';
        this.inifrm = 'cctsel';
      }
      this.initdialog = true;
    },
    //双击表格数据
    async TableDblRow(row) {
      this.handler(row)
    },

    async handleClick (btn,row) {
      let objtyp = "CCD";
      let obj = {
        objtyp:objtyp,
        objinr:row.inr,
        pntinr:row.pntinr,
        pnttyp:row.pnttyp,
        ledinr:row.ledinr,
        trnName:btn.code.toLowerCase(),
      }
     let isPush =  await this.$refs.lockAndPending.checkLockAndPending(obj)
      if(!isPush){
        return
      }
      this.routerPush({
        path: "/business/" + btn.code.toLowerCase(),
        query: { inr: row.inr,pntinr: row.pntinr }
      });
      this.initdialog = false;
    },
    
    //修改弹窗状态
    changeBtn(isVisible){
      this.initdialog = isVisible;
    },
    // pageSize改变
    handleSizeChange(val) {
      console.log(`每页 ${val} 条`);
      this.pagination.pageIndex = 1;
      this.pagination.pageSize = val;
      this.handleSearch();
    },
    // 页码改变
    handleCurrentChange(val) {
      console.log(`当前页: ${val}`);
      this.pagination.pageIndex = val;
      this.handleSearch();
    },

    // 详情
  async details(row) {
    const params = {
      ownref: row.ownref,
    };
    const res = await Api.post('/manager/trn/getTrnListByOwnref', params);
    if (res.respCode === SUCCESS) {
      if (res.data.length === 1) {
        if(this.oldRefId &&  this.$refs[this.oldRefId]){
          this.$refs[this.oldRefId].showPopper = false;
        }
        this.display(res.data[0])
      }else{
        this.trnData.data = res.data;
        this.oldRefId = 'popover_' + row.inr
        this.$refs[this.oldRefId].showPopper = true;
      }
    }
  },
  closeDisplayDialog(){
    if(this.oldRefId){
      this.$refs[this.oldRefId].showPopper = false;
    }
  },

    toCctdav() {
      // 点击开立,清空从待经办进来的时候带的行参数
      localStorage.setItem('row_cctdav', null)
			localStorage.setItem('review_cctdav',null)
			this.routerPush({
				path: '/business/cctdav',
			});
    },

    // 关闭详情弹框
    closeDetailsDialog(refId) {
      if(refId){
        this.$refs[refId].showPopper = false;
      }
    },

    // 关闭处理弹框
    closeHandlerDialog() {
      this.initdialog = false;
    },

    /**
     * 打开详情页面
     * @param {string} inr
     */
    display(row) {
      if(this.oldRefId){
        this.$refs[this.oldRefId].showPopper = false;
      }
      // 历史快照
      if (row.inr.length == 8) {
        this.routerPush({
          path: '/business/HistoryRecord',
          query: {
            businessInr: row.inr,
            businessType: 'TRN',
            type:'view'
          }
        })
      } else if (row.inr.length == 16) {
        this.routerPush({
          path: `/display/${row.inifrm.toLowerCase()}`,
          query: {
            businessInr: row.inr,
            businessType: 'TRN'
          }
        });
      }
    },
    async getdbCode(codeType, uil, codeNam) {
      let params = {
        codeType: codeType,
        uil: uil ? uil : 'EN'
      }
      let rtnmsg = await Api.post("/manager/dic/listDicInfo", params)
      if (rtnmsg.respCode === SUCCESS) {
        let curList = rtnmsg.data.map(item => ({
          value: item.codeValue,
          label: item.codeName
        }));
        this.dbCodes[codeNam] = curList
      }
    },
    getCodelabel(value,codenam) {
      const codeobj = this.dbCodes[codenam].find(obj => obj.value === value)
      return codeobj ? codeobj.label : value;
    },

    changeOwnref(){
      if(this.activeTab === 'cc'){
        if(this.model.infcon.seaownref){
          this.model.infcon.opndatfrom = null
        }
      }else{
        if(this.model[this.activeTab + 'con'][this.activeTab + 'ownref']){
          this.model[this.activeTab + 'con'].opndatfrom = null
        }
      }
    },
     //Info
     toInfo(row,objtyp,subobjtyp){
      this.routerPush({
        path: "/business/" +  this.activeTab.toLowerCase() + "dinf",
        query: { inr: row.inr,objtyp:objtyp,pntinr:row.pntinr,subobjtyp:subobjtyp}
      });
    },

  },
};