Browse Source

跟进记录

zhaoxiaohai 3 years ago
parent
commit
4666b4229f

+ 5 - 0
pages/threadedTree/details/modules/record/index.js

@@ -0,0 +1,5 @@
+Component({
+    properties: {
+        followList: Array
+    }
+})

+ 4 - 0
pages/threadedTree/details/modules/record/index.json

@@ -0,0 +1,4 @@
+{
+    "component": true,
+    "usingComponents": {}
+}

+ 40 - 0
pages/threadedTree/details/modules/record/index.scss

@@ -0,0 +1,40 @@
+.box {
+    width: 100vw;
+    padding: 20rpx 30rpx;
+    background-color: #ffffff;
+    box-sizing: border-box;
+    margin-top: 20rpx;
+    word-break: break-all;
+    white-space: pre-wrap;
+
+    .time {
+        height: 34rpx;
+        font-size: 24rpx;
+        font-family: PingFang SC-Regular, PingFang SC;
+        color: #666666;
+    }
+
+    .content {
+        font-size: 28rpx;
+        font-family: PingFang SC-Regular, PingFang SC;
+        color: #999999;
+        margin-top: 20rpx;
+
+        text {
+            color: #333333;
+        }
+    }
+
+    .explain {
+        background: #F5F5F5;
+        border-radius: 16rpx;
+        padding: 20rpx 30rpx;
+        font-size: 28rpx;
+        font-family: PingFang SC-Regular, PingFang SC;
+        color: #333333;
+        margin-top: 20rpx;
+
+    }
+
+
+}

+ 5 - 0
pages/threadedTree/details/modules/record/index.wxml

@@ -0,0 +1,5 @@
+<navigator url="#" class="box" wx:for="{{followList}}">
+    <view class="time">{{item.createdate}}</view>
+    <view class="content">由经销商端<text> {{item.createby}} </text>开始跟进,跟进方式:<text>{{item.followupmode}}</text>,跟进内容:</view>
+    <view class="explain">{{item.competitor}}</view>
+</navigator>