Browse Source

no message

linwenxin 4 tháng trước cách đây
mục cha
commit
fae1b84446

+ 10 - 8
src/packageWorkorder/pages/orderList.vue

@@ -51,7 +51,7 @@
         </view>
 
         <view class="order-list-container">
-          <view class="item" v-for="(item, index) in dataList" :key="index" @tap="toDetail(item.id)">
+          <view class="item" v-for="(item, index) in dataList" :key="index" @tap="toDetail(item.id, item)">
             <view class="item-top">
               <view class="left">
                 <view class="title" v-if="item.orderSmallTypeText">
@@ -563,7 +563,7 @@ export default {
       this.callback = () => {
         this.$successToast()
         this.refreshList()
-        this.toDetail(item.id)
+        this.toDetail(item.id, item)
         this.$nextTick(() => {
           this.item = null
           this.selectionWorkersType = null
@@ -581,7 +581,7 @@ export default {
       this.callback = () => {
         this.$successToast()
         this.refreshList()
-        this.toDetail(item.id)
+        this.toDetail(item.id, item)
         this.$nextTick(() => {
           this.item = null
           this.selectionWorkersType = null
@@ -616,7 +616,7 @@ export default {
             .then(res => {
               this.$successToast()
               this.refreshList()
-              this.toDetail(item.id)
+              this.toDetail(item.id, item)
             })
         })
         .catch(() => {})
@@ -649,10 +649,12 @@ export default {
       })
     },
 
-    toDetail(id) {
-      this.$navToPage({
-        url: `/packageWorkorder/pages/orderDetail?id=${id}`
-      })
+    toDetail(id, item) {
+      if (!this.JIEDAN(item, this.userInfo)) {
+        this.$navToPage({
+          url: `/packageWorkorder/pages/orderDetail?id=${id}`
+        })
+      }
     }
   }
 }

+ 10 - 9
src/packageWorkorder/pages/search.vue

@@ -11,7 +11,6 @@
           shape="round"
           :showAction="false"
           placeholder="输入工单单号进行搜索"
-          showAction
           actionText="搜索"
           v-model="keyword"
           @search="searchSubmit"
@@ -23,7 +22,7 @@
     </template>
 
     <view class="order-list-container">
-      <view class="item" v-for="(item, index) in dataList" :key="index" @tap="toDetail(item.id)">
+      <view class="item" v-for="(item, index) in dataList" :key="index" @tap="toDetail(item.id, item)">
         <view class="item-top">
           <view class="left">
             <view class="title" :class="item.orderTypeText" v-if="item.orderSmallTypeText">
@@ -208,7 +207,7 @@ export default {
       this.callback = () => {
         this.$successToast()
         this.refreshList()
-        this.toDetail(item.id)
+        this.toDetail(item.id, item)
         this.$nextTick(() => {
           this.item = null
           this.selectionWorkersType = null
@@ -297,7 +296,7 @@ export default {
       this.callback = () => {
         this.$successToast()
         this.refreshList()
-        this.toDetail(item.id)
+        this.toDetail(item.id, item)
         this.$nextTick(() => {
           this.item = null
           this.selectionWorkersType = null
@@ -332,7 +331,7 @@ export default {
             .then(res => {
               this.$successToast()
               this.refreshList()
-              this.toDetail(item.id)
+              this.toDetail(item.id, item)
             })
         })
         .catch(() => {})
@@ -365,10 +364,12 @@ export default {
       })
     },
 
-    toDetail(id) {
-      this.$navToPage({
-        url: `/packageWorkorder/pages/orderDetail?id=${id}`
-      })
+    toDetail(id, item) {
+      if (!this.JIEDAN(item, this.userInfo)) {
+        this.$navToPage({
+          url: `/packageWorkorder/pages/orderDetail?id=${id}`
+        })
+      }
     }
   }
 }