Browse Source

单位指派测试

Sanmu8 1 year ago
parent
commit
1f508c2e54

+ 6 - 4
src/layout/components/Sidebar/Logo.vue

@@ -3,7 +3,7 @@
     <transition name="sidebarLogoFade">
       <router-link v-if="collapse" key="collapse" class="sidebar-logo-link" to="/">
         <img v-if="logo" :src="logo" class="sidebar-logo" />
-        <h1 v-else class="sidebar-title" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }}</h1>
+        <h1 v-else class="sidebar-title omit" :style="{ color: sideTheme === 'theme-dark' ? variables.logoTitleColor : variables.logoLightTitleColor }">{{ title }}</h1>
       </router-link>
       <router-link v-else key="expand" class="sidebar-logo-link" to="/">
         <!-- <img v-if="logo" :src="logo" class="sidebar-logo" /> -->
@@ -45,8 +45,10 @@ export default {
   },
   created(){
     getSYSTEM(1).then((response) => {
-        this.title = response.data.systemName
-        document.title = response.data.systemName
+      //debugger;  
+        this.title = response.data.systemName;
+        document.title = response.data.systemName;
+        this.$forceUpdate();
       });
   }
 };
@@ -87,7 +89,7 @@ export default {
       margin: 0;
       color: #fff;
       line-height: 61px;
-      font-size: 1cqw;
+      font-size: 16px;
       font-family: Avenir, Helvetica Neue, Arial, Helvetica, sans-serif;
       vertical-align: middle;
     }

+ 12 - 11
src/views/ARTICLE/detail.vue

@@ -1,32 +1,32 @@
 <template>
   <div class="cmain">
-      <el-descriptions border :labelStyle="{'width':'150px'}" column="2">
+      <el-descriptions border :labelStyle="{'width':'150px'}" :column="2">
           <el-descriptions-item label="项目名称">{{
-           form.article.atvName
+           form.atvName
           }}</el-descriptions-item>
           <el-descriptions-item label="建设规模">
-            <el-tag v-if="form.article.scale == 1" type="success"
+            <el-tag v-if="form.scale == 1" type="success"
               >小型</el-tag
             >
-            <el-tag v-else-if="form.article.scale == 2" type="success"
+            <el-tag v-else-if="form.scale == 2" type="success"
               >中型</el-tag
             >
-            <el-tag v-else-if="form.article.scale == 3" type="success"
+            <el-tag v-else-if="form.scale == 3" type="success"
               >大型</el-tag
             >
           </el-descriptions-item>
 
           <el-descriptions-item label="年度投资计划(万)">{{
-            form.article.plan
+            form.plan
           }}</el-descriptions-item>
           <el-descriptions-item label="实际投资金额(万)">{{
-            form.article.reality
+            form.reality
           }}</el-descriptions-item>
         </el-descriptions>
 
         <el-descriptions border :labelStyle="{'width':'150px'}" style="">
           <el-descriptions-item label="建设内容" :contentStyle="{'padding': '20px'}">{{
-            form.article.content
+            form.content
           }}</el-descriptions-item>
         </el-descriptions>
 
@@ -34,7 +34,7 @@
             <span style="font-size: 22px;font-weight: bold;">实际投资金额详情</span>
         </div>
 
-    <el-table :data="form.dataFillingList" style="width: 100%;margin-top: 20px;">
+    <el-table :data="tableData" style="width: 100%;margin: 20px 0;">
         <el-table-column prop="month" label="日期">
         </el-table-column>
         <el-table-column prop="price" label="金额">
@@ -73,8 +73,8 @@ export default {
   mounted() {
     if (this.param.id) {
       getPriceInfo(this.param.id).then((response) => {
-        this.form = response.data;
-        console.log(this.form);
+        this.form = response.data.article
+        this.tableData = response.data.dataFillingList
       });
     }
   },
@@ -87,6 +87,7 @@ export default {
       ],
       // 表单参数
       form: {},
+      tableData:[],
     };
   },
 

+ 9 - 0
src/views/JOINTCONFERENCE/add.vue

@@ -48,6 +48,7 @@ import { getDept } from "@/api/portal/CONFERENCEREPLY/CONFERENCEREPLY.js";
 import {
   addJOINTCONFERENCE,
   updateJOINTCONFERENCE,
+  getJOINTCONFERENCE
 } from "@/api/portal/JOINTCONFERENCE/JOINTCONFERENCE";
 export default {
   props: {
@@ -85,6 +86,12 @@ export default {
     };
   },
   created() {
+    if (this.param.id) {
+      getJOINTCONFERENCE(this.param.id).then(response => {
+        this.form = response.data;
+        this.deptId = JSON.parse(this.form.deptIds)
+      });
+    }
     getDept(2).then((res) => {
       this.deptList = res.data;
     });
@@ -98,6 +105,8 @@ export default {
       this.$refs["form"].validate((valid) => {
         if (valid) {
           if (this.form.id != null) {
+            this.form.deptId = this.deptId
+            this.form.deptNum = this.form.deptId.length
             updateJOINTCONFERENCE(this.form).then((response) => {
               this.$modal.msgSuccess("修改成功");
               this.$layer.close(this.layerid);

+ 40 - 0
src/views/JOINTCONFERENCE/detail.vue

@@ -0,0 +1,40 @@
+<template>
+ <div class="cmain">
+   
+    <div class="mfooter">
+      <el-button @click="$layer.close(layerid)">返 回</el-button>
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+data() {
+    return {
+      form: {},
+    };
+  },
+  props: {
+    param: {
+      type: Object,
+      default: () => {
+        return {};
+      }
+    },
+    layerid: {
+      type: String
+    }
+  },
+  mounted() {
+    if (this.param.id) {
+      getNEWS(this.param.id).then(response => {
+        this.form = response.data;
+      });
+    }
+  },
+}
+</script>
+
+<style>
+
+</style>

+ 3 - 2
src/views/JOINTCONFERENCE/index.vue

@@ -245,10 +245,11 @@ export default {
   },
   methods: {
     goDetail(row){
-
+      
     },
     handleUnit(row){
-      
+      const id = row.id || this.ids;
+      this.iframe({ obj: add, param: { id: id }, title: '单位指派', width: '750px', height: '60%' });
     },
     /** 查询联席会议列表 */
     getList() {