|
|
|
@ -490,14 +490,14 @@
|
|
|
|
|
identifyingC3: item.difference == '3', |
|
|
|
|
'mx-1': true, |
|
|
|
|
}" effect="dark">{{ |
|
|
|
|
item.difference == '1' |
|
|
|
|
? ' 调查记录' |
|
|
|
|
: item.difference == '2' |
|
|
|
|
? '指定记录' |
|
|
|
|
: item.difference == '3' |
|
|
|
|
? '操作记录' |
|
|
|
|
: '' |
|
|
|
|
}} |
|
|
|
|
item.difference == '1' |
|
|
|
|
? ' 调查记录' |
|
|
|
|
: item.difference == '2' |
|
|
|
|
? '指定记录' |
|
|
|
|
: item.difference == '3' |
|
|
|
|
? '操作记录' |
|
|
|
|
: '' |
|
|
|
|
}} |
|
|
|
|
</el-tag> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
@ -582,10 +582,10 @@
|
|
|
|
|
/> |
|
|
|
|
</el-select> --> |
|
|
|
|
</div> |
|
|
|
|
<!-- <el-button v-if="$route.query.RouteIndexs == '2'" type="primary" class="el_next" |
|
|
|
|
<el-button v-if="$route.query.RouteIndexs == '2'" type="primary" class="el_next" |
|
|
|
|
@click="NextRecord()"> |
|
|
|
|
下一条 |
|
|
|
|
</el-button> --> |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<el-input v-model="Msgtextarea" :rows="5" type="textarea" placeholder="请输入要回复的内容" |
|
|
|
@ -2177,11 +2177,14 @@ const replyMessage = () => {
|
|
|
|
|
}; |
|
|
|
|
// 下一条跳转 |
|
|
|
|
const Nextjump = res => { |
|
|
|
|
console.log(res); |
|
|
|
|
console.log(res); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (res.data) { |
|
|
|
|
|
|
|
|
|
if (res.data.data.records.length) { |
|
|
|
|
let dataInfo = res.data.data.records[0]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const workOrderInfoPath_end = '/aftersales/aftersalesWorkOrderend'; //跳转路径 |
|
|
|
|
const queryParams = { |
|
|
|
|
id: dataInfo.id, //异常工单ID |
|
|
|
@ -2190,18 +2193,8 @@ const Nextjump = res => {
|
|
|
|
|
RouteIndexs: '2', //当前菜单编号 |
|
|
|
|
workOrderStatus: dataInfo.workOrderStatus, //工单状态 |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
if (res.data.data.total > Nextpage.value) { |
|
|
|
|
Nextpage.value = Nextpage.value - 1; |
|
|
|
|
ElMessage({ |
|
|
|
|
type: 'warning', |
|
|
|
|
message: '没有更多数据了', |
|
|
|
|
}) |
|
|
|
|
onLoad() |
|
|
|
|
} else { |
|
|
|
|
$router.push({ path: workOrderInfoPath_end, query: { ...queryParams } }); |
|
|
|
|
onLoad() |
|
|
|
|
} |
|
|
|
|
$router.push({ path: workOrderInfoPath_end, query: { ...queryParams } }); |
|
|
|
|
onLoad() |
|
|
|
|
$useStore.commit('DEL_ONCE_TAG', '/aftersales/aftersalesWorkOrderend'); |
|
|
|
|
} else { |
|
|
|
|
Nextpage.value = Nextpage.value - 1; |
|
|
|
|