项目管理

main
cc 2024-03-23 04:52:35 +00:00
parent ab1d04c72d
commit 2f1a032818
3 changed files with 140 additions and 58 deletions

View File

@ -11,7 +11,7 @@
<p>{{ item.name }}</p>
<p>{{ item.description }}</p>
<p>{{ item.content }}</p>
<el-button type="primary">管理</el-button>
<el-button type="primary" @click="router.push({ name: 'room', query: { project_name: item.name }})">管理</el-button>
<el-button type="success" @click="openUpdateDialog(item)"></el-button>
<el-button type="danger" @click="openRemove(item)"></el-button>
</el-card>
@ -57,14 +57,11 @@ import { onMounted, reactive, ref } from "vue";
import { Plus } from "@element-plus/icons-vue";
import { ElMessage,ElMessageBox } from "element-plus";
import myApi from "@/api/myApi.js";
import axios from "axios";
import { useRouter } from 'vue-router'
const projects = ref();
const router = useRouter()
onMounted(() => {
get_projects();
})
const projects = ref([]);
const get_projects = async () => {
const param = {
@ -94,6 +91,7 @@ const add_project_info = reactive({
name: "",
description: "",
});
const add_project = async () => {
const param = {
action: 101,

View File

@ -1,17 +1,18 @@
<template>
{{ project_name }}
<div class="room-div">
<el-card>
<div>
<el-button type="primary">项目管理</el-button>
<el-button type="primary" @click="router.push('home')"></el-button>
<el-button type="success">项目预览</el-button>
</div>
<div>
<el-button type="primary" class="add-btn" :icon="Plus" @click="addRoom"></el-button>
</div>
<div class="room-list">
<div v-for="(item, index) in room_data.list" :key="index" class="room-span">
<span>{{ item.name }}</span>
<span>{{ item.number }}</span>
<div v-for="(item, index) in project.content" :key="index" class="room-span">
<span>{{ item.room_name }}</span>
<span>{{ item.room_count }}</span>
<el-button type="danger" :icon="Delete" circle />
</div>
</div>
@ -23,10 +24,7 @@
<div class="div300">
<span>房型名称</span>
<el-select v-model="form.roomName" placeholder="请选择">
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
<el-option v-for="item in options" :key="item.value" :label="item.label"
:value="item.value">
</el-option>
</el-select>
@ -53,13 +51,16 @@
<div class="flex-center bar">
<div>盘管类型</div>
<el-radio-group v-model="form.type1">
<el-radio :label="item.value" :key="item.value" v-for="(item,index) in radioGroup1">{{item.label}}</el-radio>
<el-radio :label="item.value" :key="item.value"
v-for="(item, index) in radioGroup1">{{ item.label }}</el-radio>
</el-radio-group>
<el-radio-group v-model="form.type2">
<el-radio :label="item.value" :key="item.value" v-for="(item,index) in radioGroup2">{{item.label}}</el-radio>
<el-radio :label="item.value" :key="item.value"
v-for="(item, index) in radioGroup2">{{ item.label }}</el-radio>
</el-radio-group>
<el-radio-group v-model="form.type3">
<el-radio :label="item.value" :key="item.value" v-for="(item,index) in radioGroup3">{{item.label}}</el-radio>
<el-radio :label="item.value" :key="item.value"
v-for="(item, index) in radioGroup3">{{ item.label }}</el-radio>
</el-radio-group>
<div>
<p>温控器数量</p>
@ -74,7 +75,8 @@
<div class="flex-center bar">
<div>面板类型</div>
<el-radio-group v-model="form.type4">
<el-radio :label="item.value" :key="item.value" v-for="(item,index) in radioGroup4">{{item.label}}</el-radio>
<el-radio :label="item.value" :key="item.value"
v-for="(item, index) in radioGroup4">{{ item.label }}</el-radio>
</el-radio-group>
<div>
<p>面板数量</p>
@ -95,7 +97,8 @@
<div class="flex-center bar">
<div>窗帘类型</div>
<el-radio-group v-model="form.type5">
<el-radio :label="item.value" :key="item.value" v-for="(item,index) in radioGroup5">{{item.label}}</el-radio>
<el-radio :label="item.value" :key="item.value"
v-for="(item, index) in radioGroup5">{{ item.label }}</el-radio>
</el-radio-group>
<div>
<p>窗帘数量</p>
@ -124,7 +127,8 @@
</div>
<el-checkbox-group v-model="form.checkone" class="rules-label">
<el-checkbox v-for="(item,i) in checkList" :label="item.label" :key="item.value" :value="item.value" >
<el-checkbox v-for="(item, i) in checkList" :label="item.label" :key="item.value"
:value="item.value">
{{ item.label }}
</el-checkbox>
</el-checkbox-group>
@ -144,9 +148,64 @@
</template>
<script setup>
import { Delete } from '@element-plus/icons-vue'
import { ref, reactive } from 'vue'
import { onMounted, ref, reactive } from 'vue'
import { usrRoomStore } from '../store/project'
import { Plus } from '@element-plus/icons-vue'
import myApi from "@/api/myApi.js";
import { useRoute, useRouter } from 'vue-router'
const router = useRouter()
const route = useRoute()
const project = reactive({
name: "",
description: "",
content: [],
});
const get_project = async () => {
const param = {
action: 100,
data: {
name: route.query.project_name,
}
}
const res = await myApi.getProjects(param);
if (res.code === 0) {
project.name = res.data.name;
project.description = res.data.description;
if (Array.isArray(res.data.content)) {
project.content = res.data.content;
}
} else {
ElMessage({
message: res.message,
type: "warning",
});
}
}
onMounted(() => {
get_project();
if (project.content.length ===0) {
add_room();
}
});
const room_info = reactive({
room_name: '',
room_count: 1,
})
const add_room = () => {
if (!Array.isArray(project.content)) {
project.content = []
}
room_info.room_name = "房型" + (project.content.length + 1);
room_info.room_count = 1;
project.content.push(room_info)
}
const room_data = usrRoomStore();
const new_room = reactive({
@ -324,6 +383,7 @@ const check = () => {
border: 1px solid #ddd;
display: flex;
border-radius: 8px;
.name {
width: 50px;
color: #fff;
@ -332,24 +392,31 @@ const check = () => {
display: flex;
align-items: center;
}
.name1 {
background: #de868f;
}
.name2 {
background: #e99d42;
}
.name3 {
background: #cba43f;
}
.name4 {
background: #bfbf3d;
}
.name5 {
background: #54bcbd;
}
.name6 {
background: #e99d42;
}
.name7 {
background: #cd42e9;
}
@ -358,27 +425,35 @@ const check = () => {
.div-1 {
height: 10%;
}
.div-2 {
height: 12%;
}
.div-3 {
height: 12%;
}
.div-4 {
height: 12%;
}
.div-5 {
height: 12%;
}
.div-6 {
height: 20%;
}
.div-7 {
height: 15%;
}
.el-radio-group {
width: 160px !important;
display: flex;
.el-radio {
width: 100%;
}
@ -390,32 +465,40 @@ const check = () => {
justify-content: space-around;
flex-direction: column;
}
.con-div100 {
width: 96%;
height: 100%;
padding: 5px;
}
::v-deep .el-textarea__inner {
height: 80px !important;
}
p {
margin: 8px;
}
.bar {
width: 100%;
padding: 10px;
>div {
margin-right: 10px;
}
}
.div300 {
width: 300px;
display: flex;
align-items: center;
span {
flex-shrink: 0;
}
}
}
}</style>
}
</style>

View File

@ -15,6 +15,7 @@ export default defineConfig({
proxy: {
'/api': {
target: 'http://api.shikicc.com:58909',
// target: 'http://10.10.10.4:3000',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, '/api')
}