Browse Source

fix:bug fix

zhangxin 2 months ago
parent
commit
3a3675cc2c

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

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

+ 10 - 6
pages/pagereceivecenter/pagereceivecenter.vue

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