eb0de757 by yzj

no message

1 parent e21c59d6
...@@ -247,7 +247,8 @@ function handleEdit (row) { ...@@ -247,7 +247,8 @@ function handleEdit (row) {
247 open: true, 247 open: true,
248 form: { 248 form: {
249 ...row, 249 ...row,
250 type: row.type.split('、') 250 type: row.type.split('、'),
251 packId: row.packId ? row.packId : '0' // 确保packId有值
251 } 252 }
252 } 253 }
253 } 254 }
...@@ -257,7 +258,10 @@ function btn_add () { ...@@ -257,7 +258,10 @@ function btn_add () {
257 showForm.value.title = proxy.$t('advertisement.dialogTitleAdd') 258 showForm.value.title = proxy.$t('advertisement.dialogTitleAdd')
258 showForm.value = { 259 showForm.value = {
259 ...showForm.value, 260 ...showForm.value,
260 open: true 261 open: true,
262 form: {
263 packId: '0' // 设置默认值
264 }
261 } 265 }
262 } 266 }
263 267
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!