|
@@ -312,6 +312,8 @@ export default {
|
|
|
setTimeout(function () {
|
|
|
that.getDataList();
|
|
|
});
|
|
|
+
|
|
|
+
|
|
|
},
|
|
|
computed: {
|
|
|
// pickerOptions: {
|
|
@@ -385,13 +387,11 @@ export default {
|
|
|
loading.close();
|
|
|
if (res.data.code == "0") {
|
|
|
const data = res.data.data;
|
|
|
+ console.log('data???', data);
|
|
|
for (let j = 0; j < data.records.length; j++) {
|
|
|
data.records[j].successFlag == "1" ? "成功" : "失败";
|
|
|
}
|
|
|
this.list = data.records;
|
|
|
- this.gmtReq = list.map(item => {
|
|
|
- return item.gmtReq.tofixed(2)
|
|
|
- })
|
|
|
console.log("调用接口数据:", this.list);
|
|
|
if (!flag) {
|
|
|
//搜索时不缓存
|
|
@@ -400,6 +400,7 @@ export default {
|
|
|
this.cacheData = {};
|
|
|
}
|
|
|
this.total = data.total;
|
|
|
+ console.log('total????', this.total);
|
|
|
if (this.inCurrentPage !== undefined) {
|
|
|
this.currentPage = this.inCurrentPage;
|
|
|
this.inCurrentPage = undefined;
|
|
@@ -456,10 +457,10 @@ export default {
|
|
|
patientId: this.filter.patientId.trim(), // 患者标识
|
|
|
sceneName: this.filter.sceneName.trim(), // 服务名
|
|
|
successFlag: this.filter.successFlag,
|
|
|
- startGmtReq: startGmtReq ? startGmtReq : null,
|
|
|
- endGmtReq: endGmtReq ? endGmtReq : null,
|
|
|
- startGmtResp: startGmtResp ? startGmtResp : null,
|
|
|
- endGmtResp: endGmtResp ? endGmtResp : null,
|
|
|
+ startGmtReq: startGmtReq,
|
|
|
+ endGmtReq: endGmtReq,
|
|
|
+ startGmtResp: startGmtResp,
|
|
|
+ endGmtResp: endGmtResp,
|
|
|
subHospitalName: this.filter.subHospitalName.trim(), // 子院区
|
|
|
};
|
|
|
return param;
|