This commit is contained in:
WangXiaoDong
2023-08-21 10:55:39 +08:00
parent fbac0907c4
commit d41b331e38
18 changed files with 3227 additions and 1162 deletions

View File

@@ -69,7 +69,8 @@ import { useStore } from "vuex";
import GO from '@/tool/GO';
export default defineComponent({
setup() {
props: ["msg"],
setup(prop) {
let myMaterialModalShow = ref(false)
let imgList = ref([])
let store = useStore()
@@ -122,9 +123,17 @@ export default defineComponent({
searcMaterialhName,
designType,
disignTypeList,
boardList
boardList,
}
},
data (prop) {
return {
type_ : {
type1:'material',
type2:prop.msg
}
}
},
methods:{
init(code:any){
@@ -145,7 +154,7 @@ export default defineComponent({
// this.selectImgList.splice(index,1)
// this.selectImgListIds.splice(index,1)
// }
imgData.type_ = 'material'
imgData.type_ = this.type_
this.store.commit("addGenerateMaterialFils", imgData);
},