Compare commits
No commits in common. "694af4c8373db7a330333891150aa94506325fd8" and "54841e06962dc2fdc79299ff89442482c1e6fde3" have entirely different histories.
694af4c837
...
54841e0696
|
|
@ -77,16 +77,6 @@ const rules = reactive({
|
||||||
})
|
})
|
||||||
onLoad((options) => {
|
onLoad((options) => {
|
||||||
id.value = options.id
|
id.value = options.id
|
||||||
http.get(`/tasks/${id.value}`).then(res => {
|
|
||||||
if (res.taskable) {
|
|
||||||
form.description = res.taskable.description
|
|
||||||
if (res.taskable.photos && res.taskable.photos.length > 0) {
|
|
||||||
form.photos = res.taskable.photos.map(item => {
|
|
||||||
return {url: item}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|
||||||
const submit = () => {
|
const submit = () => {
|
||||||
|
|
|
||||||
|
|
@ -25,10 +25,6 @@
|
||||||
<view class="w-140rpx">晋升职位</view>
|
<view class="w-140rpx">晋升职位</view>
|
||||||
<view class="">{{ item.job.name }}</view>
|
<view class="">{{ item.job.name }}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="text-24rpx text-hex-999999 flex">
|
|
||||||
<view class="w-140rpx">申请时间: </view>
|
|
||||||
<view class="">{{ item.created_format }}</view>
|
|
||||||
</view>
|
|
||||||
|
|
||||||
<!-- <template v-if="options?.includes(item.promotion_status)">
|
<!-- <template v-if="options?.includes(item.promotion_status)">
|
||||||
<view class="py-10rpx">
|
<view class="py-10rpx">
|
||||||
|
|
|
||||||
|
|
@ -67,10 +67,6 @@
|
||||||
<view class="w-140rpx">晋升职位</view>
|
<view class="w-140rpx">晋升职位</view>
|
||||||
<view class="">{{ item.check.subject.job.name }}</view>
|
<view class="">{{ item.check.subject.job.name }}</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="text-24rpx text-hex-999999 flex">
|
|
||||||
<view class="w-140rpx">申请时间: </view>
|
|
||||||
<view class="">{{ item.created_format }}</view>
|
|
||||||
</view>
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue