//组件 var srrcomponent_en = { template:`
Search
Well name: {{base_data.wellname}}
Upload user: {{base_data.upload_name}}
Construction personnel filling in information
Start Time: {{item.bt}}   End Time: {{item.et}}   Service staff: {{item.servicer}}   State: {{item.state}}   RIH Times{{item.drilling_time}}
Reference Information
IP+Port: {{base_data.ip}}
area: {{base_data.location}}
Start Time: {{item.bt}}   End Time: {{item.et}}   Event: {{item.ename}}
`, data(){ // 获取当前屏幕的分辨率 let screenW = window.screen.width; let screenH = window.innerHeight; console.log("screen width:",screenW); console.log("screen height:",screenH); return { tHeight:screenH-192, tableData: Array(0), input:'', currentPage: 1, pagesize:50, recordTotal:0, pdf_visible:false, base_data:{}, srr_state_data:{}, srr_event_data:{}, } }, mounted() { var _this = this; var objs; axios.post('/deescloud/get_well_cmp_en', { opuser:localStorage.getItem("online_user"), opuser_uuid:localStorage.getItem("uuid"), index: this.$data.currentPage, count: this.$data.pagesize }) .then(function (response) { console.log(response.data); objs = response.data.data; rcnt = response.data.total; _this.$data.tableData = objs; _this.$data.recordTotal = rcnt; }) .catch(function (error) { console.log(error); }); }, methods: { export_pdf(row){ var _this = this; // 如果开泵信息被启用,则添加flag参数 const requestParams = { opuser: localStorage.getItem("online_user"), opuser_uuid: localStorage.getItem("uuid"), wellname: row.wellNameSource, flag: row.pumpExport || false // 直接使用当前行的泵导出状态 }; axios.post('/deescloud/get_srr_pdf_en', requestParams) .then(function(response) { console.log(response.data); var fileid = response.data.fileId; var downUrl = 'file/' + fileid; downloadUrl(row.wellNameSource + "-On site personnel record report.pdf", downUrl); }) .catch(function(error) { console.log(error); }); }, show_pdf(row){ let _this= this; axios.post('/deescloud/get_srr_base', { opuser:localStorage.getItem("online_user"), opuser_uuid:localStorage.getItem("uuid"), wellname: row.wellNameSource, }) .then(function (response) { console.log(response.data); _this.$data.base_data = response.data; }) .catch(function (error) { console.log(error); }); axios.post('/deescloud/get_srr_event_en', { opuser:localStorage.getItem("online_user"), opuser_uuid:localStorage.getItem("uuid"), wellname: row.wellNameSource, }) .then(function (response) { console.log(response.data); _this.$data.srr_event_data = response.data.data; }) .catch(function (error) { console.log(error); }); axios.post('/deescloud/get_srr_state', { opuser:localStorage.getItem("online_user"), opuser_uuid:localStorage.getItem("uuid"), wellname: row.wellNameSource, }) .then(function (response) { console.log(response.data); _this.$data.srr_state_data = response.data.data; _this.$data.pdf_visible =true; }) .catch(function (error) { console.log(error); }); }, getWell(_search_name){ document.getElementById("bt_serach").blur(); this.$data.currentPage=1; var _this = this; var objs; axios.post('/deescloud/get_well_cmp_en', { opuser:localStorage.getItem("online_user"), opuser_uuid:localStorage.getItem("uuid"), Wellname: _search_name, index: this.$data.currentPage, count: this.$data.pagesize }) .then(function (response) { console.log(response.data); objs = response.data.data; rcnt = response.data.total; _this.$data.tableData = objs; _this.$data.recordTotal = rcnt; }) .catch(function (error) { console.log(error); }); }, handleSizeChange(val) { //console.log(`每页 ${val} 条`); this.$data.pagesize = val; var _this = this; var objs; axios.post('/deescloud/get_well_cmp_en', { opuser:localStorage.getItem("online_user"), opuser_uuid:localStorage.getItem("uuid"), Wellname: this.$data.input, index: this.$data.currentPage, count: this.$data.pagesize }) .then(function (response) { console.log(response.data); objs = response.data.data; rcnt = response.data.total; _this.$data.tableData = objs; _this.$data.recordTotal = rcnt; }) .catch(function (error) { console.log(error); }); }, handleCurrentChange(val) { //console.log(`当前页: ${val}`); this.$data.currentPage = val; var _this = this; var objs; axios.post('/deescloud/get_well_cmp_en', { opuser:localStorage.getItem("online_user"), opuser_uuid:localStorage.getItem("uuid"), Wellname: this.$data.input, index: this.$data.currentPage, count: this.$data.pagesize }) .then(function (response) { console.log(response.data); objs = response.data.data; rcnt = response.data.total; _this.$data.tableData = objs; _this.$data.recordTotal = rcnt; }) .catch(function (error) { console.log(error); }); }, } }