瀏覽代碼

fix:bug fix

zhangxin 2 月之前
父節點
當前提交
3a3675cc2c
共有 2 個文件被更改,包括 11 次插入7 次删除
  1. 1 1
      pages/orderDetailNew/components/pageOne.vue
  2. 10 6
      pages/pagereceivecenter/pagereceivecenter.vue

+ 1 - 1
pages/orderDetailNew/components/pageOne.vue

@@ -238,7 +238,7 @@ export default {
238
                 })
238
                 })
239
             } else {
239
             } else {
240
                 uni.showToast({
240
                 uni.showToast({
241
-                    title: '没有图片可复制',
241
+                    title: '没有图片可保存',
242
                     icon: 'none'
242
                     icon: 'none'
243
                 })
243
                 })
244
             }
244
             }

+ 10 - 6
pages/pagereceivecenter/pagereceivecenter.vue

@@ -19,7 +19,7 @@ export default {
19
             currentOrder: {},
19
             currentOrder: {},
20
             followUpModelShow: false,
20
             followUpModelShow: false,
21
             followUpNotes: '',
21
             followUpNotes: '',
22
-            countdown: 3000,
22
+            countdown: 300,
23
             countdownIntervals: null
23
             countdownIntervals: null
24
         }
24
         }
25
     },
25
     },
@@ -226,12 +226,13 @@ export default {
226
                             <!-- <view class="mainLindImg">
226
                             <!-- <view class="mainLindImg">
227
                                 <image :src="'/static/acceptOrder/orderCardPic.jpg'" v-if="item.src" />
227
                                 <image :src="'/static/acceptOrder/orderCardPic.jpg'" v-if="item.src" />
228
                             </view> -->
228
                             </view> -->
229
+                            <view class="itemName">{{ item.item || '暂无项目' }}</view>
230
+
229
                             <view class="mainLindInfo">
231
                             <view class="mainLindInfo">
230
-                                <view class="itemName">{{ item.item || '暂无项目' }}</view>
231
                                 <view>发单人:{{ item.createNickName || '未知' }}</view>
232
                                 <view>发单人:{{ item.createNickName || '未知' }}</view>
232
                                 <view>机构:{{ item.orgName || '暂无机构' }}</view>
233
                                 <view>机构:{{ item.orgName || '暂无机构' }}</view>
233
                                 <view>电话:{{ item.phone || '暂无电话' }}</view>
234
                                 <view>电话:{{ item.phone || '暂无电话' }}</view>
234
-                                <view>所属人:{{ item.clueOwnerName || '暂无所属人' }}</view>
235
+                                <view>接单人:{{ item.identificationName || '暂无所属人' }}</view>
235
                                 <view>运营人:{{ item.clueOperationName || '暂无运营人' }}</view>
236
                                 <view>运营人:{{ item.clueOperationName || '暂无运营人' }}</view>
236
                                 <view>发单日期:{{ item.sendDate || '暂无时间' }}</view>
237
                                 <view>发单日期:{{ item.sendDate || '暂无时间' }}</view>
237
                             </view>
238
                             </view>
@@ -387,6 +388,7 @@ export default {
387
     justify-content: space-between;
388
     justify-content: space-between;
388
     align-items: center;
389
     align-items: center;
389
     gap: 20rpx;
390
     gap: 20rpx;
391
+    flex-direction: column;
390
 }
392
 }
391
 
393
 
392
 /* 主要内容行图片容器 */
394
 /* 主要内容行图片容器 */
@@ -398,8 +400,8 @@ export default {
398
 
400
 
399
 /* 主要内容行信息容器 */
401
 /* 主要内容行信息容器 */
400
 .orderCard .mainLind .mainLindInfo {
402
 .orderCard .mainLind .mainLindInfo {
401
-    flex: 1;
402
-    display: flex;
403
+    display: grid;
404
+    grid-template-columns: 1fr 1fr;
403
     flex-direction: column;
405
     flex-direction: column;
404
     gap: 10rpx;
406
     gap: 10rpx;
405
     font-size: 24rpx;
407
     font-size: 24rpx;
@@ -407,10 +409,12 @@ export default {
407
 }
409
 }
408
 
410
 
409
 /* 商品名称 */
411
 /* 商品名称 */
410
-.orderCard .mainLind .mainLindInfo .itemName {
412
+.orderCard .mainLind .itemName {
411
     font-size: 30rpx;
413
     font-size: 30rpx;
412
     font-weight: 700;
414
     font-weight: 700;
413
     color: #374751;
415
     color: #374751;
416
+    width: 100%;
417
+    text-align: left;
414
 }
418
 }
415
 
419
 
416
 /* 标签区域 */
420
 /* 标签区域 */