|
@@ -631,7 +631,13 @@
|
|
|
</block>
|
|
|
<!-- 服务中 -->
|
|
|
<block v-if="orderStatus_v == 'FWZ' || orderStatus_v == 'YCD'">
|
|
|
- <u-button plain type="primary" text="变更小工" @tap="biangengxiaogong()"></u-button>
|
|
|
+ <u-button
|
|
|
+ v-if="userInfo.workerNumber == detail.workerNumber"
|
|
|
+ plain
|
|
|
+ type="primary"
|
|
|
+ text="变更小工"
|
|
|
+ @tap="biangengxiaogong()"
|
|
|
+ ></u-button>
|
|
|
<u-button
|
|
|
plain
|
|
|
type="primary"
|
|
@@ -694,6 +700,7 @@ import Logistics from '@/components/logistics2/common-logistics.vue'
|
|
|
import selectionWorkers from '@/components/selectionWorkers.vue'
|
|
|
import zhifutanchuan from '@/components/zhifutanchuan.vue'
|
|
|
import { wxScanCode } from '@/common/utils/util.js'
|
|
|
+import { getStorage } from '@/common/utils/storage.js'
|
|
|
export default {
|
|
|
components: {
|
|
|
zjDialogPicker,
|
|
@@ -759,6 +766,9 @@ export default {
|
|
|
},
|
|
|
|
|
|
computed: {
|
|
|
+ userInfo() {
|
|
|
+ return getStorage('user')
|
|
|
+ },
|
|
|
orderStatus_v() {
|
|
|
if (['DYY'].includes(this?.detail?.orderStatus)) {
|
|
|
// 待预约
|