|
@@ -162,7 +162,7 @@
|
|
|
<div class="item">
|
|
|
<el-link
|
|
|
class="my-el-link mr12 ml12"
|
|
|
- @click="alert('开发中')"
|
|
|
+ @click="toPage()"
|
|
|
type="primary"
|
|
|
size="small"
|
|
|
:underline="false"
|
|
@@ -274,6 +274,7 @@
|
|
|
import { Picture as IconPicture } from '@element-plus/icons-vue'
|
|
|
import {onMounted, reactive} from "vue";
|
|
|
import {OilEngineDetailsApi} from "/@/api/admin/reportManagement/oilEngineDetails/oilEngineDetailsApi";
|
|
|
+import router from "/@/router";
|
|
|
|
|
|
/******************************数据对象***************************************/
|
|
|
|
|
@@ -296,6 +297,7 @@ const bigImgDto = reactive({
|
|
|
const basicInfo = reactive({
|
|
|
loading:false,
|
|
|
info:{
|
|
|
+ id:'1',
|
|
|
oilEngineNumber:"",
|
|
|
serialNumber:"",
|
|
|
oilCompanies:"",
|
|
@@ -368,6 +370,14 @@ const showBigPic = (val) => {
|
|
|
bigImgDto.isShow = true
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * 查看更多
|
|
|
+ */
|
|
|
+const toPage = () => {
|
|
|
+ const id = router.currentRoute.value.params.id
|
|
|
+ router.push({path:`/statement/${id}/more`})
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* 油机详情 - 报警历史 - 页条变化
|
|
|
* @param val
|