tanxf 4 years ago
parent
commit
1e56ff6fa3

+ 88 - 3
src/pages/Customer/ContractManagement.vue

@@ -1,4 +1,89 @@
 // 合同管理
-<template lang="pug">
-h1 合同管理
-</template>
+<template>
+  <el-table
+    :data="tableData"
+    border
+    style="width: 100%">
+    <el-table-column
+      prop="address"
+      label="合同编号"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="name"
+      label="地址"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="province"
+      label="出租人"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="city"
+      label="合同状态"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="date"
+      label="签约日期"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="zip"
+      label="合同终止日期"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="remarks"
+      label="提前终止日期"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="remarks"
+      label="收租方式"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="remarks"
+      label="租金单价(/月)"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="remarks"
+      label="备注"
+      >
+    </el-table-column>
+    <el-table-column
+      label="操作"
+      >
+      <template scope="">
+        <el-button type="text" size="small">编辑</el-button>
+      </template>
+    </el-table-column>
+  </el-table>
+</template>
+
+<script>
+  export default {
+    methods: {
+      handleClick(row) {
+        console.log(row);
+      }
+    },
+
+    data() {
+      return {
+        tableData: [{
+          date: '2016-05-02',
+          name: '1001',
+          province: '上海',
+          city: '普陀区',
+          address: '上海市普陀区金沙江路 1518 弄',
+          zip: '-',
+          remarks: '11111'
+        }]
+      }
+    }
+  }
+</script>

+ 79 - 0
src/pages/Letter/index.vue

@@ -0,0 +1,79 @@
+// 收信记录
+<template>
+  <el-table
+    :data="tableData"
+    border
+    style="width: 100%">
+    <el-table-column
+      prop="address"
+      label="发布人"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="name"
+      label="标题"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="date"
+      label="时间"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="zip"
+      label="类型"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="remarks"
+      label="提前终止日期"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="remarks"
+      label="收租方式"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="remarks"
+      label="租金单价(/月)"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="remarks"
+      label="备注"
+      >
+    </el-table-column>
+    <el-table-column
+      label="操作"
+      >
+      <template scope="">
+        <el-button type="text" size="small">编辑</el-button>
+      </template>
+    </el-table-column>
+  </el-table>
+</template>
+
+<script>
+  export default {
+    methods: {
+      handleClick(row) {
+        console.log(row);
+      }
+    },
+
+    data() {
+      return {
+        tableData: [{
+          date: '2016-05-02',
+          name: '1001',
+          province: '上海',
+          city: '普陀区',
+          address: '上海市普陀区金沙江路 1518 弄',
+          zip: '-',
+          remarks: '11111'
+        }]
+      }
+    }
+  }
+</script>

+ 74 - 0
src/pages/Parking/index.vue

@@ -0,0 +1,74 @@
+//
+<template>
+  <el-table
+    :data="tableData"
+    border
+    style="width: 100%">
+    <el-table-column
+      prop="address"
+      label="区域名称"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="name"
+      label="租赁单价"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="province"
+      label="管理费"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="city"
+      label="车位数量"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="date"
+      label="充值类型"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="zip"
+      label="状态"
+      >
+    </el-table-column>
+    <el-table-column
+      prop="remarks"
+      label="备注"
+      >
+    </el-table-column>
+    <el-table-column
+      label="操作"
+      >
+      <template scope="">
+        <el-button type="text" size="small">编辑</el-button>
+      </template>
+    </el-table-column>
+  </el-table>
+</template>
+
+<script>
+  export default {
+    methods: {
+      handleClick(row) {
+        console.log(row);
+      }
+    },
+
+    data() {
+      return {
+        tableData: [{
+          date: '2016-05-02',
+          name: '1001',
+          province: '上海',
+          city: '普陀区',
+          address: '上海市普陀区金沙江路 1518 弄',
+          zip: '-',
+          remarks: '11111'
+        }]
+      }
+    }
+  }
+</script>

+ 10 - 12
src/router/index.js

@@ -60,10 +60,8 @@ import DataDictionary           from '@/pages/System/DataDictionary'
 import OperationLog             from '@/pages/System/OperationLog'                                      // 操作日志
 
 import Complaints from '@/pages/Complaints/index'
-
-import Vehicle from '@/pages/Vehicle/index'                                     //车辆管理
-import Architecture from '@/pages/Architecture/index'                                     //车辆管理
-
+import ParKing from '@/pages/ParKing/index' //停车位
+import Letter from '@/pages/Letter/index' //停车位
 
 Vue.use( Router )
 
@@ -138,7 +136,7 @@ export default new Router({
                     components: {
                         ContainerView: WaterFeeEntry
                     }
-                },
+                }, 
                 // 客户管理
                 {
                     path: '/CustomerInformation',
@@ -284,20 +282,20 @@ export default new Router({
                         ContainerView: Complaints
                     }
                 },
-                // 车辆管理
+                //停车位
                 {
-                    path: '/Vehicle',
+                    path: '/ParKing',
                     components: {
-                        ContainerView: Vehicle
+                        ContainerView: ParKing
                     }
                 },
-                // 房屋架构
+                //收信记录
                 {
-                    path: '/Architecture',
+                    path: '/Letter',
                     components: {
-                        ContainerView: Architecture
+                        ContainerView: Letter
                     }
-                },
+                }
             ]
         }
     ]

+ 21 - 21
static/api/viewAPI.json

@@ -12,11 +12,11 @@
                         {
                             "titleName"     : "应收查询",
                             "url"           : "RentQuery",
-                            "breadcrumb"    : [ "收费管理", "租金管理", "应收查询" ]
+                            "breadcrumb"    : [ "收费管理", "租金管理", "应收查询" ] 
                         }, {
                             "titleName"     : "租金记录",
                             "url"           : "RentRecord",
-                            "breadcrumb"    : [ "收费管理", "租金管理", "租金记录" ]
+                            "breadcrumb"    : [ "收费管理", "租金管理", "租金记录" ] 
                         }
                     ]
                 }, {
@@ -25,11 +25,11 @@
                         {
                             "titleName"     : "物业费查询",
                             "url"           : "PropertyQuery",
-                            "breadcrumb"    : [ "收费管理", "物业收费", "物业费查询" ]
+                            "breadcrumb"    : [ "收费管理", "物业收费", "物业费查询" ] 
                         }, {
                             "titleName"     : "物业费记录",
                             "url"           : "PropertyRecord",
-                            "breadcrumb"    : [ "收费管理", "物业收费", "物业费记录" ]
+                            "breadcrumb"    : [ "收费管理", "物业收费", "物业费记录" ] 
                         }
                     ]
                 }, {
@@ -38,19 +38,19 @@
                         {
                             "titleName"     : "电费查询",
                             "url"           : "ElectricityBillQuery",
-                            "breadcrumb"    : [ "收费管理", "抄表电费", "电费查询" ]
+                            "breadcrumb"    : [ "收费管理", "抄表电费", "电费查询" ] 
                         }, {
                             "titleName"     : "电费记录",
                             "url"           : "ElectricityBillRecord",
-                            "breadcrumb"    : [ "收费管理", "抄表电费", "电费记录" ]
+                            "breadcrumb"    : [ "收费管理", "抄表电费", "电费记录" ] 
                         }, {
                             "titleName"     : "电费录入",
                             "url"           : "ElectricityBillEntry",
-                            "breadcrumb"    : [ "收费管理", "抄表电费", "电费录入" ]
+                            "breadcrumb"    : [ "收费管理", "抄表电费", "电费录入" ] 
                         }, {
                             "titleName"     : "峰平谷录入",
                             "url"           : "PeakflatvalleyEntry",
-                            "breadcrumb"    : [ "收费管理", "抄表电费", "峰平谷录入" ]
+                            "breadcrumb"    : [ "收费管理", "抄表电费", "峰平谷录入" ] 
                         }
                     ]
                 }, {
@@ -59,15 +59,15 @@
                         {
                             "titleName"     : "水费查询",
                             "url"           : "WaterFeeQuery",
-                            "breadcrumb"    : [ "收费管理", "抄表水费", "水费查询" ]
+                            "breadcrumb"    : [ "收费管理", "抄表水费", "水费查询" ] 
                         }, {
                             "titleName"     : "水费记录",
                             "url"           : "WaterFeeRecord",
-                            "breadcrumb"    : [ "收费管理", "抄表水费", "水费记录" ]
+                            "breadcrumb"    : [ "收费管理", "抄表水费", "水费记录" ] 
                         }, {
                             "titleName"     : "水表录入",
                             "url"           : "WaterFeeEntry",
-                            "breadcrumb"    : [ "收费管理", "抄表水费", "水费录入" ]
+                            "breadcrumb"    : [ "收费管理", "抄表水费", "水费录入" ] 
                         }
                     ]
                 }
@@ -162,7 +162,7 @@
                             "url"           : "WaterFee",
                             "breadcrumb"    : [ "财务管理", "统计报表", "抄表水费" ]
                         }
-                    ]
+                    ]                       
                 }, {
                     "titleName" : "租赁审核",
                     "bottom"    : [
@@ -257,25 +257,25 @@
                 }
             ]
         }, {
-            "titleName": "车管理",
+            "titleName": "车位区域管理",
             "iconClass": "settings_applications",
             "middleLink": [
                 {
-                    "titleName" : "车管理",
-                    "url"       : "Vehicle",
-                    "breadcrumb": [ "车管理" ]
+                    "titleName" : "车位区域管理",
+                    "url"       : "ParKing",
+                    "breadcrumb": [ "车位区域管理" ]
                 }
             ]
         }, {
-            "titleName": "房屋架构",
+            "titleName": "收信记录",
             "iconClass": "settings_applications",
             "middleLink": [
                 {
-                    "titleName" : "房屋架构",
-                    "url"       : "Architecture",
-                    "breadcrumb": [ "房屋架构" ]
+                    "titleName" : "收信记录",
+                    "url"       : "Letter",
+                    "breadcrumb": [ "收信记录" ]
                 }
             ]
         }
     ]
-}
+}