|
|
|
@ -162,7 +162,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script name="basetyre" setup>
|
|
|
|
|
import {addBaseCar, delBaseCar, getBaseCar, listBaseCar, updateBaseCar, getCarQueueList} from "@/api/basecar/car";
|
|
|
|
|
import {addBaseCar, delBaseCar, getBaseCar, listBaseCar, updateBaseCar, getCarQueueList,getBindList} from "@/api/basecar/car";
|
|
|
|
|
|
|
|
|
|
import {useI18n} from 'vue-i18n';
|
|
|
|
|
import Cookies from "js-cookie";
|
|
|
|
@ -278,13 +278,12 @@ function handleSelectionChange(selection) {
|
|
|
|
|
// 绑定接收器单选
|
|
|
|
|
const bindHandleSelectionChange = (selection) => {
|
|
|
|
|
bindValue.value = selection
|
|
|
|
|
console.log(bindValue.value)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 搜索接收器
|
|
|
|
|
const bindSearch = () => {
|
|
|
|
|
console.log(bindInput.value)
|
|
|
|
|
listBaseCar(queryParams.value).then(response => {
|
|
|
|
|
let params = {id:bindInput.value}
|
|
|
|
|
getBindList(params).then(response => {
|
|
|
|
|
bindList.value = response.rows;
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|