Browse Source

2026-02-28

创建分卷中的固定载具可以删除
master
fengyuan_yang 2 months ago
parent
commit
b2340a353a
  1. 17
      src/views/modules/yieldReport/com_separate_roll.vue

17
src/views/modules/yieldReport/com_separate_roll.vue

@ -25,7 +25,13 @@
<el-col :span="6">
<el-form-item>
<span style="cursor: pointer" slot="label" @click="queryFixedCarrierList"><a>固定载具</a></span>
<el-input v-model="pageData.fixture" readonly style="width: 120px;" placeholder="固定载具"></el-input>
<el-input v-model="pageData.fixture" readonly style="width: 120px;" placeholder="固定载具">
<i v-if="pageData.fixture"
slot="suffix"
class="el-icon-circle-close fixture-clear-btn"
@click="pageData.fixture = ''">
</i>
</el-input>
</el-form-item>
</el-col>
<el-col :span="3">
@ -1670,6 +1676,15 @@ export default {
margin-top: 25px;
}
/* 固定载具清除按钮 */
.fixture-clear-btn {
cursor: pointer;
color: #C0C4CC;
&:hover {
color: #909399;
}
}
/*调节fieldset下的样式*/
.customer-fieldset .customer-item{
margin-top: -15px;

Loading…
Cancel
Save