2024-08-14 22:35:32 +08:00
|
|
|
|
<template>
|
2024-08-18 10:29:38 +08:00
|
|
|
|
<div style="margin-bottom: 10px; height: 100%; padding-left: 1%; padding-right: 1%;">
|
2024-08-14 22:35:32 +08:00
|
|
|
|
<el-config-provider :locale="zhCn">
|
2024-08-18 10:29:38 +08:00
|
|
|
|
<div style="display: flex;justify-content: space-between;">
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
<el-input v-model="workOrderQuery" style="width: 256px; margin-right: 10px;" placeholder="工单"
|
|
|
|
|
|
:suffix-icon="Search" />
|
|
|
|
|
|
<el-input v-model="goodsIdQuery" style="width: 256px; margin-right: 10px;" placeholder="料号"
|
|
|
|
|
|
:suffix-icon="Search" />
|
|
|
|
|
|
<el-input v-model="smallBoxQuery" style="width: 256px; margin-right: 10px;" placeholder="小工位"
|
|
|
|
|
|
:suffix-icon="Search" />
|
|
|
|
|
|
<el-button type="primary" @click="search()">搜索</el-button>
|
|
|
|
|
|
<el-button type="warning" @click="reset()">重置</el-button>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
<el-button style="background-color: #00CED1; color: #000;"
|
|
|
|
|
|
@click="openUploadDialog()">导入</el-button>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</div>
|
2024-08-14 22:35:32 +08:00
|
|
|
|
<br />
|
2024-08-18 10:29:38 +08:00
|
|
|
|
<el-table :data="ordersList" stripe border v-loading="loading" class="table-class" highlight-current-row
|
|
|
|
|
|
max-height="650px" @row-click="getCurrentRow" :header-cell-style="{ 'text-align': 'center' }"
|
2024-08-14 22:35:32 +08:00
|
|
|
|
:cell-style="{ 'text-align': 'center' }">
|
|
|
|
|
|
<el-table-column width="65px" fixed="left">
|
|
|
|
|
|
<template v-slot="scope">
|
2024-08-18 10:29:38 +08:00
|
|
|
|
<el-radio :label="scope.row.orderId" v-model="orderId"> </el-radio>
|
2024-08-14 22:35:32 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2024-08-18 10:29:38 +08:00
|
|
|
|
<el-table-column prop="orderId" label="id" fixed="left" min-width="120px" show-overflow-tooltip />
|
|
|
|
|
|
<el-table-column prop="workOrder" label="工单" fixed="left" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="goodsId" label="料号" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="supplyArea" label="小工位" fixed="left" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="item" label="Item" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="description" label="描述" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="sLoc" label="SLoc" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="type" label="Type" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="originStatus" label="Status" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="sortString" label="SortStrng" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="requirementQuantity" label="需求数量" sortable min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="goodsUnit" label="单位" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="orderStatus" label="状态" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="lackQuantity" label="缺少数量" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="pickedQuantity" label="已拣数量" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="finishTime" label="完成时间" :formatter="timeFormat" min-width="120px" />
|
|
|
|
|
|
<el-table-column prop="userName" label="操作人员" min-width="120px" />
|
|
|
|
|
|
<el-table-column fixed="right" label="操作" width="240px">
|
2024-08-14 22:35:32 +08:00
|
|
|
|
<template v-slot="scope">
|
2024-08-18 10:29:38 +08:00
|
|
|
|
<el-button plain type="primary" @click="editCurrentRowOrders(scope.row)">编辑</el-button>
|
|
|
|
|
|
<el-button plain type="danger" @click="deleteCurrentRowOrders(scope.row)">删除</el-button>
|
2024-08-14 22:35:32 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
<br />
|
|
|
|
|
|
<el-pagination v-model:current-page="currentPage" v-model:page-size="pageSize" :page-sizes="[10, 25, 50]"
|
|
|
|
|
|
:small="false" :disabled="false" :background="false" :default-page-size="10"
|
|
|
|
|
|
layout="total, sizes, prev, pager, next, jumper" :total="total" @size-change="search"
|
|
|
|
|
|
@current-change="search" />
|
2024-08-18 10:29:38 +08:00
|
|
|
|
<el-dialog v-model="dialogVisible" title="DBS信息" width="40%" draggable :show-close="false">
|
|
|
|
|
|
<div
|
|
|
|
|
|
style="max-width: 100%; max-height: 500px; overflow: auto; display: flex; justify-content: center;">
|
|
|
|
|
|
<el-form ref="ordersFormRef" :model="ordersFormEntity" :label-position="labelPosition"
|
|
|
|
|
|
label-width="100px" style="width: 95%;" :rules="rules" status-icon>
|
|
|
|
|
|
<el-row :gutter="16">
|
|
|
|
|
|
<el-col :span="12" :offset="0">
|
|
|
|
|
|
<el-form-item label="id" prop="orderId">
|
|
|
|
|
|
<el-input v-model="ordersFormEntity.orderId" disabled />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
|
<el-form-item label="工单" prop="workOrder">
|
|
|
|
|
|
<el-input v-model="ordersFormEntity.workOrder" disabled />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
<el-row :gutter="16">
|
|
|
|
|
|
<el-col :span="12" :offset="0">
|
|
|
|
|
|
<el-form-item label="小工位" prop="supplyArea">
|
|
|
|
|
|
<el-input v-model="ordersFormEntity.supplyArea" disabled />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
|
<el-form-item label="料号" prop="goodsId">
|
|
|
|
|
|
<el-input v-model="ordersFormEntity.goodsId" disabled />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
<el-row :gutter="16">
|
|
|
|
|
|
<el-col :span="12" :offset="0">
|
|
|
|
|
|
<el-form-item label="需求数量" prop="requirementQuantity">
|
|
|
|
|
|
<el-input-number v-model.number="ordersFormEntity.requirementQuantity"
|
|
|
|
|
|
controls-position="right" :min="0" clearable />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
|
<el-form-item label="状态" prop="orderStatus">
|
|
|
|
|
|
<el-input-number v-model.number="ordersFormEntity.orderStatus"
|
|
|
|
|
|
controls-position="right" :min="0" :max="4" clearable />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
<el-row :gutter="16">
|
|
|
|
|
|
<el-col :span="12" :offset="0">
|
|
|
|
|
|
<el-form-item label="缺少数量" prop="lackQuantity">
|
|
|
|
|
|
<el-input-number v-model.number="ordersFormEntity.lackQuantity"
|
|
|
|
|
|
controls-position="right" :min="0" :max="ordersFormEntity.requirementQuantity" clearable />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
|
<el-form-item label="已拣数量" prop="pickedQuantity">
|
|
|
|
|
|
<el-input-number v-model.number="ordersFormEntity.pickedQuantity"
|
|
|
|
|
|
controls-position="right" :min="0" :max="ordersFormEntity.requirementQuantity" clearable />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
</div>
|
2024-08-14 22:35:32 +08:00
|
|
|
|
<template #footer>
|
|
|
|
|
|
<span class="dialog-footer">
|
|
|
|
|
|
<el-button @click="dialogVisible = false">取消</el-button>
|
2024-08-18 10:29:38 +08:00
|
|
|
|
<el-button type="primary" @click="submitOrdersInfo(ordersFormEntity)">
|
2024-08-14 22:35:32 +08:00
|
|
|
|
确定
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-dialog>
|
2024-08-18 10:29:38 +08:00
|
|
|
|
<el-dialog v-model="uploadDialogVisible" title="工单" width="40%" draggable :show-close="true">
|
|
|
|
|
|
<fieldset class="title-area">
|
|
|
|
|
|
<legend>上次更新</legend>
|
|
|
|
|
|
<div style="padding: 5px;">
|
|
|
|
|
|
<div style="display: flex; margin-bottom: 10px;">
|
|
|
|
|
|
<div style="display: flex; width: 100%;">
|
|
|
|
|
|
<div style="width: 30%; align-content: center;">时间:</div>
|
|
|
|
|
|
<el-input v-model="uploadRecord.uploadTime" readonly />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div style="display: flex; width: 100%; margin-left: 5px;">
|
|
|
|
|
|
<div style="width: 30%; align-content: center;">人员:</div>
|
|
|
|
|
|
<el-input v-model="uploadRecord.uploadUser" readonly />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div style="display: flex; width: 100%;">
|
|
|
|
|
|
<div style="width: 13%; align-content: center;">文件名:</div>
|
|
|
|
|
|
<el-input type="textarea" :rows="1" v-model="uploadRecord.fileName" :maxlength="-1"
|
|
|
|
|
|
:show-word-limit="false" :autosize="{ minRows: 1, maxRows: 4 }" readonly>
|
|
|
|
|
|
</el-input>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</fieldset>
|
|
|
|
|
|
<fieldset class="title-area">
|
|
|
|
|
|
<legend>再次更新</legend>
|
|
|
|
|
|
<UploadExcelOrders></UploadExcelOrders>
|
|
|
|
|
|
</fieldset>
|
|
|
|
|
|
</el-dialog>
|
2024-08-14 22:35:32 +08:00
|
|
|
|
</el-config-provider>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2024-08-18 10:29:38 +08:00
|
|
|
|
import store from '@/store'
|
|
|
|
|
|
import { getOrders, deleteOrders, updateOrders } from '@/api/kateWork.js'
|
2024-08-14 22:35:32 +08:00
|
|
|
|
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
|
2024-08-18 10:29:38 +08:00
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'
|
2024-08-14 22:35:32 +08:00
|
|
|
|
import { ref, reactive } from 'vue'
|
2024-08-18 10:29:38 +08:00
|
|
|
|
import { dateFormatter, timeFormatter } from '@/utils/formatter.js'
|
|
|
|
|
|
import UploadExcelOrders from '@/excel/UploadExcelOrders.vue'
|
|
|
|
|
|
import { queryUploadRecord } from '@/api/excel.js'
|
|
|
|
|
|
import { Search } from '@element-plus/icons-vue'
|
2024-08-14 22:35:32 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
<script>
|
|
|
|
|
|
export default {
|
2024-08-18 10:29:38 +08:00
|
|
|
|
name: 'kateOrders',
|
2024-08-14 22:35:32 +08:00
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
2024-08-18 10:29:38 +08:00
|
|
|
|
ordersList: [],
|
2024-08-14 22:35:32 +08:00
|
|
|
|
currentPage: 1,
|
2024-08-18 10:29:38 +08:00
|
|
|
|
uploadRecord: reactive({
|
|
|
|
|
|
fileName: '',
|
|
|
|
|
|
uploadTime: '',
|
|
|
|
|
|
uploadUser: ''
|
|
|
|
|
|
}),
|
2024-08-14 22:35:32 +08:00
|
|
|
|
pageSize: 10,
|
|
|
|
|
|
total: 0,
|
2024-08-18 10:29:38 +08:00
|
|
|
|
workOrderQuery: '',
|
|
|
|
|
|
goodsIdQuery: '',
|
|
|
|
|
|
smallBoxQuery: '',
|
2024-08-14 22:35:32 +08:00
|
|
|
|
loading: true,
|
|
|
|
|
|
dialogVisible: false,
|
2024-08-18 10:29:38 +08:00
|
|
|
|
uploadDialogVisible: false,
|
|
|
|
|
|
orderId: '',
|
|
|
|
|
|
ordersFormEntity: reactive({}),
|
2024-08-14 22:35:32 +08:00
|
|
|
|
labelPosition: 'top',
|
2024-08-18 10:29:38 +08:00
|
|
|
|
ordersFormRef: ref(),
|
|
|
|
|
|
rules: reactive({})
|
2024-08-14 22:35:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
mounted() {
|
|
|
|
|
|
this.search()
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
search() {
|
|
|
|
|
|
this.loading = true
|
2024-08-18 10:29:38 +08:00
|
|
|
|
const request = {
|
2024-08-14 22:35:32 +08:00
|
|
|
|
pageNo: this.currentPage,
|
|
|
|
|
|
pageSize: this.pageSize,
|
2024-08-18 10:29:38 +08:00
|
|
|
|
workOrder: this.workOrderQuery.trim(),
|
|
|
|
|
|
goodsId: this.goodsIdQuery.trim(),
|
|
|
|
|
|
supplyArea: this.smallBoxQuery.trim(),
|
2024-08-14 22:35:32 +08:00
|
|
|
|
userName: store.getters.getUserName
|
|
|
|
|
|
}
|
2024-08-18 10:29:38 +08:00
|
|
|
|
getOrders(request).then(res => {
|
2024-08-14 22:35:32 +08:00
|
|
|
|
const tableResponse = res.data
|
|
|
|
|
|
if (tableResponse.code == 0) {
|
2024-08-18 10:29:38 +08:00
|
|
|
|
this.ordersList = tableResponse.returnData.lists
|
2024-08-14 22:35:32 +08:00
|
|
|
|
this.total = tableResponse.returnData.total
|
|
|
|
|
|
} else {
|
|
|
|
|
|
ElMessage.error(tableResponse.message)
|
|
|
|
|
|
}
|
|
|
|
|
|
}).catch(err => {
|
2024-08-18 10:29:38 +08:00
|
|
|
|
ElMessage.error('查询工单错误' + err.message)
|
2024-08-14 22:35:32 +08:00
|
|
|
|
})
|
|
|
|
|
|
this.loading = false
|
|
|
|
|
|
},
|
2024-08-18 10:29:38 +08:00
|
|
|
|
dateFormat: (row, column, cellValue, index) => {
|
|
|
|
|
|
return dateFormatter(cellValue)
|
2024-08-14 22:35:32 +08:00
|
|
|
|
},
|
|
|
|
|
|
timeFormat: (row, column, cellValue, index) => {
|
|
|
|
|
|
return timeFormatter(cellValue)
|
|
|
|
|
|
},
|
|
|
|
|
|
reset() {
|
2024-08-18 10:29:38 +08:00
|
|
|
|
this.workOrderQuery = ''
|
|
|
|
|
|
this.goodsIdQuery = ''
|
|
|
|
|
|
this.smallBoxQuery = ''
|
2024-08-14 22:35:32 +08:00
|
|
|
|
this.search()
|
|
|
|
|
|
},
|
2024-08-18 10:29:38 +08:00
|
|
|
|
editCurrentRowOrders(row) {
|
|
|
|
|
|
this.orderId = row.orderId
|
|
|
|
|
|
this.ordersFormEntity = {
|
|
|
|
|
|
orderId: row.orderId,
|
|
|
|
|
|
workOrder: row.workOrder,
|
|
|
|
|
|
goodsId: row.goodsId,
|
|
|
|
|
|
supplyArea: row.supplyArea,
|
|
|
|
|
|
requirementQuantity: row.requirementQuantity,
|
|
|
|
|
|
orderStatus: row.orderStatus,
|
|
|
|
|
|
lackQuantity: row.lackQuantity,
|
|
|
|
|
|
pickedQuantity: row.pickedQuantity
|
2024-08-14 22:35:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
this.dialogVisible = true
|
|
|
|
|
|
},
|
2024-08-18 10:29:38 +08:00
|
|
|
|
deleteCurrentRowOrders(row) {
|
|
|
|
|
|
this.orderId = row.orderId
|
|
|
|
|
|
ElMessageBox.confirm(
|
|
|
|
|
|
'该操作会删除选择的工单数据。\n是否继续',
|
|
|
|
|
|
'警告',
|
|
|
|
|
|
{
|
|
|
|
|
|
confirmButtonText: '确认',
|
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
|
type: 'warning',
|
|
|
|
|
|
}
|
|
|
|
|
|
).then(() => {
|
|
|
|
|
|
const params = {
|
|
|
|
|
|
orderId: this.orderId,
|
|
|
|
|
|
userName: store.getters.getUserName
|
|
|
|
|
|
}
|
|
|
|
|
|
deleteOrders(params).then(res => {
|
|
|
|
|
|
if (res.data.code == 0) {
|
|
|
|
|
|
ElMessage({
|
|
|
|
|
|
message: '删除工单信息成功',
|
|
|
|
|
|
type: 'success',
|
|
|
|
|
|
})
|
|
|
|
|
|
this.search()
|
|
|
|
|
|
} else {
|
|
|
|
|
|
ElMessage.error(res.data.message)
|
|
|
|
|
|
}
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
console.log(err)
|
|
|
|
|
|
ElMessage.error('删除工单信息成功')
|
|
|
|
|
|
})
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
ElMessage({
|
|
|
|
|
|
type: 'info',
|
|
|
|
|
|
message: '操作取消',
|
|
|
|
|
|
})
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
submitOrdersInfo(formData) {
|
|
|
|
|
|
const params = {
|
|
|
|
|
|
orderId: formData.orderId,
|
|
|
|
|
|
workOrder: formData.workOrder,
|
|
|
|
|
|
goodsId: formData.goodsId,
|
|
|
|
|
|
supplyArea: formData.supplyArea,
|
|
|
|
|
|
requirementQuantity: formData.requirementQuantity,
|
|
|
|
|
|
orderStatus: formData.orderStatus,
|
|
|
|
|
|
lackQuantity: formData.lackQuantity,
|
|
|
|
|
|
pickedQuantity: formData.pickedQuantity,
|
2024-08-14 22:35:32 +08:00
|
|
|
|
userName: store.getters.getUserName
|
|
|
|
|
|
}
|
2024-08-18 10:29:38 +08:00
|
|
|
|
updateOrders(params).then(res => {
|
2024-08-14 22:35:32 +08:00
|
|
|
|
if (res.data.code == 0) {
|
|
|
|
|
|
this.dialogVisible = false
|
|
|
|
|
|
ElMessage({
|
2024-08-18 10:29:38 +08:00
|
|
|
|
message: '更新工单成功。',
|
2024-08-14 22:35:32 +08:00
|
|
|
|
type: 'success',
|
|
|
|
|
|
})
|
|
|
|
|
|
this.search()
|
|
|
|
|
|
} else {
|
|
|
|
|
|
ElMessage.error(res.data.message)
|
|
|
|
|
|
}
|
|
|
|
|
|
}).catch(err => {
|
2024-08-18 10:29:38 +08:00
|
|
|
|
ElMessage.error('更新工单失败。')
|
2024-08-14 22:35:32 +08:00
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
getCurrentRow(row) {
|
2024-08-18 10:29:38 +08:00
|
|
|
|
this.dbsId = row.dbsId
|
2024-08-14 22:35:32 +08:00
|
|
|
|
},
|
2024-08-18 10:29:38 +08:00
|
|
|
|
openUploadDialog() {
|
|
|
|
|
|
// 请求上传记录
|
|
|
|
|
|
const param = {
|
|
|
|
|
|
userName: store.getters.getUserName,
|
|
|
|
|
|
fileDescription: 'ORDERS',
|
|
|
|
|
|
isAsc: false,
|
|
|
|
|
|
sortBy: 'upload_time'
|
2024-08-14 22:35:32 +08:00
|
|
|
|
}
|
2024-08-18 10:29:38 +08:00
|
|
|
|
queryUploadRecord(param).then(res => {
|
|
|
|
|
|
if (res.data.code == 0) {
|
|
|
|
|
|
if (res.data.returnData.total > 0) {
|
|
|
|
|
|
this.uploadRecord = res.data.returnData.lists[0]
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.uploadRecord = reactive({
|
|
|
|
|
|
fileName: '',
|
|
|
|
|
|
uploadTime: '',
|
|
|
|
|
|
uploadUser: ''
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.uploadRecord = reactive({
|
|
|
|
|
|
fileName: '',
|
|
|
|
|
|
uploadTime: '',
|
|
|
|
|
|
uploadUser: ''
|
2024-08-14 22:35:32 +08:00
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
}).catch(err => {
|
2024-08-18 10:29:38 +08:00
|
|
|
|
console.log(err)
|
|
|
|
|
|
ElMessage.error('发生异常')
|
2024-08-14 22:35:32 +08:00
|
|
|
|
})
|
2024-08-18 10:29:38 +08:00
|
|
|
|
this.uploadDialogVisible = true
|
2024-08-14 22:35:32 +08:00
|
|
|
|
},
|
2024-08-18 10:29:38 +08:00
|
|
|
|
},
|
2024-08-14 22:35:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
.el-pagination {
|
|
|
|
|
|
padding-left: 5px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-row .el-button {
|
|
|
|
|
|
width: 72px;
|
|
|
|
|
|
margin-left: 0px;
|
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.table-class {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-row .el-form-item {
|
|
|
|
|
|
width: 10% inherit;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-row .el-form-item .el-select-v2 {
|
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-row .el-form-item .el-input-number {
|
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-row .el-form-item .el-button {
|
|
|
|
|
|
margin: auto;
|
|
|
|
|
|
}
|
2024-08-18 10:29:38 +08:00
|
|
|
|
|
|
|
|
|
|
.title-area {
|
|
|
|
|
|
display: flex;
|
2024-09-02 13:46:13 +08:00
|
|
|
|
/* min-height: 10%; */
|
2024-08-18 10:29:38 +08:00
|
|
|
|
max-height: max-content;
|
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
min-width: inherit;
|
|
|
|
|
|
border: solid 1px;
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
box-shadow: 0px 15px 10px -15px #000;
|
|
|
|
|
|
overflow: auto;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
padding: 10px;
|
|
|
|
|
|
}
|
2024-08-14 22:35:32 +08:00
|
|
|
|
</style>
|