|
@@ -18,7 +18,7 @@
|
|
|
</template>
|
|
|
<div class="left">
|
|
|
<SPuUploadImg v-model="picUrl" :disabled="isDetail" />
|
|
|
- <el-tabs v-model="activeTabName" @tab-click="handleTabClick" tab-position="left">
|
|
|
+ <el-tabs v-model="activeTabName" @tab-click="handleTabClick" tab-position="left" class="child-tabs">
|
|
|
<el-tab-pane v-for="tab in tabs" :key="tab.name" :label="tab.label" :name="tab.component" />
|
|
|
</el-tabs>
|
|
|
</div>
|
|
@@ -59,13 +59,14 @@ const props = defineProps({
|
|
|
initialData: Object,
|
|
|
buttonActions: Array,
|
|
|
});
|
|
|
-
|
|
|
+// console.log(props.initialData.logoUrl)
|
|
|
// 从路由中引入store中的app仓库
|
|
|
import { useAppStore } from '@/store/modules/app'
|
|
|
const appStore = useAppStore()
|
|
|
const mobile = computed(() => appStore.getMobile)
|
|
|
|
|
|
-let picUrl = ref("");
|
|
|
+
|
|
|
+
|
|
|
let OperationsId = ref(props.id);
|
|
|
const dialogVisible = ref(false);
|
|
|
const activeTabName = ref(props.initialComponent);
|
|
@@ -84,17 +85,26 @@ watch(activeTabName, (newVal) => {
|
|
|
watch(() => props.id, (newId) => {
|
|
|
OperationsId.value = newId;
|
|
|
});
|
|
|
-// watch(() => props.initialData.logoUrl, (newVal) => {
|
|
|
-// console.log("加载时检测到new", newVal)
|
|
|
-// updateData();
|
|
|
-// });
|
|
|
-// const updateParentData = inject('updateParentData');
|
|
|
-// const updateData = () => {
|
|
|
-// updateParentData();
|
|
|
-// };
|
|
|
-// watch(() => picUrl.value, (newVal) => {
|
|
|
-// console.log("new", newVal)
|
|
|
-// });
|
|
|
+let picUrl = ref("");
|
|
|
+// 如果是新增,清空logo
|
|
|
+watch(() => props.openType, (newVal) => {
|
|
|
+ if (newVal == '新增') {
|
|
|
+ picUrl.value = '';
|
|
|
+ }
|
|
|
+});
|
|
|
+
|
|
|
+const updateInitialData = inject('updateInitialData');
|
|
|
+// 监听logo上传,一旦上传,更新父组件数据
|
|
|
+watch(() => picUrl.value, (newVal) => {
|
|
|
+ updateInitialData.value.logoUrl = newVal;
|
|
|
+});
|
|
|
+// 监听图片加载
|
|
|
+ watch(() => props.initialData,(newVal) => {
|
|
|
+ console.log(newVal.logoUrl)
|
|
|
+ picUrl.value=newVal.logoUrl;
|
|
|
+});
|
|
|
+
|
|
|
+
|
|
|
function handleTabClick(tab) {
|
|
|
activeTabName.value = tab.name;
|
|
|
}
|
|
@@ -105,6 +115,7 @@ defineExpose({ dialogVisible });
|
|
|
|
|
|
|
|
|
<style type="text/css">
|
|
|
+
|
|
|
.el-dialog__body {
|
|
|
padding: unset;
|
|
|
}
|