Compare commits
2 Commits
1cc3beea7a
...
b91aa221db
Author | SHA1 | Date |
---|---|---|
JIAL | b91aa221db | |
JIAL | 9b6d083888 |
120
logs/JIAL-ss.log
120
logs/JIAL-ss.log
File diff suppressed because one or more lines are too long
|
@ -706,6 +706,10 @@
|
|||
// 其他逻辑
|
||||
},
|
||||
|
||||
calculatedData() {
|
||||
|
||||
},
|
||||
|
||||
},
|
||||
})
|
||||
</script>
|
||||
|
|
|
@ -706,6 +706,10 @@
|
|||
// 其他逻辑...
|
||||
},
|
||||
|
||||
calculatedData() {
|
||||
|
||||
},
|
||||
|
||||
},
|
||||
})
|
||||
</script>
|
||||
|
|
|
@ -0,0 +1,152 @@
|
|||
.container {
|
||||
|
||||
}
|
||||
|
||||
.center-container {
|
||||
text-align: center;
|
||||
margin: auto;
|
||||
padding: 10px;
|
||||
min-width: 1100px;
|
||||
}
|
||||
|
||||
.el-input {
|
||||
|
||||
}
|
||||
|
||||
/**找到表头那一行,然后把里面的复选框隐藏掉**/
|
||||
.regionTable .el-table__header-wrapper .el-table__header .el-checkbox {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.el-input__inner {
|
||||
height: 30px;
|
||||
/*font-family: Roboto, serif;*/
|
||||
font-size: 12px;
|
||||
line-height: 14px;
|
||||
}
|
||||
/**宽度修改 */
|
||||
.el-select {
|
||||
width: 129px;
|
||||
}
|
||||
/* 下面设置右侧按钮居中 */
|
||||
.el-input__suffix {
|
||||
top: 6px;
|
||||
}
|
||||
.el-input__icon {
|
||||
line-height: inherit;
|
||||
}
|
||||
.el-input__suffix-inner {
|
||||
margin-top: 10px;
|
||||
|
||||
}
|
||||
|
||||
|
||||
.el-form-item__label {
|
||||
min-width: 100px;
|
||||
text-align: justify;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.el-input-group{
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.el-input-group__append {
|
||||
width: 0px;
|
||||
|
||||
}
|
||||
|
||||
.el-form-item__label::after {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
|
||||
}
|
||||
|
||||
.form-box .el-form-item {
|
||||
margin: 0px 15px 0px 15px;
|
||||
|
||||
}
|
||||
|
||||
.regionDialogTable .el-dialog__header{
|
||||
padding-bottom: 0px;
|
||||
|
||||
}
|
||||
.regionDialogTable .el-dialog__body{
|
||||
padding-top: 0px;
|
||||
|
||||
}
|
||||
|
||||
.materialDialogTable .el-dialog__header{
|
||||
padding-bottom: 0px;
|
||||
|
||||
}
|
||||
.materialDialogTable .el-dialog__body{
|
||||
padding-top: 0px;
|
||||
|
||||
}
|
||||
|
||||
.inventoryDialogTable .el-dialog__header{
|
||||
padding-bottom: 0px;
|
||||
|
||||
}
|
||||
.inventoryDialogTable .el-dialog__body{
|
||||
padding-top: 0px;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.materialDialogTable .el-table__header-wrapper .el-table__header .el-checkbox {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.el-table .cell {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
|
||||
.el-col {
|
||||
height: 42px;
|
||||
}
|
||||
|
||||
.button-box .el-button {
|
||||
margin: 10px 80px 10px 0px;
|
||||
}
|
||||
|
||||
.form-box {
|
||||
background-color: #f0f0f0; /* 浅灰色背景 */
|
||||
border-radius: 10px; /* 可以根据需要调整边框圆角 */
|
||||
backdrop-filter: blur(10px); /* 调整模糊度 */
|
||||
-webkit-backdrop-filter: blur(10px); /* 兼容性处理,适用于一些WebKit浏览器 */
|
||||
}
|
||||
|
||||
.button-box {
|
||||
margin: 10px 0px 10px 0px;
|
||||
background-color: #f0f0f0; /* 浅灰色背景 */
|
||||
border-radius: 10px; /* 可以根据需要调整边框圆角 */
|
||||
backdrop-filter: blur(10px); /* 调整模糊度 */
|
||||
-webkit-backdrop-filter: blur(10px); /* 兼容性处理,适用于一些WebKit浏览器 */
|
||||
}
|
||||
|
||||
.table-box {
|
||||
|
||||
}
|
||||
|
||||
.selected-item {
|
||||
background-color: #f0f0f0;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: 5px;
|
||||
padding: 5px;
|
||||
margin-bottom: 5px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.remove-btn {
|
||||
padding: 0px;
|
||||
color: red;
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
const queryRegionListByName = (params) => {
|
||||
return $axios({
|
||||
url: '/zmquotation/regionList',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
const queryMaterialListByParam = (params) => {
|
||||
return $axios({
|
||||
url: '/zmquotation/materialList',
|
||||
method: 'post',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
const queryInventoryList = () => {
|
||||
return $axios({
|
||||
url: '/zmquotation/inventoryList',
|
||||
method: 'post',
|
||||
})
|
||||
}
|
|
@ -706,6 +706,10 @@
|
|||
// 其他逻辑
|
||||
},
|
||||
|
||||
calculatedData() {
|
||||
|
||||
},
|
||||
|
||||
},
|
||||
})
|
||||
</script>
|
||||
|
|
|
@ -706,6 +706,10 @@
|
|||
// 其他逻辑...
|
||||
},
|
||||
|
||||
calculatedData() {
|
||||
|
||||
},
|
||||
|
||||
},
|
||||
})
|
||||
</script>
|
||||
|
|
Loading…
Reference in New Issue