zhaoxiaohai пре 3 година
родитељ
комит
0ae1fcd75f

+ 25 - 0
pages/threadedTree/details/modules/details/index.js

@@ -0,0 +1,25 @@
+// pages/threadedTree/details/modules/details/index.js
+Component({
+    options: {
+        addGlobalClass: true
+    },
+    properties: {
+        detailsData: {
+            type: Object
+        }
+    },
+
+    /**
+     * 组件的初始数据
+     */
+    data: {
+
+    },
+
+    /**
+     * 组件的方法列表
+     */
+    methods: {
+
+    }
+})

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

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

+ 23 - 0
pages/threadedTree/details/modules/details/index.scss

@@ -0,0 +1,23 @@
+.title {
+    width: 100vw;
+    height: 90rpx;
+    line-height: 90rpx;
+    font-size: 28rpx;
+    font-family: PingFang SC-Bold, PingFang SC;
+    font-weight: bold;
+    color: #333333;
+    padding-left: 30rpx;
+    box-sizing: border-box;
+}
+
+.title-class {
+    font-size: 28rpx !important;
+    font-family: PingFang SC-Regular, PingFang SC !important;
+    color: #666666;
+}
+
+.iconfont {
+    font-size: 24rpx;
+    color: #52C41A;
+    margin-left: 30rpx;
+}

+ 24 - 0
pages/threadedTree/details/modules/details/index.wxml

@@ -0,0 +1,24 @@
+<view class="title">线索详情</view>
+<van-cell title-width='130px' clickable title-class='title-class' title="客户名称" value="{{detailsData.name}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="手机号码" value="{{detailsData.phonenumber}}">
+    <view slot='right-icon'>
+        <text class="iconfont icon-bodadianhua"></text>
+    </view>
+</van-cell>
+<van-cell title-width='130px' clickable title-class='title-class' title="省市县" value="{{detailsData.province}}{{detailsData.city}}{{detailsData.county}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="地址" value="{{detailsData.address}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="来源" value="{{detailsData.cluesource}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="所属经销商" value="{{detailsData.agentname}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="负责人" value="{{detailsData.leadername}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="状态" value="{{detailsData.status}}" />
+
+<view class="title">系统信息</view>
+<van-cell title-width='130px' clickable title-class='title-class' title="创建人" value="{{detailsData.createBy}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="创建时间" value="{{detailsData.createDate}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="分配人" value="{{detailsData.assignedBy}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="分配时间" value="{{detailsData.assignedDate}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="最近跟进人" value="{{detailsData.followBy}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="最近跟进时间" value="{{detailsData.followDate}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="最近转移时间" value="{{detailsData.changeBy}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="最近转移人" value="{{detailsData.changeDate}}" />
+<van-cell title-width='130px' clickable title-class='title-class' title="最近编辑时间" value="{{detailsData.editDate}}" />