commit
ab4b8f7c90
@ -0,0 +1,4 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export function getYlList(data) {return request({url: '/mpYlxxp/getYlList', method: 'post', data})}
|
||||
|
@ -0,0 +1,552 @@
|
||||
<template>
|
||||
<el-container>
|
||||
|
||||
<vxe-modal v-model="dialogVisible" width="1200" title="增加">
|
||||
|
||||
<template #default>
|
||||
<el-header style="width: 100%; height: 80px;font-size: 12px">
|
||||
|
||||
<el-form :inline="true" label-width="60px" label-position="left">
|
||||
<el-row>
|
||||
|
||||
<el-col :span="22">
|
||||
|
||||
<el-form-item label="船号:">
|
||||
<vxe-pulldown ref="xDown4" transfer >
|
||||
<template #default>
|
||||
<vxe-input
|
||||
v-model="queryParam.dcch"
|
||||
placeholder="船号"
|
||||
style="height: 28px;
|
||||
line-height: 28px; width: 140px;"
|
||||
suffix-icon="vxe-icon--search"
|
||||
@keyup="keyupEvent4"
|
||||
@focus="focusEvent4"
|
||||
/>
|
||||
</template>
|
||||
<template #dropdown>
|
||||
<div class="my-dropdown mytable " style="width: 250px">
|
||||
<vxe-grid
|
||||
highlight-hover-row
|
||||
height="auto"
|
||||
|
||||
:data="projectData"
|
||||
:columns="projectColumns"
|
||||
@cell-click="cellClickEvent"
|
||||
show-overflow
|
||||
>
|
||||
<template #wgbsEdit="{ row}">
|
||||
<vxe-checkbox v-model="row.wgbs" checked-value="Y" unchecked-value="N" disabled ></vxe-checkbox>
|
||||
</template>
|
||||
</vxe-grid>
|
||||
</div>
|
||||
</template>
|
||||
</vxe-pulldown>
|
||||
|
||||
|
||||
</el-form-item>
|
||||
<el-form-item label="批量:">
|
||||
<el-input v-model="queryParam.pl" type="search" placeholder="批量" ></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="分段:">
|
||||
<el-input v-model="queryParam.fd" type="search" placeholder="分段" ></el-input>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="">
|
||||
<el-checkbox v-model="queryParam.qbs" >曲标识</el-checkbox>
|
||||
</el-form-item>
|
||||
|
||||
|
||||
|
||||
|
||||
</el-col>
|
||||
<el-col :span="2">
|
||||
<el-form-item style="float: right" >
|
||||
<el-button type="success" @click="initList">查询</el-button>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
|
||||
<el-col :span="22">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</el-col>
|
||||
<el-col :span="2">
|
||||
<el-form-item style="float: right" >
|
||||
<el-button type="success" @click="qdClick">确定</el-button>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
</el-header>
|
||||
|
||||
|
||||
<div class="mytable">
|
||||
<vxe-grid
|
||||
id="id"
|
||||
ref="xGrid"
|
||||
border
|
||||
resizable
|
||||
height="500px"
|
||||
keep-source
|
||||
:auto-resize="true"
|
||||
:columns="tableColumn"
|
||||
:data="tableData"
|
||||
highlight-hover-row
|
||||
highlight-current-row
|
||||
show-overflow
|
||||
:header-cell-style="{'text-align':'center'}"
|
||||
:cell-style="{'text-align':'center'}"
|
||||
>
|
||||
|
||||
|
||||
</vxe-grid>
|
||||
</div>
|
||||
</template>
|
||||
</vxe-modal>
|
||||
</el-container>
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import XEUtils from 'xe-utils'
|
||||
|
||||
import {getZHBM, getBMBM} from "@/utils/rpkj";
|
||||
import {mapGetters} from 'vuex'
|
||||
import {getPgdBase, getQgPgd, insertQmList, selectQmByQgAndJh} from "@/api/jhzxgl/pgd";
|
||||
|
||||
export default {
|
||||
name: 'GxsqAdd',
|
||||
//props: ['flag'],
|
||||
data() {
|
||||
return {
|
||||
dialogVisible: false,
|
||||
|
||||
tableData: [],
|
||||
tableColumn: [
|
||||
{ type: 'checkbox', width: 40 },
|
||||
{ type: 'seq', width: 40, title: '序号' },
|
||||
|
||||
|
||||
{ field: 'lczbh', title: '船号', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'lpl', title: '批量', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'lfd', title: '分段', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'lzl', title: '组立', width: 100,formatter: ['dictFormat','ZLLB'],
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
{ field: 'ltlth', title: '套料图号', width: 100,formatter: ['dictFormat','ZLLB'],
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
{ field: 'lptblx', title: '配套表类型', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
{ field: 'ljbh', title: '零件编号', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
{ field: 'lljgg', title: '零件规格', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
{ field: 'lljcz', title: '零件材质', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
{ field: 'lwpfl', title: '物品分类', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
{ field: 'ljldw', title: '计量单位', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
{ field: 'lsl', title: '数量', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
{ field: 'lqfxqrqxz', title: '前方需求小组期', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'lqfxqrqdz', title: '前方需求大组期', width: 100,formatter: ['dictFormat','CLlQ'],
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
{ field: 'gylx', title: '工艺类型', width: 100,formatter: ['dictFormat','CLlQ'],
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'kw', title: '跨位', width: 100,formatter: ['dictFormat','QGKW'],
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'tlth', title: '套料图号', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'wpgg', title: '规格', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'wpcz', title: '材质', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'wpzl', title: '重量', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'qgjhrq', title: '切割计划期', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'qfxqrqxz', title: '前方需求小组期', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'qfxqrqdz', title: '前方需求大组期', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'pwjhwgrq', title: '抛丸计划完工期', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'qgfzry', title: '切割负责人', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'hxsbbh', title: '划线设备编号', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'hxcd', title: '划线长度', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'hxkccd', title: '划线空程长度', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'qgsbbh', title: '切割设备编号', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'qgcd', title: '切割长度', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'qgkccd', title: '切割空程长度', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'hxry', title: '划线人员', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'hxksrq', title: '划线开始时间', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'hxjsrq', title: '划线结束时间', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'qgry', title: '切割人员', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'qgksrq', title: '切割开始时间', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'qgjsrq', title: '切割结束时间', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'zt', title: '状态', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
{ field: 'fkry', title: '反馈人', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'fkrq', title: '反馈日期', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'fkyy', title: '反馈原因', width: 100,editRender: { name: 'input' },
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'bzry', title: '编制人', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'bzrq', title: '编制日期', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'xfry', title: '下发人', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
{ field: 'xfrq', title: '下发日期', width: 100,
|
||||
filters: [{ data: { checks: [], sVal: '', sMenu: '', fType1: '', fVal1: '', fMode: 'and', fType2: '', fVal2: '' } }],
|
||||
filterRender: { name: 'FilterCombination', },
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
],
|
||||
|
||||
queryParam: {
|
||||
dcch:'',
|
||||
pl:'',
|
||||
fd:'',
|
||||
qbs:true,
|
||||
pkbs:false,
|
||||
dmbs:false,
|
||||
lx:'q',
|
||||
},
|
||||
projectData:[],
|
||||
projectData1:[],
|
||||
projectColumns: [
|
||||
{field: 'cbbm', title: '船号',width: 110},
|
||||
{ field: 'wgbs', title: '完工标识', width: 80,
|
||||
slots:{
|
||||
default: 'wgbsEdit'
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
dictData: [],
|
||||
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapGetters([
|
||||
'name',
|
||||
'bmbm'
|
||||
])
|
||||
},
|
||||
created() {
|
||||
console.log(111)
|
||||
this.initBase();
|
||||
|
||||
},
|
||||
methods: {
|
||||
cellClickEvent({row}) {
|
||||
this.queryParam.dcch = row.cbbm
|
||||
this.$refs.xDown4.hidePanel()
|
||||
},
|
||||
focusEvent4() {
|
||||
this.$refs.xDown4.showPanel()
|
||||
},
|
||||
keyupEvent4() {
|
||||
|
||||
|
||||
if (this.queryParam.dcch) {
|
||||
this.projectData = this.projectData1.filter(row => row.cbbm.indexOf(this.queryParam.dcch.toUpperCase()) > -1)
|
||||
} else {
|
||||
this.projectData = this.projectData1.slice(0)
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
|
||||
selectChange(row) {
|
||||
this.$refs.xGrid.clearActived()// 清除单元格激活状态
|
||||
this.$refs.xGrid.setActiveCell(row.row, row.column.property)// 设置单元格为激活状态
|
||||
},
|
||||
|
||||
show() {
|
||||
this.dialogVisible = true
|
||||
// this.baseSeacrh()
|
||||
},
|
||||
qdClick(){
|
||||
let obj = this.$refs.xGrid.getCheckboxRecords()
|
||||
if (obj.length === 0) {
|
||||
return
|
||||
}
|
||||
insertQmList({'list':obj,'lx':'q'}).then(res=>{
|
||||
this.initList()
|
||||
})
|
||||
},
|
||||
|
||||
plChange() {
|
||||
let obj = this.$refs.xGrid.getCheckboxRecords()
|
||||
if (obj.length === 0) {
|
||||
return
|
||||
}
|
||||
console.log(qcObjc)
|
||||
if (qcObjc.length != 0) {
|
||||
insertqcInspection(qcObjc).then(res => {
|
||||
if (res.success) {
|
||||
|
||||
for (let i = 0; i < this.tableData.length; i++) {
|
||||
if (obj.indexOf(this.tableData[i]) !== -1) {
|
||||
this.tableData.splice(i, 1)
|
||||
i--
|
||||
}
|
||||
}
|
||||
|
||||
// this.tableData= this.tableData.filter((x) => !removeRecords.some((item) => x.id === item.id));
|
||||
const xTable = this.$refs.xGrid
|
||||
console.log(this.tableData)
|
||||
xTable.loadData(this.tableData)
|
||||
this.$emit('callback', obj, this.inputListAdd)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
},
|
||||
initBase(){
|
||||
getPgdBase({}).then(res=>{
|
||||
this.dictData = res.data
|
||||
this.projectData=res.data.cbbm
|
||||
this.projectData1=res.data.cbbm
|
||||
})
|
||||
},
|
||||
initList() {
|
||||
if (this.queryParam.dcch === '') {
|
||||
this.$message.warning('选择船只编号')
|
||||
return
|
||||
}
|
||||
selectQmByQgAndJh(this.queryParam).then((res) => {
|
||||
this.list = res.data
|
||||
if (this.$refs.xGrid) {
|
||||
this.$refs.xGrid.loadData(this.list)
|
||||
console.log(this.list)
|
||||
}
|
||||
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped >
|
||||
|
||||
.el-header{margin:0;padding: 5px;height:auto;
|
||||
.el-input{
|
||||
width: 140px;
|
||||
}
|
||||
.el-select{
|
||||
width: 140px;
|
||||
}
|
||||
|
||||
}
|
||||
.el-container{padding: 0;margin:0;}
|
||||
.el-main{padding: 0;}
|
||||
.el-col{padding: 0;height: 32px;}
|
||||
.el-aside{background: #fff;padding: 0}
|
||||
.el-container{padding: 0}
|
||||
.el-row {}
|
||||
.el-row:last-child {margin-bottom: 0; }
|
||||
|
||||
.tableStyles{
|
||||
background: #0a76a4;
|
||||
}
|
||||
|
||||
.my-dropdown {
|
||||
width: 400px;
|
||||
height: 400px;
|
||||
background-color: #fff;
|
||||
border: 1px solid #dcdfe6;
|
||||
box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
|
||||
font-size: 12px;
|
||||
|
||||
}
|
||||
.mytable1{
|
||||
|
||||
}
|
||||
.borderClass{
|
||||
|
||||
}
|
||||
.vxe-input {
|
||||
display: inline-block !important;
|
||||
position: relative !important;
|
||||
width: auto;
|
||||
}
|
||||
.el-input {
|
||||
display: inline-block !important;
|
||||
position: relative !important;
|
||||
width: auto;
|
||||
}
|
||||
.keyword-lighten {
|
||||
color: #000;
|
||||
background-color: #FFFF00;
|
||||
}
|
||||
|
||||
.vxe-textarea--inner {
|
||||
line-height: inherit;
|
||||
}
|
||||
.el-form-item__label-wrap {
|
||||
margin-left: 0px !important;
|
||||
float: left;
|
||||
}
|
||||
.fontClass{
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue