|
|
@ -25,7 +25,13 @@ |
|
|
<el-col :span="6"> |
|
|
<el-col :span="6"> |
|
|
<el-form-item> |
|
|
<el-form-item> |
|
|
<span style="cursor: pointer" slot="label" @click="queryFixedCarrierList"><a>固定载具</a></span> |
|
|
<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-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="3"> |
|
|
<el-col :span="3"> |
|
|
@ -1670,6 +1676,15 @@ export default { |
|
|
margin-top: 25px; |
|
|
margin-top: 25px; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* 固定载具清除按钮 */ |
|
|
|
|
|
.fixture-clear-btn { |
|
|
|
|
|
cursor: pointer; |
|
|
|
|
|
color: #C0C4CC; |
|
|
|
|
|
&:hover { |
|
|
|
|
|
color: #909399; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
/*调节fieldset下的样式*/ |
|
|
/*调节fieldset下的样式*/ |
|
|
.customer-fieldset .customer-item{ |
|
|
.customer-fieldset .customer-item{ |
|
|
margin-top: -15px; |
|
|
margin-top: -15px; |
|
|
|