|
|
|
@ -115,16 +115,24 @@
|
|
|
|
|
<el-button type="primary" icon="User" v-if="ButtonPermissions.applyArbitration" |
|
|
|
|
>客服介入</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="primary" icon="EditPen" v-if="ButtonPermissions.DingTalkNumber" |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
icon="EditPen" |
|
|
|
|
v-if="ButtonPermissions.DingTalkNumber" |
|
|
|
|
@click="DingTalk" |
|
|
|
|
>钉钉号填写</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="primary" icon="Stamp" v-if="ButtonPermissions.batchFinish" |
|
|
|
|
<!-- <el-button type="primary" icon="Stamp" v-if="ButtonPermissions.batchFinish" |
|
|
|
|
>批量完结</el-button |
|
|
|
|
> |
|
|
|
|
> --> |
|
|
|
|
<el-button type="primary" icon="Stamp" v-if="ButtonPermissions.ArbitrationDetermination" |
|
|
|
|
>批量完结审核</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="primary" icon="Coin" v-if="ButtonPermissions.Financial_accounting" |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
icon="Coin" |
|
|
|
|
v-if="ButtonPermissions.Financial_accounting" |
|
|
|
|
@click="Financialfillingbtn" |
|
|
|
|
>财务入账</el-button |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
@ -440,6 +448,76 @@
|
|
|
|
|
<el-button type="primary" @click="LocalExport"> 本地导出 </el-button> |
|
|
|
|
</el-tooltip> |
|
|
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
|
<!-- 钉钉号填写 --> |
|
|
|
|
<el-dialog v-model="DingTalkfilling.dialogDingTalk" title="钉钉号填写" width="30%"> |
|
|
|
|
<div |
|
|
|
|
class="el_DingTalk" |
|
|
|
|
v-loading="DingTalkfilling.loading" |
|
|
|
|
element-loading-text="Loading..." |
|
|
|
|
> |
|
|
|
|
<el-form :model="DingTalkfilling" label-width="120px"> |
|
|
|
|
<el-form-item label="钉钉流程号"> |
|
|
|
|
<el-input v-model="DingTalkfilling.processNumber" placeholder="请填写钉钉号" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="审核人"> |
|
|
|
|
<el-input v-model="DingTalkfilling.reviewedBy" placeholder="请填写审核人" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="审核时间"> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="DingTalkfilling.auditTime" |
|
|
|
|
type="datetime" |
|
|
|
|
format="YYYY-MM-DD" |
|
|
|
|
value-format="YYYY-MM-DD HH:mm:ss" |
|
|
|
|
placeholder="请选择审核时间" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
</div> |
|
|
|
|
<template #footer> |
|
|
|
|
<span class="dialog-footer"> |
|
|
|
|
<el-button @click="DingTalkfilling.dialogDingTalk = false">关闭</el-button> |
|
|
|
|
<el-button type="primary" @click="DingTalkSubmit" :disabled="DingTalkfilling.loading"> |
|
|
|
|
确认 |
|
|
|
|
</el-button> |
|
|
|
|
</span> |
|
|
|
|
</template> |
|
|
|
|
</el-dialog> |
|
|
|
|
<!-- 财务入账弹窗 --> |
|
|
|
|
<el-dialog v-model="FinancialFrom.loadingFinancial" title="财务入账" width="30%"> |
|
|
|
|
<div |
|
|
|
|
class="el_DingTalk" |
|
|
|
|
v-loading="FinancialFrom.loading" |
|
|
|
|
element-loading-text="正在处理中..." |
|
|
|
|
> |
|
|
|
|
<el-form :model="FinancialFrom" label-width="120px"> |
|
|
|
|
<el-form-item label="操作人"> |
|
|
|
|
<el-input v-model="FinancialFrom.operator" placeholder="请填写操作人" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="财务入账时间"> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="FinancialFrom.entryTime" |
|
|
|
|
type="datetime" |
|
|
|
|
format="YYYY-MM-DD" |
|
|
|
|
value-format="YYYY-MM-DD HH:mm:ss" |
|
|
|
|
placeholder="请选择财务入账时间" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
</div> |
|
|
|
|
<template #footer> |
|
|
|
|
<span class="dialog-footer"> |
|
|
|
|
<el-button @click="FinancialFrom.loadingFinancial = false">取消</el-button> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
@click="FinancialfillingSubmit" |
|
|
|
|
:disabled="FinancialFrom.loading" |
|
|
|
|
> |
|
|
|
|
确认 |
|
|
|
|
</el-button> |
|
|
|
|
</span> |
|
|
|
|
</template> |
|
|
|
|
</el-dialog> |
|
|
|
|
</basic-container> |
|
|
|
|
<!-- 列表配置显示 --> |
|
|
|
|
<template v-for="columnList in columnListNames" :key="columnList"> |
|
|
|
@ -582,6 +660,16 @@ const ExportObjects = ref({
|
|
|
|
|
tcTableexport: false, //本地导出 |
|
|
|
|
ExportSelection: false, //导出选择弹窗 |
|
|
|
|
}); |
|
|
|
|
// 钉钉号 |
|
|
|
|
const DingTalkfilling = ref({ |
|
|
|
|
dialogDingTalk: false, |
|
|
|
|
loading: false, |
|
|
|
|
}); |
|
|
|
|
// 财务入账 |
|
|
|
|
const FinancialFrom = ref({ |
|
|
|
|
loadingFinancial: false, |
|
|
|
|
loading: false, |
|
|
|
|
}); |
|
|
|
|
// 多行搜索 |
|
|
|
|
const Searchboxpop = ref({ |
|
|
|
|
SearchboxpopUpwindowtitle: '', //标题 |
|
|
|
@ -787,7 +875,9 @@ const ButtonPermissions = computed(() => {
|
|
|
|
|
return { |
|
|
|
|
add: false, //新增按钮 |
|
|
|
|
batchReject: false, //批量打回 |
|
|
|
|
assignment: UserPermissions.value != Useridentity.Warehouse_customer_service, //工单指派 |
|
|
|
|
assignment: |
|
|
|
|
UserPermissions.value == Useridentity.Headquarters_Manager || |
|
|
|
|
UserPermissions.value == Useridentity.Headquarters_customer_service, //工单指派 |
|
|
|
|
applyArbitration: UserPermissions.value == Useridentity.Warehouse_customer_service, //客服介入 |
|
|
|
|
DingTalkNumber: false, //钉钉号填写 |
|
|
|
|
batchFinish: false, //批量完结 |
|
|
|
@ -804,7 +894,9 @@ const ButtonPermissions = computed(() => {
|
|
|
|
|
return { |
|
|
|
|
add: false, //新增按钮 |
|
|
|
|
batchReject: UserPermissions.value == Useridentity.Headquarters_customer_service, //批量打回 |
|
|
|
|
assignment: UserPermissions.value != Useridentity.Warehouse_customer_service, //工单指派 |
|
|
|
|
assignment: |
|
|
|
|
UserPermissions.value == Useridentity.Headquarters_Manager || |
|
|
|
|
UserPermissions.value == Useridentity.Headquarters_customer_service, //工单指派 |
|
|
|
|
applyArbitration: false, //客服介入 |
|
|
|
|
DingTalkNumber: false, //钉钉号填 |
|
|
|
|
batchFinish: false, //批量完结 |
|
|
|
@ -861,7 +953,9 @@ const ButtonPermissions = computed(() => {
|
|
|
|
|
DingTalkNumber: false, //钉钉号填写 |
|
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
|
ArbitrationDetermination: UserPermissions.value != Useridentity.Warehouse_customer_service, //批量总裁完结确定 |
|
|
|
|
ArbitrationDetermination: |
|
|
|
|
UserPermissions.value == Useridentity.Headquarters_Manager || |
|
|
|
|
UserPermissions.value == Useridentity.Headquarters_customer_service, //批量总裁完结确定 |
|
|
|
|
Financial_accounting: false, //财务入账 |
|
|
|
|
Result_review: false, //结果审核(总部审核处理结果) |
|
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
@ -875,11 +969,15 @@ const ButtonPermissions = computed(() => {
|
|
|
|
|
assignment: false, //工单指派 |
|
|
|
|
applyArbitration: false, //客服介入 |
|
|
|
|
batchFinish: false, //批量完结 |
|
|
|
|
DingTalkNumber: UserPermissions.value != Useridentity.Warehouse_customer_service, //钉钉号填写, //钉钉号填写 |
|
|
|
|
DingTalkNumber: |
|
|
|
|
UserPermissions.value == Useridentity.Headquarters_customer_service || |
|
|
|
|
UserPermissions.value == Useridentity.Headquarters_Manager, //钉钉号填写, //钉钉号填写 |
|
|
|
|
Batchdetermination: false, //批量确定 |
|
|
|
|
ManagerConfirmed: false, //处理完毕下面的客服经理批量确定 |
|
|
|
|
ArbitrationDetermination: false, //批量完结确定 |
|
|
|
|
Financial_accounting: UserPermissions.value != Useridentity.Warehouse_customer_service, //财务入账 |
|
|
|
|
Financial_accounting: |
|
|
|
|
UserPermissions.value == Useridentity.Headquarters_Manager || |
|
|
|
|
UserPermissions.value == Useridentity.Headquarters_customer_service, //财务入账 |
|
|
|
|
defaultassignments: false, //默认指派 |
|
|
|
|
Result_review: false, //结果审核(总部审核处理结果) |
|
|
|
|
export_Report: true, //导出报表 |
|
|
|
@ -1903,6 +2001,99 @@ const CancelWorkOrderAppeal = row => {
|
|
|
|
|
}) |
|
|
|
|
.catch(() => {}); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @description: [钉钉号填写] - 选择数据后,点击钉钉号填写按钮,出现弹窗 |
|
|
|
|
* @return {void} |
|
|
|
|
*/ |
|
|
|
|
const DingTalk = () => { |
|
|
|
|
if (!details.selectionList.length) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '请勾选数据', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
// 开启钉钉号填写弹窗 |
|
|
|
|
DingTalkfilling.value.dialogDingTalk = true; |
|
|
|
|
}; |
|
|
|
|
/** |
|
|
|
|
* @description: [钉钉号填写确认] |
|
|
|
|
* @return {void} |
|
|
|
|
*/ |
|
|
|
|
const DingTalkSubmit = async () => { |
|
|
|
|
const { processNumber, reviewedBy, auditTime } = DingTalkfilling.value; |
|
|
|
|
try { |
|
|
|
|
// 启动加载 |
|
|
|
|
DingTalkfilling.value.loading = true; |
|
|
|
|
|
|
|
|
|
// 构建数据对象 |
|
|
|
|
const data = { |
|
|
|
|
processNumber, // 钉钉号 |
|
|
|
|
reviewedBy, // 审核人 |
|
|
|
|
auditTime, // 审核时间 |
|
|
|
|
assignList: details.selectionList.map(item => item.id), // ID列表 |
|
|
|
|
}; |
|
|
|
|
let res = await $_updateWorkList(data); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
// 关闭弹窗和加载 |
|
|
|
|
DingTalkfilling.value.dialogDingTalk = false; |
|
|
|
|
// 更新菜单数据 |
|
|
|
|
updateMenuAndData(); |
|
|
|
|
} |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log(error); |
|
|
|
|
} finally { |
|
|
|
|
DingTalkfilling.value.loading = false; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
/** |
|
|
|
|
* @description: [财务入账] |
|
|
|
|
* @return {void} |
|
|
|
|
*/ |
|
|
|
|
const Financialfillingbtn = () => { |
|
|
|
|
if (!details.selectionList.length) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '请勾选数据', |
|
|
|
|
type: 'warning', |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
// 开启钉钉号填写弹窗 |
|
|
|
|
FinancialFrom.value.loadingFinancial = true; |
|
|
|
|
}; |
|
|
|
|
/** |
|
|
|
|
* @description: [财务入账确定] |
|
|
|
|
* @return {void} |
|
|
|
|
*/ |
|
|
|
|
const FinancialfillingSubmit = async () => { |
|
|
|
|
const { operator, entryTime } = FinancialFrom.value; |
|
|
|
|
try { |
|
|
|
|
FinancialFrom.value.dialog = true; //加载 |
|
|
|
|
const data = { |
|
|
|
|
operator, |
|
|
|
|
entryTime, |
|
|
|
|
ids: details.selectionList.map(item => item.id).join(','), |
|
|
|
|
}; |
|
|
|
|
let res = await $_updateFinanceTime(data); |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
FinancialFrom.value.loadingFinancial = false; |
|
|
|
|
// 更新菜单数据 |
|
|
|
|
updateMenuAndData(); |
|
|
|
|
} |
|
|
|
|
} catch (error) { |
|
|
|
|
} finally { |
|
|
|
|
FinancialFrom.value.loading = false; //关闭加载 |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
/** |
|
|
|
|
* @description: [全部]常工单号,跳转到详情信息页面 |
|
|
|
|
* @param {Object} row - 当前行数据 |
|
|
|
@ -2823,4 +3014,19 @@ const ProcessedExported = async dataID => {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 钉钉号 |
|
|
|
|
:deep(.el_DingTalk) { |
|
|
|
|
.el-form-item { |
|
|
|
|
flex-direction: column; |
|
|
|
|
.el-form-item__label { |
|
|
|
|
justify-content: flex-start; |
|
|
|
|
} |
|
|
|
|
.el-form-item__content { |
|
|
|
|
.el-input { |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|