|
|
@@ -49,7 +49,7 @@
|
|
|
<view class="btn" @click="handTerminate()">终止</view>
|
|
|
<view class="btn">转派</view>
|
|
|
<view class="btn" :style="newTaskObj.existOutsource == 1 ? 'background: #FFA929' : ''" @click="handOutsource()">委外</view>
|
|
|
- <view class="btn">交接</view>
|
|
|
+ <view class="btn" @click="handHandover">交接</view>
|
|
|
</view>
|
|
|
|
|
|
<SearchPopup mode="center" v-if="outsourceShow">
|
|
|
@@ -143,6 +143,7 @@
|
|
|
</SearchPopup>
|
|
|
|
|
|
<outsourceList ref="outsourceListRef" @close="outCancel()"></outsourceList>
|
|
|
+ <handover ref="handoverRef"></handover>
|
|
|
|
|
|
</view>
|
|
|
</template>
|
|
|
@@ -162,6 +163,7 @@
|
|
|
import SearchPopup from './searchPopup.vue'
|
|
|
|
|
|
import outsourceList from './outsourceList.vue'
|
|
|
+ import handover from './handover.vue'
|
|
|
|
|
|
import {
|
|
|
EventBus
|
|
|
@@ -171,7 +173,8 @@
|
|
|
export default {
|
|
|
components: {
|
|
|
SearchPopup,
|
|
|
- outsourceList
|
|
|
+ outsourceList,
|
|
|
+ handover
|
|
|
},
|
|
|
|
|
|
props: {
|
|
|
@@ -463,6 +466,10 @@
|
|
|
}
|
|
|
|
|
|
},
|
|
|
+
|
|
|
+ handHandover() {
|
|
|
+ this.$refs.handoverRef.open()
|
|
|
+ },
|
|
|
|
|
|
handTerminate() {
|
|
|
|