+
已驳回
@@ -38,11 +38,11 @@
-
- 编辑
+
+ 审批
-
- 删除
+
+ 查看
@@ -58,6 +58,7 @@
import headerTop from "./com/headerTop.vue"
import addCom from "./com/addCom.vue"
import { ElConfirmBeforeOpert } from "utils/elementCom"
+const router = useRouter()
const addComRef = ref()
const paginationInfo = reactive({
currentPage: 1,
@@ -122,19 +123,16 @@ let tableListInfo = reactive({
list: tableData
})
-
-const editRowFn = (row: any) => {
- addComRef.value.edit({
- a: "111"
+const auditFn=(row: any) => {
+ router.push({
+ name:'entryAuditDetails'
+ })
+}
+const showRowFn=(row: any) => {
+ router.push({
+ name:'entryAuditDetails'
})
-
}
-
-const deleteItem = (row: any) => {
- const itemID = row.v_id
- console.log("ITEMid", row)
-}
-
const deleteRowFn = (row: any) => {
ElConfirmBeforeOpert(
'操作确认',
diff --git a/src/views/enterpriseManagement/enterpriseInfo/details.vue b/src/views/enterpriseManagement/enterpriseInfo/details.vue
new file mode 100644
index 0000000..e344737
--- /dev/null
+++ b/src/views/enterpriseManagement/enterpriseInfo/details.vue
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/views/enterpriseManagement/enterpriseInfo/index.vue b/src/views/enterpriseManagement/enterpriseInfo/index.vue
index ab468db..c5cbc0f 100644
--- a/src/views/enterpriseManagement/enterpriseInfo/index.vue
+++ b/src/views/enterpriseManagement/enterpriseInfo/index.vue
@@ -33,7 +33,7 @@
-
+
查看
@@ -53,6 +53,7 @@
import headerTop from "./com/headerTop.vue"
import addCom from "./com/addCom.vue"
import { ElConfirmBeforeOpert } from "utils/elementCom"
+const router = useRouter()
const addComRef = ref()
const paginationInfo = reactive({
currentPage: 1,
@@ -124,7 +125,11 @@ const editRowFn = (row: any) => {
})
}
-
+const showRowFn=(row: any) => {
+ router.push({
+ name:'enterpriseInfoDetails'
+ })
+}
const deleteItem = (row: any) => {
const itemID = row.v_id
console.log("ITEMid", row)