|
|
|
@ -0,0 +1,497 @@
|
|
|
|
|
<template>
|
|
|
|
|
<!-- 设备加工人员维护 -->
|
|
|
|
|
<el-container>
|
|
|
|
|
<el-header style="width: 100%">
|
|
|
|
|
<el-form ref="requestForm" :model="request" label-width="80px">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="工序名称:">
|
|
|
|
|
<el-select v-model="request.gx" placeholder="工序名称" clearable>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in gxOptions"
|
|
|
|
|
:key="item.value"
|
|
|
|
|
:value="item.value"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="4">
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="16" style="text-align: right">
|
|
|
|
|
<el-button type="success" @click="toolbarButtonClickEvent('insert')"
|
|
|
|
|
>添加</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" @click="initList()">查询</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="24" style="text-align: right">
|
|
|
|
|
<el-button type="danger" @click="toolbarButtonClickEvent('delete')"
|
|
|
|
|
>删除</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" @click="toolbarButtonClickEvent('save')"
|
|
|
|
|
>保存</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
</el-header>
|
|
|
|
|
<el-container style="padding-top: 10px">
|
|
|
|
|
<el-container>
|
|
|
|
|
<el-main>
|
|
|
|
|
<div class="mytable">
|
|
|
|
|
<vxe-grid
|
|
|
|
|
id="id"
|
|
|
|
|
ref="tableRef"
|
|
|
|
|
border
|
|
|
|
|
resizable
|
|
|
|
|
keep-source
|
|
|
|
|
:height="height"
|
|
|
|
|
:auto-resize="true"
|
|
|
|
|
:align="'center'"
|
|
|
|
|
:columns="tableColumn"
|
|
|
|
|
:data="list"
|
|
|
|
|
:custom-config="{ storage: true }"
|
|
|
|
|
:edit-config="{
|
|
|
|
|
trigger: 'click',
|
|
|
|
|
mode: 'row',
|
|
|
|
|
showStatus: true,
|
|
|
|
|
}"
|
|
|
|
|
:span-method="rowspanMethod"
|
|
|
|
|
:scroll-y="{enabled: false}"
|
|
|
|
|
highlight-hover-row
|
|
|
|
|
@checkbox-all="selectAllEvent"
|
|
|
|
|
@checkbox-change="selectChangeEvent"
|
|
|
|
|
>
|
|
|
|
|
</vxe-grid>
|
|
|
|
|
</div>
|
|
|
|
|
</el-main>
|
|
|
|
|
</el-container>
|
|
|
|
|
</el-container>
|
|
|
|
|
</el-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
getSbjgrys,
|
|
|
|
|
} from "@/api/sjzx/sbryWH";
|
|
|
|
|
export default {
|
|
|
|
|
name: "SbjgryWH",
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
request: {
|
|
|
|
|
gx: "",
|
|
|
|
|
},
|
|
|
|
|
list: [],
|
|
|
|
|
height: "500px",
|
|
|
|
|
tableColumn: [
|
|
|
|
|
{ type: "checkbox", width: "50", align: "center" },
|
|
|
|
|
{ type: "seq", width: "50", title: "序号", align: "center" },
|
|
|
|
|
{ field: 'dlzh', title: '登录账户', width: 160,editRender: { name: "$input"},
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'employeeNumber', title: '职号', width: 160,editRender: { name: "$input"},
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'gx', title: '工序', width: 160,formatter:['dictFormat','PCGX'],
|
|
|
|
|
editRender: {
|
|
|
|
|
name: "$select",
|
|
|
|
|
options: [],
|
|
|
|
|
props: { clearable: true },
|
|
|
|
|
},
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'xjsj', title: '休假时间', width: 160,
|
|
|
|
|
editRender: { name: "$input",
|
|
|
|
|
props: { type: 'date',labelFormat:"yyyy/MM/dd",start:"2024/03/13" ,end:"2024/03/14"}
|
|
|
|
|
},
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'sb', title: '默认设备', width: 160,formatter:['dictFormat','PCGX'],
|
|
|
|
|
editRender: {
|
|
|
|
|
name: "$select",
|
|
|
|
|
options: [],
|
|
|
|
|
props: { clearable: true },
|
|
|
|
|
},
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
{ field: 'zt', title: '状态', width: 160,formatter:['dictFormat','PCGX'],
|
|
|
|
|
editRender: {
|
|
|
|
|
name: "$select",
|
|
|
|
|
options: [],
|
|
|
|
|
props: { clearable: true },
|
|
|
|
|
},
|
|
|
|
|
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
|
|
|
|
filterRender: { name: 'FilterCombination', },
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
gxOptions: [],
|
|
|
|
|
ztOptions: [
|
|
|
|
|
{
|
|
|
|
|
label: '在职',
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: '离职',
|
|
|
|
|
value: 1,
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
departmentOptions: [],
|
|
|
|
|
options: [],
|
|
|
|
|
sbmcOptions: [],
|
|
|
|
|
checkedList: [],
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
window.addEventListener("resize", this.getHeight);
|
|
|
|
|
this.getHeight();
|
|
|
|
|
this.initList();
|
|
|
|
|
this.initgxList();
|
|
|
|
|
// this.emSbjbbZM("QGKW");
|
|
|
|
|
// this.emSbjbbZM("bmbm");
|
|
|
|
|
// this.getBMMCBM();
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
initgxList(){
|
|
|
|
|
const dict=window.localStorage.getItem( 'PCGX');
|
|
|
|
|
const gxList =JSON.parse(dict)
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
const tableRef = this.$refs.tableRef;
|
|
|
|
|
const gx = tableRef.getColumnByField("gx");
|
|
|
|
|
const zt = tableRef.getColumnByField("zt");
|
|
|
|
|
const testList = [];
|
|
|
|
|
for (let i = 0; i < gxList.length; i++) {
|
|
|
|
|
const temp = {
|
|
|
|
|
label: gxList[i].bmsm,
|
|
|
|
|
value: gxList[i].bm,
|
|
|
|
|
};
|
|
|
|
|
testList.push(temp);
|
|
|
|
|
}
|
|
|
|
|
this.gxOptions= testList;
|
|
|
|
|
gx.editRender.options = testList;
|
|
|
|
|
zt.editRender.options = this.ztOptions;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
// 获取列表接口
|
|
|
|
|
initList() {
|
|
|
|
|
getSbjgrys(this.request).then((res) => {
|
|
|
|
|
this.list = res.data;
|
|
|
|
|
this.checkedList = [];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 部门对应设备名称和编号
|
|
|
|
|
getBMMCBM() {
|
|
|
|
|
getBMMCBM().then((res) => {
|
|
|
|
|
if (res.success) {
|
|
|
|
|
this.options = res.data;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 设备信息转码接口
|
|
|
|
|
emSbjbbZM(params) {
|
|
|
|
|
emSbjbbZM({
|
|
|
|
|
bmlb: params,
|
|
|
|
|
}).then((res) => {
|
|
|
|
|
const tableRef = this.$refs.tableRef;
|
|
|
|
|
if (params == "bmbm") {
|
|
|
|
|
// 所属部门
|
|
|
|
|
this.departmentOptions = res.data;
|
|
|
|
|
const sbztText = tableRef.getColumnByField("szcs");
|
|
|
|
|
const testList = [];
|
|
|
|
|
for (let i = 0; i < this.departmentOptions.length; i++) {
|
|
|
|
|
const temp = {
|
|
|
|
|
label: this.departmentOptions[i].bmsm,
|
|
|
|
|
value: this.departmentOptions[i].bm,
|
|
|
|
|
};
|
|
|
|
|
testList.push(temp);
|
|
|
|
|
}
|
|
|
|
|
sbztText.editRender.options = testList;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 监听选择所属部门
|
|
|
|
|
changeSzcs(row, id) {
|
|
|
|
|
console.log(row, id);
|
|
|
|
|
if (row.row.szcs) {
|
|
|
|
|
row.row.sbmcDisabled = false;
|
|
|
|
|
row.row.sbmc = "";
|
|
|
|
|
row.row.sbbh = "";
|
|
|
|
|
this.sbmcOptions = [];
|
|
|
|
|
const testList = [];
|
|
|
|
|
console.log(this.options, "======");
|
|
|
|
|
for (let i = 0; i < this.options[id.value].length; i++) {
|
|
|
|
|
const temp = {
|
|
|
|
|
label: this.options[id.value][i].sbmc,
|
|
|
|
|
value: this.options[id.value][i].sbbh,
|
|
|
|
|
};
|
|
|
|
|
testList.push(temp);
|
|
|
|
|
}
|
|
|
|
|
this.sbmcOptions = testList;
|
|
|
|
|
} else {
|
|
|
|
|
row.row.sbmcDisabled = true;
|
|
|
|
|
row.row.sbmc = "";
|
|
|
|
|
row.row.sbbh = "";
|
|
|
|
|
this.sbmcOptions = [];
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 监听选择设备名称
|
|
|
|
|
changeSbmc(event, row) {
|
|
|
|
|
if (row.sbmc) {
|
|
|
|
|
row.sbbh = event.value;
|
|
|
|
|
let arr = this.sbmcOptions.filter((item, index) => {
|
|
|
|
|
if (item.value == event.value) {
|
|
|
|
|
return item;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
row.sbmc = arr[0].label;
|
|
|
|
|
} else {
|
|
|
|
|
row.sbbh = "";
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// 全选
|
|
|
|
|
selectAllEvent() {
|
|
|
|
|
const records = this.$refs.tableRef.getCheckboxRecords();
|
|
|
|
|
this.checkedList = records;
|
|
|
|
|
},
|
|
|
|
|
// 单选
|
|
|
|
|
selectChangeEvent() {
|
|
|
|
|
const records = this.$refs.tableRef.getCheckboxRecords();
|
|
|
|
|
this.checkedList = records;
|
|
|
|
|
},
|
|
|
|
|
// 操作
|
|
|
|
|
async toolbarButtonClickEvent(code) {
|
|
|
|
|
const { insertRecords, removeRecords, updateRecords } =
|
|
|
|
|
this.$refs.tableRef.getRecordset();
|
|
|
|
|
switch (code) {
|
|
|
|
|
case "insert":
|
|
|
|
|
this.$refs.tableRef.insertAt({ sbmcDisabled: true }, -1);
|
|
|
|
|
break;
|
|
|
|
|
case "delete":
|
|
|
|
|
if (this.checkedList.length > 0) {
|
|
|
|
|
this.$refs.tableRef.removeCheckboxRow();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.warning("请选择数据!");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case "save":
|
|
|
|
|
const valid = this.$refs.tableRef;
|
|
|
|
|
let flag = false;
|
|
|
|
|
if (valid) {
|
|
|
|
|
const errMap = await valid.validate(true);
|
|
|
|
|
if (errMap) {
|
|
|
|
|
return false;
|
|
|
|
|
} else {
|
|
|
|
|
// 新增
|
|
|
|
|
if (insertRecords.length !== 0) {
|
|
|
|
|
for(let i = 0; i < insertRecords.length; i++){
|
|
|
|
|
if(insertRecords[i].tzbh === undefined || insertRecords[i].tzbh === "" || insertRecords[i].tzbh === null){
|
|
|
|
|
flag = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if(insertRecords[i].zl === undefined || insertRecords[i].zl === "" || insertRecords[i].zl === null){
|
|
|
|
|
flag = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if(insertRecords[i].jgsx === undefined || insertRecords[i].jgsx === "" || insertRecords[i].jgsx === null){
|
|
|
|
|
flag = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if(insertRecords[i].gx === undefined || insertRecords[i].gx === "" || insertRecords[i].gx === null){
|
|
|
|
|
flag = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if(insertRecords[i].jldw === undefined || insertRecords[i].jldw === "" || insertRecords[i].jldw === null){
|
|
|
|
|
flag = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if(insertRecords[i].degs === undefined || insertRecords[i].degs === "" || insertRecords[i].degs === null){
|
|
|
|
|
flag = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(flag){
|
|
|
|
|
this.$message.error({message:"新增内容未达到可保存标准,请把必要信息空白补全。"})
|
|
|
|
|
}else{
|
|
|
|
|
save(insertRecords).then((res) => {
|
|
|
|
|
if (res.success) {
|
|
|
|
|
this.list = this.list.concat(insertRecords);
|
|
|
|
|
const xTable = this.$refs.tableRef;
|
|
|
|
|
xTable.loadData(this.initList());
|
|
|
|
|
this.$message({
|
|
|
|
|
message: "保存成功!",
|
|
|
|
|
type: "success",
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// 修改
|
|
|
|
|
if (updateRecords.length !== 0) {
|
|
|
|
|
for(let i = 0; i < insertRecords.length; i++){
|
|
|
|
|
if(insertRecords[i].tzbh === undefined || insertRecords[i].tzbh === "" || insertRecords[i].tzbh === null){
|
|
|
|
|
flag = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if(insertRecords[i].zl === undefined || insertRecords[i].zl === "" || insertRecords[i].zl === null){
|
|
|
|
|
flag = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if(insertRecords[i].jgsx === undefined || insertRecords[i].jgsx === "" || insertRecords[i].jgsx === null){
|
|
|
|
|
flag = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if(insertRecords[i].gx === undefined || insertRecords[i].gx === "" || insertRecords[i].gx === null){
|
|
|
|
|
flag = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if(insertRecords[i].jldw === undefined || insertRecords[i].jldw === "" || insertRecords[i].jldw === null){
|
|
|
|
|
flag = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if(insertRecords[i].degs === undefined || insertRecords[i].degs === "" || insertRecords[i].degs === null){
|
|
|
|
|
flag = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(flag){
|
|
|
|
|
this.$message.error({message:"保存内容未达到可保存标准,请把必要信息空白补全。"})
|
|
|
|
|
}else{
|
|
|
|
|
update(updateRecords).then((res) => {
|
|
|
|
|
if (res.success) {
|
|
|
|
|
const xTable = this.$refs.tableRef;
|
|
|
|
|
xTable.loadData(this.initList());
|
|
|
|
|
this.$message({ message: "保存成功!", type: "success" });
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// 删除
|
|
|
|
|
if (removeRecords.length !== 0) {
|
|
|
|
|
delete1(removeRecords).then((res) => {
|
|
|
|
|
if (res.success) {
|
|
|
|
|
for (let i = 0; i < this.list.length; i++) {
|
|
|
|
|
if (removeRecords.indexOf(this.list[i]) !== -1) {
|
|
|
|
|
this.list.splice(i, 1);
|
|
|
|
|
i--;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const xTable = this.$refs.tableRef;
|
|
|
|
|
xTable.loadData(this.initList());
|
|
|
|
|
this.$message({ message: "保存成功!", type: "success" });
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if (removeRecords.length !== 0) {
|
|
|
|
|
// this.$message(
|
|
|
|
|
// `新增 ${insertRecords.length} 条,删除 ${removeRecords.length} 条,更新 ${updateRecords.length} 条`
|
|
|
|
|
// );
|
|
|
|
|
// } else {
|
|
|
|
|
// const valid = this.$refs.tableRef;
|
|
|
|
|
// if (valid) {
|
|
|
|
|
// const errMap = await valid.validate(true);
|
|
|
|
|
// if (errMap) {
|
|
|
|
|
// return false;
|
|
|
|
|
// } else {
|
|
|
|
|
// this.$message(
|
|
|
|
|
// `新增 ${insertRecords.length} 条,删除 ${removeRecords.length} 条,更新 ${updateRecords.length} 条`
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
//合并行
|
|
|
|
|
rowspanMethod({row, _rowIndex, column, visibleData}) {
|
|
|
|
|
//不要忘记在vxe-grid上配置 :scroll-y="{enabled: false}" 防止下拉时样式变化
|
|
|
|
|
// 需要合并的列字段
|
|
|
|
|
let fields = ['tzbh'];// 需要合并的列
|
|
|
|
|
const cellValue = row[column.property];// 合并行的相同的唯一标识
|
|
|
|
|
if (cellValue && fields.includes(column.property)) {
|
|
|
|
|
const prevRow = visibleData[_rowIndex - 1];
|
|
|
|
|
let nextRow = visibleData[_rowIndex + 1];
|
|
|
|
|
if (prevRow && prevRow[column.property] === cellValue) {
|
|
|
|
|
// 如果和第一行数据一样,就删除
|
|
|
|
|
return {rowspan: 0, colspan: 0};
|
|
|
|
|
} else {
|
|
|
|
|
// 获取有机会数据是一样的
|
|
|
|
|
let countRowspan = 1;
|
|
|
|
|
while (nextRow && nextRow[column.property] === cellValue) {
|
|
|
|
|
nextRow = visibleData[++countRowspan + _rowIndex];
|
|
|
|
|
}
|
|
|
|
|
if (countRowspan > 1) {
|
|
|
|
|
return {rowspan: countRowspan, colspan: 1};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
getHeight() {
|
|
|
|
|
this.height = window.innerHeight - 160;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.el-header {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 5px 0;
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
|
|
|
|
.el-container {
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
.el-main {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
.el-col {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
.el-aside {
|
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
.el-container {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
.el-row {
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
}
|
|
|
|
|
.el-row:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
.tableStyles {
|
|
|
|
|
background: #0a76a4;
|
|
|
|
|
}
|
|
|
|
|
.my-dropdown {
|
|
|
|
|
width: 450px;
|
|
|
|
|
height: 250px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #dcdfe6;
|
|
|
|
|
box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .mytable .vxe-input {
|
|
|
|
|
display: flex !important;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .el-form-item {
|
|
|
|
|
margin-bottom: 0px !important;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .el-input {
|
|
|
|
|
width: auto !important;
|
|
|
|
|
}
|
|
|
|
|
</style>
|