|
@@ -11,7 +11,6 @@
|
|
shape="round"
|
|
shape="round"
|
|
:showAction="false"
|
|
:showAction="false"
|
|
placeholder="输入工单单号进行搜索"
|
|
placeholder="输入工单单号进行搜索"
|
|
- showAction
|
|
|
|
actionText="搜索"
|
|
actionText="搜索"
|
|
v-model="keyword"
|
|
v-model="keyword"
|
|
@search="searchSubmit"
|
|
@search="searchSubmit"
|
|
@@ -23,7 +22,7 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<view class="order-list-container">
|
|
<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="item-top">
|
|
<view class="left">
|
|
<view class="left">
|
|
<view class="title" :class="item.orderTypeText" v-if="item.orderSmallTypeText">
|
|
<view class="title" :class="item.orderTypeText" v-if="item.orderSmallTypeText">
|
|
@@ -208,7 +207,7 @@ export default {
|
|
this.callback = () => {
|
|
this.callback = () => {
|
|
this.$successToast()
|
|
this.$successToast()
|
|
this.refreshList()
|
|
this.refreshList()
|
|
- this.toDetail(item.id)
|
|
|
|
|
|
+ this.toDetail(item.id, item)
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
this.item = null
|
|
this.item = null
|
|
this.selectionWorkersType = null
|
|
this.selectionWorkersType = null
|
|
@@ -297,7 +296,7 @@ export default {
|
|
this.callback = () => {
|
|
this.callback = () => {
|
|
this.$successToast()
|
|
this.$successToast()
|
|
this.refreshList()
|
|
this.refreshList()
|
|
- this.toDetail(item.id)
|
|
|
|
|
|
+ this.toDetail(item.id, item)
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
this.item = null
|
|
this.item = null
|
|
this.selectionWorkersType = null
|
|
this.selectionWorkersType = null
|
|
@@ -332,7 +331,7 @@ export default {
|
|
.then(res => {
|
|
.then(res => {
|
|
this.$successToast()
|
|
this.$successToast()
|
|
this.refreshList()
|
|
this.refreshList()
|
|
- this.toDetail(item.id)
|
|
|
|
|
|
+ this.toDetail(item.id, item)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
.catch(() => {})
|
|
.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}`
|
|
|
|
+ })
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|