szh-new
sunzehua 2 months ago
parent 94c4a41d6a
commit 961dee56bd

@ -142,7 +142,7 @@ export function formatParams(params = {}, equal: any = [], otherQuery: any = [])
sortConditions: [], sortConditions: [],
}, },
} }
let otherQueryCondition="[]" let otherQueryCondition={}
const conditions = [] as any const conditions = [] as any
for (let key in params) { for (let key in params) {
if (params[key] !== undefined) { if (params[key] !== undefined) {

@ -95,9 +95,6 @@
<a-button type="link" @click="openUser" <a-button type="link" @click="openUser"
><i class="icon-zhuanfa iconfont"></i>任务转交</a-button ><i class="icon-zhuanfa iconfont"></i>任务转交</a-button
> >
<a-button type="link" @click="openCustom"
><i class="icon-liebiao iconfont"></i>任务自定义列</a-button
>
<!-- <a-button type="link" @click="FnPrint"><i class="icon-weibiaoti-- iconfont"></i>打印</a-button> --> <!-- <a-button type="link" @click="FnPrint"><i class="icon-weibiaoti-- iconfont"></i>打印</a-button> -->
<!-- <a-button type="link" @click="FnSendCar"><i class="icon-chezaikucun iconfont"></i>派车</a-button> <!-- <a-button type="link" @click="FnSendCar"><i class="icon-chezaikucun iconfont"></i>派车</a-button>
<a-button type="link" @click="CancelSendCar"><i <a-button type="link" @click="CancelSendCar"><i
@ -197,7 +194,11 @@
> >
</template> </template>
</template> </template>
<template #toolbar> </template> <template #toolbar>
<a-button type="link" @click="openCustom"
><i class=" icon-shuliebiao iconfont"></i>列设置</a-button
>
</template>
<template v-slot:bodyCell="{ column, record }"> <template v-slot:bodyCell="{ column, record }">
<template v-if="column.key === 'iS_EXCEPT'"> <template v-if="column.key === 'iS_EXCEPT'">
<span v-if="record.iS_EXCEPT == 1"></span> <span v-if="record.iS_EXCEPT == 1"></span>
@ -291,7 +292,7 @@
</a-table> </a-table>
</div> </div>
</template> </template>
<span style="cursor: pointer; color: blue">{{ record.recvUserListName }}</span> <span style="cursor: pointer; color: #257afa">{{ record.recvUserListName }}</span>
</a-popover> </a-popover>
</template> </template>
<template v-if="column.key === 'busI_TYPE'"> <template v-if="column.key === 'busI_TYPE'">
@ -462,6 +463,7 @@
setProps({ setProps({
rowSelection: { rowSelection: {
onChange: onSelectChange, onChange: onSelectChange,
fixed:true
}, },
}) })
}) })
@ -845,7 +847,7 @@
return new Promise((resolve) => { return new Promise((resolve) => {
res.data.forEach((item) => { res.data.forEach((item) => {
if (item.recvUserList) { if (item.recvUserList) {
item.recvUserListName = item.recvUserList.map((ite) => ite.recvUserName).join('/') item.recvUserListName = item.recvUserList.map((ite) => ite.recvUserName).join(' / ')
} }
}) })
resolve({ resolve({

Loading…
Cancel
Save