duy 2 hete
szülő
commit
f83df142af
1 módosított fájl, 185 hozzáadás és 75 törlés
  1. 185 75
      src/views/project/list/info-dialog.vue

+ 185 - 75
src/views/project/list/info-dialog.vue

@@ -1,47 +1,152 @@
 <template>
-    <hc-dialog v-model="isShow" ui="hc-project-info-dialog-box" widths="64rem" is-table title="项目信息" :footer="false" :padding="false" @close="dialogClose">
+    <hc-dialog
+        v-model="isShow"
+        ui="hc-project-info-dialog-box"
+        widths="64rem"
+        is-table
+        title="项目信息"
+        :footer="false"
+        :padding="false"
+        @close="dialogClose"
+    >
         <el-container class="hc-project-info-dialog">
             <el-header>
                 <div class="left">
-                    <el-button hc-btn color="#626aef" style="color: white" @click="toCheck('measure')">计量管理</el-button>
-                    <el-button hc-btn color="#e233fb" style="color: white" @click="toCheck('lar')">征拆划分</el-button>
-                    <el-button hc-btn color="#ac54ff" style="color: white" @click="toCheck('test')">实验划分</el-button>
-                    <el-button hc-btn type="success" style="color: white" @click="toCheck('wbsTree')">WBS树管理</el-button>
-                    <el-button hc-btn color="#2bbeed" style="color: white" @click="toCheck('logTree')">日志树管理</el-button>
+                    <el-button
+                        hc-btn
+                        color="#626aef"
+                        style="color: white"
+                        @click="toCheck('measure')"
+                        >计量管理</el-button
+                    >
+                    <el-button
+                        hc-btn
+                        color="#e233fb"
+                        style="color: white"
+                        @click="toCheck('lar')"
+                        >征拆划分</el-button
+                    >
+                    <el-button
+                        hc-btn
+                        color="#ac54ff"
+                        style="color: white"
+                        @click="toCheck('test')"
+                        >试验划分</el-button
+                    >
+                    <el-button
+                        hc-btn
+                        type="success"
+                        style="color: white"
+                        @click="toCheck('wbsTree')"
+                        >WBS树管理</el-button
+                    >
+                    <el-button
+                        hc-btn
+                        color="#2bbeed"
+                        style="color: white"
+                        @click="toCheck('logTree')"
+                        >日志树管理</el-button
+                    >
                 </div>
                 <div class="right">
-                    <el-button hc-btn type="warning" @click="toCheck('editProject')">编辑项目</el-button>
-                    <el-button hc-btn type="primary" @click="toCheck('addContract')">创建合同段</el-button>
-                    <el-button v-del-com:[delProject] hc-btn type="danger">删除项目</el-button>
+                    <el-button
+                        hc-btn
+                        type="warning"
+                        @click="toCheck('editProject')"
+                        >编辑项目</el-button
+                    >
+                    <el-button
+                        hc-btn
+                        type="primary"
+                        @click="toCheck('addContract')"
+                        >创建合同段</el-button
+                    >
+                    <el-button v-del-com:[delProject] hc-btn type="danger"
+                        >删除项目</el-button
+                    >
                 </div>
             </el-header>
             <el-container>
                 <el-aside width="300px">
                     <hc-body scrollbar padding="0px">
-                        <hc-list-item title="项目ID:" :content="projectInfo.id" />
-                        <hc-list-item title="项目简称:" :content="projectInfo.projectAlias" />
-                        <hc-list-item title="项目全名:" :content="projectInfo.projectName" />
-                        <hc-list-item title="创建时间:" :content="projectInfo.createTime" />
-                        <hc-list-item title="更新时间:" :content="projectInfo.updateTime" />
+                        <hc-list-item
+                            title="项目ID:"
+                            :content="projectInfo.id"
+                        />
+                        <hc-list-item
+                            title="项目简称:"
+                            :content="projectInfo.projectAlias"
+                        />
+                        <hc-list-item
+                            title="项目全名:"
+                            :content="projectInfo.projectName"
+                        />
+                        <hc-list-item
+                            title="创建时间:"
+                            :content="projectInfo.createTime"
+                        />
+                        <hc-list-item
+                            title="更新时间:"
+                            :content="projectInfo.updateTime"
+                        />
                     </hc-body>
                 </el-aside>
                 <el-main>
                     <hc-body :scrollbar="contractList.length > 0" padding="0px">
                         <hc-empty v-if="contractList.length <= 0" />
-                        <hc-card-item v-for="item in contractList" v-else :key="item.id" class="hc-contract-list-card">
+                        <hc-card-item
+                            v-for="item in contractList"
+                            v-else
+                            :key="item.id"
+                            class="hc-contract-list-card"
+                        >
                             <div class="contract-type">
-                                <div v-if="item.contractType === 1" class="name bg-1">施工</div>
-                                <div v-if="item.contractType === 2" class="name bg-2">监理</div>
-                                <div v-if="item.contractType === 3" class="name bg-3">业主</div>
+                                <div
+                                    v-if="item.contractType === 1"
+                                    class="name bg-1"
+                                >
+                                    施工
+                                </div>
+                                <div
+                                    v-if="item.contractType === 2"
+                                    class="name bg-2"
+                                >
+                                    监理
+                                </div>
+                                <div
+                                    v-if="item.contractType === 3"
+                                    class="name bg-3"
+                                >
+                                    业主
+                                </div>
                             </div>
                             <div class="contract-content">
                                 <div class="name">{{ item.contractName }}</div>
                                 <div class="footer">
-                                    <div class="time">{{ item.updateTime }}</div>
+                                    <div class="time">
+                                        {{ item.updateTime }}
+                                    </div>
                                     <div class="action">
-                                        <el-link type="warning" @click="toCheck('editContract', item)">编辑合同段信息</el-link>
-                                        <el-link v-if="item.contractType === 1" type="success" @click="toCheck('wbsContract', item)">分配WBS</el-link>
-                                        <el-link v-del-com:[delContract]="item" type="danger">删除</el-link>
+                                        <el-link
+                                            type="warning"
+                                            @click="
+                                                toCheck('editContract', item)
+                                            "
+                                            >编辑合同段信息</el-link
+                                        >
+                                        <el-link
+                                            v-if="item.contractType === 1"
+                                            type="success"
+                                            @click="
+                                                toCheck('wbsContract', item)
+                                            "
+                                            >分配WBS</el-link
+                                        >
+                                        <el-link
+                                            v-del-com:[delContract]="item"
+                                            type="danger"
+                                            >删除</el-link
+                                        >
                                     </div>
                                 </div>
                             </div>
@@ -54,96 +159,100 @@
 </template>
 
 <script setup>
-import { ref, watch } from 'vue'
-import { deepClone, getArrValue, getObjValue, isNullES } from 'js-fast-way'
-import mainApi from '~api/project/project'
-import contractApi from '~api/project/contract'
+import { ref, watch } from "vue";
+import { deepClone, getArrValue, getObjValue, isNullES } from "js-fast-way";
+import mainApi from "~api/project/project";
+import contractApi from "~api/project/contract";
 
 const props = defineProps({
     ids: {
         type: [String, Number],
-        default: '',
+        default: "",
     },
-})
+});
 
 //事件
-const emit = defineEmits(['change', 'check', 'close'])
+const emit = defineEmits(["change", "check", "close"]);
 
 //双向绑定
 // eslint-disable-next-line no-undef
-const isShow = defineModel('modelValue', {
+const isShow = defineModel("modelValue", {
     default: false,
-})
+});
 
 //监听数据
-const projectId = ref(props.ids)
-watch(() => props.ids, (id) => {
-    projectId.value = id
-}, { deep: true })
+const projectId = ref(props.ids);
+watch(
+    () => props.ids,
+    (id) => {
+        projectId.value = id;
+    },
+    { deep: true }
+);
 
 //监听显示
 watch(isShow, (val) => {
     if (val) {
-        getProjectInfo()
+        getProjectInfo();
     } else {
-        projectInfo.value = {}
-        projectId.value = ''
-        emit('close')
+        projectInfo.value = {};
+        projectId.value = "";
+        emit("close");
     }
-})
+});
 
 //获取项目信息
-const projectInfo = ref({})
+const projectInfo = ref({});
 const getProjectInfo = async () => {
-    if (isNullES(projectId.value)) return
-    const { data } = await mainApi.detail(projectId.value)
-    projectInfo.value = getObjValue(data)
-    await getContractList(projectId.value)
-}
+    if (isNullES(projectId.value)) return;
+    const { data } = await mainApi.detail(projectId.value);
+    projectInfo.value = getObjValue(data);
+    await getContractList(projectId.value);
+};
 
 //获取合同段信息
-const contractList = ref([])
+const contractList = ref([]);
 const getContractList = async (id) => {
-    if (isNullES(id)) return
-    const { data } = await contractApi.getList(id)
-    contractList.value = getArrValue(data)
-}
+    if (isNullES(id)) return;
+    const { data } = await contractApi.getList(id);
+    contractList.value = getArrValue(data);
+};
 
 //关闭弹窗
 const dialogClose = () => {
-    projectInfo.value = {}
-    isShow.value = false
-    emit('close')
-}
+    projectInfo.value = {};
+    isShow.value = false;
+    emit("close");
+};
 
 //删除项目
 const delProject = async (_, resolve) => {
-    if (isNullES(projectId.value)) return
-    const { isRes } = await mainApi.del(projectId.value)
-    resolve() //关闭弹窗
-    if (!isRes) return
-    window.$message.success('删除成功')
-    dialogClose()
-    emit('change')
-}
+    if (isNullES(projectId.value)) return;
+    const { isRes } = await mainApi.del(projectId.value);
+    resolve(); //关闭弹窗
+    if (!isRes) return;
+    window.$message.success("删除成功");
+    dialogClose();
+    emit("change");
+};
 
 //删除合同段
 const delContract = async ({ item }, resolve) => {
-    const { isRes } = await contractApi.del(item.id)
-    resolve() //关闭弹窗
-    if (!isRes) return
-    window.$message.success('删除成功')
-    getContractList(projectId.value).then()
-}
+    const { isRes } = await contractApi.del(item.id);
+    resolve(); //关闭弹窗
+    if (!isRes) return;
+    window.$message.success("删除成功");
+    getContractList(projectId.value).then();
+};
 
 //功能事件回调
 const toCheck = (type, item = {}) => {
     //measure, lar, test, wbsTree, logTree, editProject, addContract, editContract, wbsContract
     //计量管理,征拆划分,实验划分,WBS树管理,日志树管理,编辑项目,创建合同段,编辑合同段信息,分配WBS
-    const info = deepClone(projectInfo.value)
-    dialogClose()
-    emit('check', { type, info, item })
-}
+    const info = deepClone(projectInfo.value);
+    dialogClose();
+    emit("check", { type, info, item });
+};
 </script>
 
 <style lang="scss">
@@ -159,7 +268,8 @@ const toCheck = (type, item = {}) => {
         --el-header-height: 50px;
         border-bottom: 1px solid #f4f4f4;
     }
-    .el-aside, .el-main {
+    .el-aside,
+    .el-main {
         position: relative;
         --el-main-padding: 0;
         .hc-new-main-body {
@@ -232,7 +342,7 @@ const toCheck = (type, item = {}) => {
                     color: #747474;
                     font-size: 14px;
                 }
-                .el-link  + .el-link{
+                .el-link + .el-link {
                     margin-left: 10px;
                 }
             }