|
@@ -59,7 +59,7 @@
|
|
|
/>
|
|
|
<el-table-column label="操作" width="200">
|
|
|
<template v-slot="scope">
|
|
|
- <el-button type="primary" text size="small">详情</el-button>
|
|
|
+ <el-button type="primary" text size="small" @click="onShow(scope.row)">详情</el-button>
|
|
|
<el-button type="primary" text size="small">修改</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -123,6 +123,10 @@ const handleSearch = () => {
|
|
|
pageInit();
|
|
|
};
|
|
|
|
|
|
+const onShow = (row: any) => {
|
|
|
+ console.log('onShow row ===>', row)
|
|
|
+}
|
|
|
+
|
|
|
const handleReset = () => {
|
|
|
queryForm.value = {
|
|
|
technologicalNeedsName: "",
|