|
@@ -1,4 +1,17 @@
|
|
|
<template>
|
|
<template>
|
|
|
|
|
+
|
|
|
|
|
+ <headerBar
|
|
|
|
|
+ title="拍摄商品"
|
|
|
|
|
+ :menu="[
|
|
|
|
|
+ {
|
|
|
|
|
+ type:'setting'
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ name:'详情高级配置',
|
|
|
|
|
+ click:openPhotographySeniorDetail
|
|
|
|
|
+ }
|
|
|
|
|
+ ]"
|
|
|
|
|
+ />
|
|
|
<div class="detail-container">
|
|
<div class="detail-container">
|
|
|
<div style="padding: 20px;">
|
|
<div style="padding: 20px;">
|
|
|
<!-- 主图LOGO部分 -->
|
|
<!-- 主图LOGO部分 -->
|
|
@@ -86,14 +99,15 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
<script lang="ts" setup>
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
|
|
+import headerBar from '@/components/header-bar/index.vue'
|
|
|
import { ref, computed, reactive } from 'vue';
|
|
import { ref, computed, reactive } from 'vue';
|
|
|
import { Select } from '@element-plus/icons-vue'
|
|
import { Select } from '@element-plus/icons-vue'
|
|
|
import upload from '@/components/upload'
|
|
import upload from '@/components/upload'
|
|
|
import client from "@/stores/modules/client";
|
|
import client from "@/stores/modules/client";
|
|
|
import icpList from '@/utils/ipc'
|
|
import icpList from '@/utils/ipc'
|
|
|
const clientStore = client();
|
|
const clientStore = client();
|
|
|
|
|
+import { getRouterUrl } from '@/utils/appfun'
|
|
|
|
|
+import {useRouter} from "vue-router";
|
|
|
const test_image_url = ref('https://ossimg.valimart.net/uploads/vali_ai/20230927/169580582298394.png')
|
|
const test_image_url = ref('https://ossimg.valimart.net/uploads/vali_ai/20230927/169580582298394.png')
|
|
|
|
|
|
|
|
// 模拟数据
|
|
// 模拟数据
|
|
@@ -168,6 +182,27 @@ function selectExcel() {
|
|
|
clientStore.ipc.removeAllListeners(icpList.utils.openFile);
|
|
clientStore.ipc.removeAllListeners(icpList.utils.openFile);
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+const Router = useRouter()
|
|
|
|
|
+//打开主图详情
|
|
|
|
|
+function openPhotographySeniorDetail() {
|
|
|
|
|
+
|
|
|
|
|
+ const { href } = Router.resolve({
|
|
|
|
|
+ name: 'PhotographySeniorDetail'
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ clientStore.ipc.removeAllListeners(icpList.utils.openMain);
|
|
|
|
|
+ let params = {
|
|
|
|
|
+ title: '详情高级配置',
|
|
|
|
|
+ width: 1000,
|
|
|
|
|
+ height: 630,
|
|
|
|
|
+ frame: true,
|
|
|
|
|
+ id: "PhotographySeniorDetail",
|
|
|
|
|
+ url: getRouterUrl(href)
|
|
|
|
|
+ }
|
|
|
|
|
+ clientStore.ipc.send(icpList.utils.openMain, params);
|
|
|
|
|
+}
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|