2025-03-17 15:24:14 +08:00
|
|
|
<template>
|
2025-05-09 17:00:28 +08:00
|
|
|
<el-config-provider :locale="zhCn">
|
|
|
|
|
<el-container class="content">
|
|
|
|
|
<div class="work-area">
|
|
|
|
|
<fieldset class="search-area">
|
|
|
|
|
<el-form ref="searchQueryFormRef" :model="searchQueryFormEntity" :label-position="labelPosition"
|
|
|
|
|
label-width="158px" style="max-width: 100%" status-icon>
|
2025-03-17 15:24:14 +08:00
|
|
|
<div style="display: flex;justify-content: space-between;">
|
2025-05-09 17:00:28 +08:00
|
|
|
<el-row>
|
|
|
|
|
<el-form-item label="锁定状态">
|
|
|
|
|
<el-select-v2 style="width: 196px;" v-model="searchQueryFormEntity.isLock" placeholder="锁定状态"
|
|
|
|
|
:options="addAllOptionOfOptions(lockOptions)"
|
|
|
|
|
@change="search()"></el-select-v2>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="占用状态">
|
|
|
|
|
<el-select-v2 style="width: 196px;" v-model="searchQueryFormEntity.isOccupy" placeholder="占用状态"
|
|
|
|
|
:options="addAllOptionOfOptions(occupyOptions)"
|
|
|
|
|
@change="search()"></el-select-v2>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="库位号">
|
|
|
|
|
<el-input v-model="searchQueryFormEntity.locationId" @keyup.enter="search()" clearable/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="箱号">
|
|
|
|
|
<el-input v-model="searchQueryFormEntity.vehicleId" @keyup.enter="search()" clearable/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-row>
|
|
|
|
|
<div style="align-content: center;">
|
2025-03-17 15:24:14 +08:00
|
|
|
<el-row>
|
2025-05-09 17:00:28 +08:00
|
|
|
<el-button type="primary" class="btn-search" @click="search()">查询</el-button>
|
|
|
|
|
<el-button type="warning" class="btn-search" @click="clearQuery()">清除输入</el-button>
|
2025-03-17 15:24:14 +08:00
|
|
|
</el-row>
|
2025-05-09 17:00:28 +08:00
|
|
|
</div>
|
2025-03-17 15:24:14 +08:00
|
|
|
</div>
|
2025-05-09 17:00:28 +08:00
|
|
|
</el-form>
|
|
|
|
|
</fieldset>
|
|
|
|
|
<div class="table-area">
|
|
|
|
|
<el-table :data="tableData" stripe border v-loading="tableLoading" class="table-class"
|
|
|
|
|
:max-height="maxHeight" highlight-current-row @row-click="getCurrentRow"
|
|
|
|
|
:header-cell-style="{ 'text-align': 'center' }" :cell-style="{ 'text-align': 'center' }"
|
|
|
|
|
@sort-change="handleSortChange">
|
|
|
|
|
<el-table-column width="65px" fixed="left">
|
|
|
|
|
<template v-slot="scope">
|
|
|
|
|
<el-radio :label="scope.row.locationId" v-model="locationId"> </el-radio>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="locationId" label="库位号" fixed="left" min-width="120px" sortable="custom"
|
|
|
|
|
show-overflow-tooltip/>
|
|
|
|
|
<el-table-column prop="vehicleId" label="箱号" min-width="120px" sortable="custom"
|
|
|
|
|
show-overflow-tooltip/>
|
|
|
|
|
<el-table-column prop="isLock" label="锁定状态" min-width="120px" :formatter="isLockFormat"
|
|
|
|
|
sortable="custom"
|
|
|
|
|
show-overflow-tooltip/>
|
|
|
|
|
<el-table-column prop="isOccupy" label="占用状态" :formatter="isOccupyFormat"
|
|
|
|
|
min-width="120px" sortable="custom"
|
|
|
|
|
show-overflow-tooltip/>
|
|
|
|
|
<el-table-column prop="equipmentId" label="设备号" min-width="120px" sortable="custom"
|
|
|
|
|
show-overflow-tooltip/>
|
|
|
|
|
<el-table-column prop="tunnelId" label="巷道号" min-width="120px" sortable="custom"
|
|
|
|
|
show-overflow-tooltip/>
|
|
|
|
|
<el-table-column prop="lRow" label="排" min-width="120px" sortable="custom"
|
|
|
|
|
show-overflow-tooltip/>
|
|
|
|
|
<el-table-column prop="lCol" label="列"
|
|
|
|
|
min-width="120px" sortable="custom" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column prop="lLayer" label="层" min-width="120px" sortable="custom"
|
|
|
|
|
show-overflow-tooltip/>
|
|
|
|
|
<el-table-column prop="lDepth" label="深度" min-width="120px"
|
|
|
|
|
sortable="custom" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column prop="subArea" label="子区域" min-width="120px" sortable="custom"
|
|
|
|
|
show-overflow-tooltip/>
|
|
|
|
|
<!-- <el-table-column fixed="right" label="操作" width="170px">
|
|
|
|
|
<template v-slot="scope">
|
|
|
|
|
<div style="display: inline-block; align-content: center;">
|
|
|
|
|
<el-button type="primary"
|
|
|
|
|
@click="editCurrentRowFormEntity(scope.row)">编辑</el-button>
|
|
|
|
|
</div>
|
2025-03-17 15:24:14 +08:00
|
|
|
</template>
|
2025-05-09 17:00:28 +08:00
|
|
|
</el-table-column> -->
|
|
|
|
|
</el-table>
|
|
|
|
|
<br/>
|
|
|
|
|
<el-pagination v-model:current-page="baseTableQuery.currentPage"
|
|
|
|
|
v-model:page-size="baseTableQuery.pageSize" :page-sizes="[10, 25, 50]" :small="false"
|
|
|
|
|
:disabled="false" :background="false" :default-page-size="10" @size-change="search"
|
|
|
|
|
@current-change="search" layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
:total="baseTableQuery.total"/>
|
|
|
|
|
</div>
|
|
|
|
|
<el-dialog v-model="rowEditFlag" title="工作信息" width="40%" draggable :show-close="false">
|
|
|
|
|
<el-form ref="rowEditFormRef" :model="rowFormEntity" :label-position="labelPosition"
|
|
|
|
|
label-width="100px" style="max-width: 100%" status-icon>
|
|
|
|
|
<el-row :gutter="16">
|
|
|
|
|
<el-col :span="12" :offset="0">
|
|
|
|
|
<el-form-item label="工作编号">
|
|
|
|
|
<el-input v-model="rowFormEntity.workIndex" disabled/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="工单号">
|
|
|
|
|
<el-input v-model="rowFormEntity.workOrder" disabled/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="16">
|
|
|
|
|
<el-col :span="12" :offset="0">
|
|
|
|
|
<el-form-item label="总成号">
|
|
|
|
|
<el-input v-model="rowFormEntity.productId" disabled/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="成品号">
|
|
|
|
|
<el-input v-model="rowFormEntity.singleProductId" disabled/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="16">
|
|
|
|
|
<el-col :span="12" :offset="0">
|
|
|
|
|
<el-form-item label="料盒号">
|
|
|
|
|
<el-input v-model="rowFormEntity.boxNo" disabled/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="料号">
|
|
|
|
|
<el-input v-model="rowFormEntity.goodsId" disabled/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="16">
|
|
|
|
|
<el-col :span="12" :offset="0">
|
|
|
|
|
<el-form-item label="需求数量">
|
|
|
|
|
<el-input-number v-model.number="rowFormEntity.needNum" controls-position="right"
|
|
|
|
|
:min="0" disabled/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="已完成数量">
|
|
|
|
|
<el-input-number v-model.number="rowFormEntity.finishNum" controls-position="right"
|
|
|
|
|
:min="0" :max="rowFormEntity.needNum" clearable/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="16">
|
|
|
|
|
<el-col :span="12" :offset="0">
|
|
|
|
|
<el-form-item label="已分配数量">
|
|
|
|
|
<el-input-number v-model.number="rowFormEntity.distributeNum"
|
|
|
|
|
controls-position="right" :min="0" :max="rowFormEntity.needNum" clearable/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="16">
|
|
|
|
|
<el-col :span="12" :offset="0">
|
|
|
|
|
<el-form-item label="工作状态">
|
|
|
|
|
<el-select-v2 v-model="rowFormEntity.workStatus" placeholder="请选择工作状态"
|
|
|
|
|
:options="workStatusOptions"></el-select-v2>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="缺料状态">
|
|
|
|
|
<el-select-v2 v-model="rowFormEntity.lackStatus" placeholder="请选择缺料状态"
|
|
|
|
|
:options="lackStatusOptions"></el-select-v2>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<template #footer>
|
|
|
|
|
<span class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="rowEditFlag = false">取消</el-button>
|
|
|
|
|
<el-button type="success" @click="submitUpdateRow(rowFormEntity)">
|
|
|
|
|
确定
|
|
|
|
|
</el-button>
|
|
|
|
|
</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</el-container>
|
|
|
|
|
</el-config-provider>
|
2025-03-17 15:24:14 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
import store from '@/store'
|
|
|
|
|
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
|
2025-05-09 17:00:28 +08:00
|
|
|
import {timeFormatter} from '@/utils/formatter.js'
|
|
|
|
|
import {ref, reactive, onMounted, nextTick, onBeforeUnmount} from 'vue'
|
|
|
|
|
import {ElMessage} from 'element-plus'
|
|
|
|
|
import {genTableRequest, addAllOptionOfOptions} from '@/utils/generator.js'
|
|
|
|
|
import {labelPosition} from '@/constant/form.js'
|
|
|
|
|
import {loading} from '@/utils/loading'
|
|
|
|
|
import {queryLocationsByPage} from "@/api/location";
|
|
|
|
|
import {lockOptions, occupyOptions} from "@/constant/options";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 常量定义
|
|
|
|
|
*/
|
|
|
|
|
const STAND_ID = store.getters.getStandId
|
|
|
|
|
const USER_NAME = store.getters.getUserName
|
|
|
|
|
/**
|
|
|
|
|
* 变量定义
|
|
|
|
|
*/
|
|
|
|
|
let maxHeight = ref(window.innerHeight * 0.55)
|
|
|
|
|
let tableLoading = ref(false)
|
|
|
|
|
let tableData = ref([])
|
|
|
|
|
let baseTableQuery = reactive({
|
|
|
|
|
currentPage: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
total: 0,
|
|
|
|
|
sortBy: new Map([['lDepth', true], ['lLayer', true], ['lCol', true], ['lRow', true]]),// 按照成品号顺序排序
|
|
|
|
|
standId: STAND_ID,
|
|
|
|
|
userName: USER_NAME
|
|
|
|
|
})
|
|
|
|
|
let searchQueryFormEntity = reactive({
|
|
|
|
|
locationId: '',
|
|
|
|
|
vehicleId: '',
|
|
|
|
|
isLock: -99,
|
|
|
|
|
isOccupy: -99
|
|
|
|
|
})
|
|
|
|
|
let searchQueryFormRef = ref()
|
|
|
|
|
let rowEditFlag = ref(false)
|
|
|
|
|
let locationId = ''
|
|
|
|
|
let rowEditFormRef = ref()
|
|
|
|
|
let rowFormEntity = reactive({})
|
|
|
|
|
/**
|
|
|
|
|
* 系统方法
|
|
|
|
|
*/
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
window.addEventListener('resize', resizeHeight)
|
|
|
|
|
search()
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
onBeforeUnmount(() => {
|
|
|
|
|
nextTick(() => {
|
|
|
|
|
window.removeEventListener('resize', resizeHeight)
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
const resizeHeight = () => {
|
|
|
|
|
maxHeight.value = window.innerHeight * 0.55
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 自定义方法
|
|
|
|
|
*/
|
|
|
|
|
// 查询
|
|
|
|
|
const search = () => {
|
|
|
|
|
tableLoading.value = true
|
|
|
|
|
let request = genTableRequest(baseTableQuery)
|
|
|
|
|
// 设定查询参数
|
|
|
|
|
request.locationId = searchQueryFormEntity.locationId.trim()
|
|
|
|
|
request.vehicleId = searchQueryFormEntity.vehicleId.trim()
|
|
|
|
|
request.isLock = searchQueryFormEntity.isLock === -99 ? null : searchQueryFormEntity.isLock
|
|
|
|
|
request.isOccupy = searchQueryFormEntity.isOccupy === -99 ? null : searchQueryFormEntity.isOccupy
|
|
|
|
|
queryLocationsByPage(request).then((res) => {
|
|
|
|
|
const response = res.data
|
|
|
|
|
if (response.code === 0) {
|
|
|
|
|
const data = response.data
|
|
|
|
|
if (data != null) {
|
|
|
|
|
tableData.value = data.lists
|
|
|
|
|
baseTableQuery.total = data.total
|
|
|
|
|
} else {
|
|
|
|
|
tableData.value = []
|
|
|
|
|
baseTableQuery.total = 0
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
ElMessage.error(response.message)
|
|
|
|
|
}
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
console.log(err)
|
|
|
|
|
ElMessage.error('查询数据异常。')
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
tableLoading.value = false
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
const clearQuery = () => {
|
|
|
|
|
searchQueryFormEntity.locationId = ''
|
|
|
|
|
searchQueryFormEntity.vehicleId = ''
|
|
|
|
|
}
|
|
|
|
|
const handleSortChange = (data) => {
|
|
|
|
|
if (baseTableQuery.sortBy.has(data.prop)) {
|
|
|
|
|
baseTableQuery.sortBy.delete(data.prop)
|
|
|
|
|
}
|
|
|
|
|
baseTableQuery.sortBy.set(data.prop, data.order.toLowerCase() === 'ascending')
|
|
|
|
|
search()
|
|
|
|
|
}
|
|
|
|
|
const getCurrentRow = (row) => {
|
|
|
|
|
locationId = row.locationId
|
|
|
|
|
}
|
|
|
|
|
const timeFormat = (row, column, cellValue, index) => {
|
|
|
|
|
return timeFormatter(cellValue)
|
|
|
|
|
}
|
|
|
|
|
const isLockFormat = (row, column, cellValue, index) => {
|
|
|
|
|
return cellValue === 1 ? '已锁定' : '未锁定'
|
|
|
|
|
}
|
|
|
|
|
const isOccupyFormat = (row, column, cellValue, index) => {
|
|
|
|
|
return cellValue === 1 ? '占用' : '空闲'
|
|
|
|
|
}
|
|
|
|
|
// 编辑弹框
|
|
|
|
|
const editCurrentRowFormEntity = (row) => {
|
|
|
|
|
// 设置form值
|
|
|
|
|
rowFormEntity.workIndex = row.workIndex
|
|
|
|
|
rowFormEntity.workOrder = row.workOrder
|
|
|
|
|
rowFormEntity.productId = row.productId
|
|
|
|
|
rowFormEntity.singleProductId = row.singleProductId
|
|
|
|
|
rowFormEntity.boxNo = row.boxNo
|
|
|
|
|
rowFormEntity.goodsId = row.goodsId
|
|
|
|
|
rowFormEntity.needNum = row.needNum
|
|
|
|
|
rowFormEntity.distributeNum = row.distributeNum
|
|
|
|
|
rowFormEntity.finishNum = row.finishNum
|
|
|
|
|
rowFormEntity.workStatus = row.workStatus
|
|
|
|
|
rowFormEntity.lackStatus = row.lackStatus
|
|
|
|
|
// 弹出框
|
|
|
|
|
rowEditFlag.value = true
|
|
|
|
|
}
|
|
|
|
|
// 关闭当前缺料工作
|
|
|
|
|
const closeLackWork = (row) => {
|
|
|
|
|
const request = {
|
|
|
|
|
workIndex: row.workIndex,
|
|
|
|
|
standId: STAND_ID,
|
|
|
|
|
userName: USER_NAME
|
|
|
|
|
}
|
|
|
|
|
loading.open('关闭中...')
|
|
|
|
|
closeCurrentWorks(request).then(res => {
|
|
|
|
|
const response = res.data
|
|
|
|
|
if (response.code == 0) {
|
|
|
|
|
ElMessage.success(response.message)
|
|
|
|
|
search()
|
|
|
|
|
} else {
|
|
|
|
|
ElMessage.error(response.message)
|
|
|
|
|
}
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
console.log(err)
|
|
|
|
|
ElMessage.error('请求异常。')
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
loading.close()
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
// 更新当前行数据
|
|
|
|
|
const submitUpdateRow = (rowFormEntity) => {
|
|
|
|
|
const request = {
|
|
|
|
|
workIndex: rowFormEntity.workIndex,
|
|
|
|
|
distributeNum: rowFormEntity.distributeNum,
|
|
|
|
|
finishNum: rowFormEntity.finishNum,
|
|
|
|
|
workStatus: rowFormEntity.workStatus,
|
|
|
|
|
lackStatus: rowFormEntity.lackStatus,
|
|
|
|
|
standId: STAND_ID,
|
|
|
|
|
userName: USER_NAME
|
|
|
|
|
}
|
|
|
|
|
loading.open('更新中...')
|
|
|
|
|
updateKateWorks(request).then(res => {
|
|
|
|
|
if (res.data.code == 0) {
|
|
|
|
|
ElMessage.success('更新数据成功。')
|
|
|
|
|
rowEditFlag.value = false
|
|
|
|
|
search()
|
|
|
|
|
} else {
|
|
|
|
|
ElMessage.error('更新数据失败。')
|
|
|
|
|
}
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
console.log(err)
|
|
|
|
|
ElMessage.error('更新数据异常。')
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
loading.close()
|
|
|
|
|
})
|
2025-03-17 15:24:14 +08:00
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style scoped>
|
2025-05-09 17:00:28 +08:00
|
|
|
.content {
|
|
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.work-area {
|
|
|
|
|
width: 100%;
|
|
|
|
|
/* padding: 5px; */
|
2025-03-17 15:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
2025-05-09 17:00:28 +08:00
|
|
|
.search-area {
|
|
|
|
|
margin: auto;
|
|
|
|
|
min-height: fit-content;
|
|
|
|
|
max-height: 40%;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
min-width: inherit;
|
|
|
|
|
border: solid 1px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
box-shadow: 0px 15px 10px -15px #000;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-area {
|
|
|
|
|
margin: auto;
|
|
|
|
|
min-height: fit-content;
|
|
|
|
|
max-height: 60%;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
min-width: inherit;
|
|
|
|
|
border: solid 1px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
box-shadow: 0px 15px 10px -15px #000;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-form-item {
|
|
|
|
|
margin: 5px 5px 5px 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-form-item .el-input {
|
|
|
|
|
width: 196px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-form-item .el-input-number {
|
|
|
|
|
width: 196px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-form-item .el-select-v2 {
|
|
|
|
|
width: 196px;
|
2025-03-17 15:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-class {
|
2025-05-09 17:00:28 +08:00
|
|
|
margin: 5px 5px 5px 5px;
|
|
|
|
|
width: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-pagination {
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my-autocomplete li {
|
|
|
|
|
width: 196px;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
padding: 7px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.my-autocomplete li .name {
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
2025-03-17 15:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
2025-05-09 17:00:28 +08:00
|
|
|
.my-autocomplete li .addr {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #b4b4b4;
|
2025-03-17 15:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
2025-05-09 17:00:28 +08:00
|
|
|
.my-autocomplete li .highlighted .addr {
|
|
|
|
|
color: #ddd;
|
2025-03-17 15:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
2025-05-09 17:00:28 +08:00
|
|
|
.my-autocomplete li .goods_id {
|
|
|
|
|
color: brown;
|
2025-03-17 15:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
2025-05-09 17:00:28 +08:00
|
|
|
.my-autocomplete li .goods_name {
|
|
|
|
|
color: cornflowerblue;
|
2025-03-17 15:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
2025-05-09 17:00:28 +08:00
|
|
|
.btn-search {
|
|
|
|
|
height: 30px;
|
|
|
|
|
width: 80px;
|
|
|
|
|
margin: auto 5px 5px auto;
|
|
|
|
|
color: black;
|
2025-03-17 15:24:14 +08:00
|
|
|
}
|
|
|
|
|
</style>
|