You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.0 KiB
83 lines
2.0 KiB
<template> |
|
<el-card class="box-card" v-loading="loading" element-loading-text="正在执行中..."> |
|
<div class="content"> |
|
<div> |
|
<h2 style="text-align: center">数据同步功能</h2> |
|
<h5 style="text-align: center"> |
|
输入订单自编号进行数据同步,多个订单自编号使用英文逗号进行分隔 |
|
</h5> |
|
<h5></h5> |
|
</div> |
|
<div class="el_btn"> |
|
<el-input v-model="input" placeholder="请输入订单自编号,多个订单自编号用英文,逗号隔开"> |
|
<template #append> |
|
<el-button type="primary" @click="synchronization">点击同步</el-button> |
|
</template> |
|
</el-input> |
|
</div> |
|
</div> |
|
</el-card> |
|
</template> |
|
|
|
<script setup> |
|
import { $_syncOrder } from '@/api/aftersales/aftersalesWorkOrder'; |
|
import { ref } from 'vue'; |
|
import { ElMessage } from 'element-plus'; |
|
const loading = ref(false); |
|
const input = ref(''); // |
|
// 检测是否输入了中文逗号 |
|
function checkInput(input) { |
|
const regex = /,/; |
|
return regex.test(input); |
|
} |
|
|
|
// 点击同步 |
|
const synchronization = () => { |
|
if (!input.value) { |
|
ElMessage({ |
|
message: '请输入订单自编号', |
|
type: 'warning', |
|
}); |
|
return; |
|
} |
|
const isInput = checkInput(input.value); |
|
console.log(isInput); // false |
|
if (isInput) { |
|
ElMessage({ |
|
message: '参数中不可携带中文逗号', |
|
type: 'warning', |
|
}); |
|
return; |
|
} |
|
loading.value = true; //开启加载 |
|
let data = { |
|
orderCodes: input.value, |
|
}; |
|
console.log(data, '处理好的参数'); |
|
$_syncOrder(data).then(res => { |
|
loading.value = false; //关闭加载 |
|
if (res.data.code) { |
|
ElMessage({ |
|
message: res.data.msg, |
|
type: 'success', |
|
}); |
|
} |
|
}); |
|
}; |
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
.content { |
|
width: 100%; |
|
display: flex; |
|
flex-direction: column; |
|
justify-content: center; |
|
align-items: center; |
|
} |
|
.el-card { |
|
height: 100%; |
|
} |
|
.el_btn { |
|
width: 40%; |
|
} |
|
</style>
|
|
|