|
@@ -72,11 +72,11 @@
|
|
|
<ActionButton
|
|
<ActionButton
|
|
|
v-if="scope.row.statusId === 3"
|
|
v-if="scope.row.statusId === 3"
|
|
|
text="反馈"
|
|
text="反馈"
|
|
|
- @click="handleFeedback(scope.row.associationOtId)"
|
|
|
|
|
|
|
+ @click="handleFeedback(scope.row.id)"
|
|
|
/>
|
|
/>
|
|
|
<ActionButton
|
|
<ActionButton
|
|
|
text="查看"
|
|
text="查看"
|
|
|
- @click="handleView(scope.row.associationOtId)"
|
|
|
|
|
|
|
+ @click="handleView(scope.row.id)"
|
|
|
/>
|
|
/>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
@@ -228,11 +228,11 @@
|
|
|
|
|
|
|
|
/** 反馈:跳转反馈编辑页,操作仅反馈不根据状态显示 */
|
|
/** 反馈:跳转反馈编辑页,操作仅反馈不根据状态显示 */
|
|
|
const handleFeedback = (id: number) => {
|
|
const handleFeedback = (id: number) => {
|
|
|
- router.push({
|
|
|
|
|
|
|
+ router.push({
|
|
|
name: 'oneByOneManagementDeptItem',
|
|
name: 'oneByOneManagementDeptItem',
|
|
|
query: {
|
|
query: {
|
|
|
id: String(id),
|
|
id: String(id),
|
|
|
- operate: 'one-by-one-dept-edit',
|
|
|
|
|
|
|
+ operate: 'one-by-one-dept-feedback',
|
|
|
},
|
|
},
|
|
|
});
|
|
});
|
|
|
};
|
|
};
|