|
@@ -778,7 +778,7 @@ export default {
|
|
|
toSelect(attachment) {
|
|
|
this.curAttachment = attachment;
|
|
|
// this.$refs.SelectTikuPaperDialog.open();
|
|
|
- this.tikuPaperSelected({ id: "1" });
|
|
|
+ this.tikuPaperSelected({ id: "1", name: "paper-name" });
|
|
|
},
|
|
|
async tikuPaperSelected(data) {
|
|
|
this.cardBuildPresetData = {
|
|
@@ -791,6 +791,7 @@ export default {
|
|
|
type: "CUSTOM",
|
|
|
createMethod: "STANDARD",
|
|
|
paperId: data.id,
|
|
|
+ paperName: data.name,
|
|
|
};
|
|
|
this.$refs.CardBuildDialog.open();
|
|
|
},
|