|
@@ -133,7 +133,7 @@ export default {
|
|
{
|
|
{
|
|
name: 'el-input',
|
|
name: 'el-input',
|
|
md: 12,
|
|
md: 12,
|
|
- attributes: { disabled: !!this.formData.id, placeholder: '请选择' },
|
|
|
|
|
|
+ attributes: { disabled: !!this.formData.id, placeholder: '请选择', maxlength:8 },
|
|
formItemAttributes: {
|
|
formItemAttributes: {
|
|
label: '二维码主题',
|
|
label: '二维码主题',
|
|
prop: 'title',
|
|
prop: 'title',
|
|
@@ -497,9 +497,10 @@ export default {
|
|
click: ({ row, index, column }) => {
|
|
click: ({ row, index, column }) => {
|
|
this.$router.push({
|
|
this.$router.push({
|
|
name: "activityOrder",
|
|
name: "activityOrder",
|
|
- query: {
|
|
|
|
- type: "detail",
|
|
|
|
- id: row.id,
|
|
|
|
|
|
+ params: {
|
|
|
|
+ pageName: row.id,
|
|
|
|
+ pageType: 'detail',
|
|
|
|
+ pageCode: row.id,
|
|
},
|
|
},
|
|
})
|
|
})
|
|
}
|
|
}
|
|
@@ -508,9 +509,10 @@ export default {
|
|
click: ({ row, index, column }) => {
|
|
click: ({ row, index, column }) => {
|
|
this.$router.push({
|
|
this.$router.push({
|
|
name: "activityOrder",
|
|
name: "activityOrder",
|
|
- query: {
|
|
|
|
- type: "list",
|
|
|
|
- id: row.id,
|
|
|
|
|
|
+ params: {
|
|
|
|
+ pageName: row.id,
|
|
|
|
+ pageType: 'list',
|
|
|
|
+ pageCode: row.id,
|
|
},
|
|
},
|
|
})
|
|
})
|
|
}
|
|
}
|