feat(survey): 添加取消投放功能

- 在 survey/index.js 中新增 modify 函数,用于修改投放状态
- 在 Survey/Index.vue 中添加取消投放逻辑
- 优化 Publish/Index.vue 的样式
This commit is contained in:
陈昱达
2025-03-19 19:28:44 +08:00
parent c8bc7117d3
commit 9e6723b6ad
8 changed files with 151 additions and 126 deletions

View File

@@ -105,7 +105,7 @@ function handleMatrixCheckboxChange(row: number, col: number) {
// emits('update:matrixAnswer', props.matrixAnswer);
// emits('update:rowRecord', props.rowRecord);
// };
const emitValue = (/*val: unknown*/) => {
const emitValue = (/* val: unknown */) => {
emit('update:element', element.value);
};
</script>