Browse Source

收入分析

2545307760@qq.com 2 months ago
parent
commit
0502b94e7b
1 changed files with 22 additions and 14 deletions
  1. 22 14
      web/src/view/customer/component/progress.vue

+ 22 - 14
web/src/view/customer/component/progress.vue

@@ -2,8 +2,8 @@
   <div>
     <div>
       <el-button
-          icon="plus"
-          @click="addProgress"
+        icon="plus"
+        @click="addProgress"
       >
         新增进度信息
       </el-button>
@@ -11,23 +11,27 @@
     <div style="margin-top: 20px">
       <el-table :data="progressInfo">
         <el-table-column
-            label="填写用户"
-            align="center"
-            width="180px"
+          label="填写用户"
+          align="center"
+          width="180px"
+          prop="progressInfo.userId"
         />
         <el-table-column
-            label="所属客户"
-            align="center"
-            width="180px"
+          label="所属客户"
+          align="center"
+          width="180px"
+          prop="progressInfo.customerId"
         />
         <el-table-column
-            label="跟进时间"
-            align="center"
-            width="180px"
+          label="跟进时间"
+          align="center"
+          width="180px"
+          prop="progressInfo.followUpTime"
         />
         <el-table-column
-            label="内容"
-            align="center"
+          label="内容"
+          align="center"
+          prop="progressInfo.content"
         >
           <template #default="scope">
             <el-input v-model="scope.row.content" />
@@ -39,7 +43,11 @@
 </template>
 
 <script setup>
-
+import { reactive } from 'vue'
+const progressInfo = reactive([
+  { userId: '管理员', customerId: '客户', followUpTime: '2025-04-25', content: '数据' }
+])
+const addProgress = () => {}
 </script>
 
 <style scoped lang="scss">