index.js 8.31 KB
Newer Older
wangweidong committed
1 2 3 4 5 6 7 8
import Api from "~/service/Api";
import moment from "moment";

export default {
    methods: {
        async handleSearch() {
            console.log("serach......");

9
            console.log(this.activeTab )
wangweidong committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
            let opndatfrom = this.model.infcon.opndatfrom;
            if (!opndatfrom || opndatfrom == "") {
                this.$notify.error({
                    title: this.$t("financing.错误"),
                    message: this.$t("financing.查询开始日期必输!"),
                });
                return;
            }
            let opndatto = this.model.infcon.opndatto;
            if (!opndatto || opndatto == "") {
                this.$notify.error({
                    title: this.$t("financing.错误"),
                    message: this.$t("financing.查询结束日期必输!"),
                });
                return;
            }

            this.load = true;
28
            let rtnmsg = await Api.post("/funds/fxtsel/list"+this.activeTab , {
wangweidong committed
29
                ...this.model.infcon,
30 31 32
                
                pageNumber: this.pagination.pageNumber<=0?1:this.pagination.pageNumber,
                pageSize: this.pagination.pageSize <=0?10: this.pagination.pageSize,
wangweidong committed
33 34 35 36 37 38
                opndatfrom: moment(opndatfrom).format("YYYY-MM-DD"),
                opndatto: moment(opndatto).format("YYYY-MM-DD"),
            });
            if (rtnmsg.respCode == SUCCESS) {
                this.load = false;
                this.stmData.data = [];
39 40 41 42 43 44
                if (this.activeTab==="jsh"){
                  this.stmData.data = rtnmsg.data.list;
                }
                else if(this.activeTab==="dhpp"){
                  this.stmDataDh.data = rtnmsg.data.list;
                }
45 46 47
                else if(this.activeTab==="jshpp"){
                    this.stmDatajshpp.data = rtnmsg.data.list;
                }
48 49 50
                
                this.pagination.total = rtnmsg.data.total;
              
wangweidong committed
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
            } else {
                this.$notify.error({
                    title: this.$t("financing.错误"),
                    message: this.$t("financing.服务请求失败!"),
                });
            }
            this.load = false;
        },
        async handleReset() {
            this.model.infcon.seaownref = "";
            this.model.infcon.opndatfrom = new Date();
            this.model.infcon.opndatto = new Date();
            this.model.infcon.nam = "";
            this.model.infcon.seacur = "";
            this.model.infcon.eaamtfr = "";
            this.model.infcon.eaamtto = "";

68 69 70 71 72
            this.model.infcon.ownusr = "";
            this.model.infcon.usr = "";
            this.model.infcon.acc = "";
            this.model.infcon.acc2 = "";

wangweidong committed
73
            this.model.infcon.searef = "";
wangweidong committed
74 75
            this.model.infcon.ptyextkey = "";
            this.model.infcon.ptynam = "";
wangweidong committed
76 77
            this.model.infcon.seapty = "";
            this.model.infcon.searol = "";
wangweidong committed
78
            this.model.infcon.usrextkey = "";
wangweidong committed
79 80 81
            this.model.infcon.seasta = "";
            this.model.infcon.accmng = "";
            this.model.infcon.fxtyp = "";
wangweidong committed
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

        //首字母大写
    toTitleCase(str){
        return str.charAt(0).toUpperCase() + str.slice(1).toLowerCase()
      },

        // 处理
        async handler(row) {
            this.handleModel = row;
            this.trnUrl = 'funds';
            this.inifrm = 'fxtsel';
            this.initdialog = true;
          },

          //双击表格数据
    async TableDblRow(row) {
        this.handler(row)
      },

       //点击页签
    async  handleClickTab(){
        switch (this.activeTab){
          case 'jsh':
            this.titleNam = "结售汇交易列表"
                break;
          case 'dhpp':
            this.titleNam = "外币兑换平盘交易列表"
                break;
          default:
            this.titleNam = "交易列表"
            break;
        }
    },


      //单击表格数据
    TableRowClick(row) {
        this['selectedModel' + this.toTitleCase(this.activeTab)] = row
      },

 

      changeOwnref(){
       
      },

      async handleClick (btn,row) {
        this.routerPush({
          path: "/business/" + btn.code.toLowerCase(),
          query: { inr: row.inr,pntinr: row.pntinr }
        });
        this.initdialog = false;
      },

wangweidong committed
137 138
        // pageSize改变
        handleSizeChange(val) {
139
            this.pagination.pageNumber = 1;
wangweidong committed
140 141 142 143 144
            this.pagination.pageSize = val;
            this.handleSearch();
        },
        // 页码改变
        handleCurrentChange(val) {
145
            this.pagination.pageNumber = val;
wangweidong committed
146 147
            this.handleSearch();
        },
wangweidong committed
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

        //进入即期结汇交易
toFxtssb() {
    this.routerPush({
        path: '/business/fxtssb',
    });
},
//进入即期售汇交易
toFxtsss() {
    this.routerPush({
        path: '/business/fxtsss',
    });
},
//进入结售汇平盘登记交易
toFxtlop() {
    this.routerPush({
        path: '/business/fxtlop',
    });
},
//进入外币兑换平盘登记交易
toFxtfop() {
    this.routerPush({
        path: '/business/fxtfop',
    });
},

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

 // 详情
 async details(row) {
    const params = {
      ownref: row.ownref,
      shgref: row.shgref ?  row.shgref.trim() : '',
    };
    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]){
      this.$refs[this.oldRefId].showPopper = false;
    }
  },

   //Info
   toInfo(row,objtyp,subobjtyp){
jianglong committed
205
    
206
    this.routerPush({
jianglong committed
207
      path: "/business/fxdinf",
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
      query: { inr: row.inr,objtyp:objtyp,pntinr:row.pntinr,subobjtyp:subobjtyp}
    });
  },
  // 关闭详情弹框
  closeDetailsDialog(refId) {
    if(refId  &&  this.$refs[refId]){
      this.$refs[refId].showPopper = false;
    }
    
  },

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


  /**
     * 打开详情页面
     * @param row
     */
   display(row) {
    if(this.oldRefId &&  this.$refs[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'
        }
      });
    }

  },
  checkData(row){
          this.routerPush({
              path: '/business-new/litdck',
              query: {
        inr: this.handleModel.inr,brdinr:row.inr
      }
          });
    this.litdckdialog = false  
    this.$options.methods.closeHandlerDialog.call(this);
  },


  //修改弹窗状态
  changeBtn(isVisible){
    this.initdialog = isVisible;
  },
//获取码表数据
getCodeTable(tbl,uil,value){
    if(uil){
      uil='EN'
    }
    let localCodes = localStorage.getItem('localCodes');
    if (localCodes) {
        let codeobj = JSON.parse(localCodes)[tbl + '_' + uil + '_COD'];
         if(codeobj){
          let codeobj = codeobj.filter(m => m.value === value);
          return codeobj ? codeobj.label : value;
         }else{
          return value;
         }
    }else{
      return value;
    }
  },
    //获取码表数据
    getCodelabel(value,codenam) {
        const codeobj = this.model.dbCodes[codenam].find(obj => obj.value === value)
        return codeobj ? codeobj.label : value;
      },
      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.model.dbCodes[codeNam] = curList
        }
      },
wangweidong committed
307
        
wangweidong committed
308 309
    },
};