c63089e4 by 村长大人

修复BUG

1 parent da0e5ab8
......@@ -166,6 +166,8 @@ const data = reactive({
]
})
const tableRefs = ref(null)
const { status, queryParams, total, list, showForm, rules } = toRefs(data)
......@@ -206,10 +208,13 @@ function handleEdit (row) {
function btn_add () {
showForm.value.title = proxy.$t('advertisement.dialogTitleAdd')
showForm.value = {
...showForm.value,
open: true
showForm.value.open = true
showForm.value.form = {
showWindows: 0,
showAndroid: 0,
showIos: 0,
}
console.log(showForm.value.form)
}
function handleDel(row) {
proxy.$modal.confirm(`是否删除问题:${row.name}的数据`).then(() => {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!