master
JayChou 2 weeks ago
parent 4569477128
commit cbbebfe310
  1. 4
      jeecgboot-vue3/.env.development
  2. 14
      jeecgboot-vue3/src/views/demo/main-home/components/innovationVouchers/index.vue
  3. 13
      jeecgboot-vue3/src/views/demo/main-home/components/instrumentInfo/index.vue
  4. 12
      jeecgboot-vue3/src/views/demo/main-home/components/instrumentSharing/index.vue
  5. 2
      jeecgboot-vue3/vite.config.ts

@ -6,10 +6,10 @@ VITE_PUBLIC_PATH = /
# 跨域代理,您可以配置多个 ,请注意,没有换行符 # 跨域代理,您可以配置多个 ,请注意,没有换行符
VITE_PROXY = [["/jeecgboot","http://10.121.2.107:18086/jeecg-boot"],["/upload","http://localhost:3300/upload"]] VITE_PROXY = [["/jeecgboot","http://localhost:18086/jeecg-boot"],["/upload","http://localhost:3300/upload"]]
#后台接口全路径地址(必填) #后台接口全路径地址(必填)
VITE_GLOB_DOMAIN_URL=http://10.121.2.107:18086/jeecg-boot VITE_GLOB_DOMAIN_URL=http://localhost:18086/jeecg-boot
#后台接口父地址(必填) #后台接口父地址(必填)
VITE_GLOB_API_URL=/jeecgboot VITE_GLOB_API_URL=/jeecgboot

@ -1,11 +1,11 @@
<template> <template>
<div class="container"> <div class="container">
<a-table :dataSource="indexaward" :columns="columns" > <a-table :dataSource="indexaward" :columns="columns">
<template v-if="columns.Key === 'setting'"> <template #bodyCell="{ column }">
<div> <div v-if="column.key === 'setting'">
111 <a-button type="text" primary>查看详情</a-button>
</div> </div>
</template> </template>
</a-table> </a-table>
</div> </div>
</template> </template>
@ -36,7 +36,7 @@
}, },
{ {
title: '操作', title: '操作',
dataIndex: '',
key: 'setting', key: 'setting',
}, },
]; ];

@ -14,12 +14,12 @@
<img src="@/assets/images/mainHome/aa.png" alt=""> <img src="@/assets/images/mainHome/aa.png" alt="">
</div> </div>
<div class="headerRight"> <div class="headerRight">
<h3>组合型四级杆轨道离子阱质谱仪 Q Exactive Plus Hybrid <br>Quadrupole-Orbitrap Mass<br>Spectrometer</h3> <h3>{{ info.name }}</h3>
<div class="b"> <div class="b">
<div class="bb"> <div class="bb">
<p>状态<br>型号<br>仪器分类<br>生产厂商<br>仪器类别</p> <p>状态<br>型号<br>仪器分类<br>生产厂商<br>仪器类别</p>
</div> </div>
<div class="bbb">-<br>Q Exactive Plus<br>分析仪器-质谱仪器-有机质谱仪器<br>杭州成功仪器质量高高科技有限公司<br>专用</div> <div class="bbb">-<br>{{ info.state_dictText }}<br>分析仪器-质谱仪器-有机质谱仪器<br>杭州成功仪器质量高高科技有限公司<br>专用</div>
</div> </div>
<div class="bbbb"> <div class="bbbb">
<div class="bbbbb">所在地点&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp*&nbsp黄淮国际教育学院实验室</div> <div class="bbbbb">所在地点&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp*&nbsp黄淮国际教育学院实验室</div>
@ -96,7 +96,16 @@
</div> </div>
</template> </template>
<script setup> <script setup>
import {getindexnew} from'@/api/mainHome/index';
import { ref } from 'vue'; import { ref } from 'vue';
import { useRoute } from 'vue-router';
const route = useRoute()
const info = ref({})
const getInfo = async () => {
const res = await getindexnew({id:route.query.id})
info.value = res
}
getInfo()
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
.container { .container {

@ -80,7 +80,7 @@
</div> </div>
<div class="btn"> <div class="btn">
<div class="booking" @click="onBooking">机时预约</div> <div class="booking" @click="onBooking">机时预约</div>
<div class="show-info">查看详情</div> <div class="show-info" @click="onShowInfo(item)">查看详情</div>
</div> </div>
</div> </div>
</div> </div>
@ -171,6 +171,16 @@
}); });
}; };
getindexawardEvent(); getindexawardEvent();
//
const onShowInfo = (item) => {
router.push({
path: '/main-home/instrumentInfo',
query: {
id: item.id,
},
});
}
</script> </script>
<style scoped lang="less"> <style scoped lang="less">

@ -67,7 +67,7 @@ export default ({ command, mode }: ConfigEnv): UserConfig => {
https: false, https: false,
port: VITE_PORT, port: VITE_PORT,
// Load proxy configuration from .env // Load proxy configuration from .env
// proxy: createProxy(VITE_PROXY), proxy: createProxy(VITE_PROXY),
}, },
build: { build: {
minify: 'esbuild', minify: 'esbuild',

Loading…
Cancel
Save