|
@@ -2,23 +2,25 @@
|
|
|
<div class='input-dialog'>
|
|
|
<div
|
|
|
@click='show'
|
|
|
- style='color: #c3c7cb;cursor: pointer;position:absolute;right:32px;z-index:9999'
|
|
|
- :class='`top:${type === 1 ? "40px" : "0"};`'
|
|
|
+ style='color: #1F2429;cursor: pointer;position:absolute;z-index:9999;'
|
|
|
+ :style='`right:${type === 1 ? "48px" : "12px"};top:${type === 1 ? "102px" : "0px"};`'
|
|
|
+
|
|
|
>
|
|
|
<img src='@/assets/imgs/select.png' />
|
|
|
- 筛选
|
|
|
+ <span>筛选</span>
|
|
|
</div>
|
|
|
<div
|
|
|
v-if='dialogFormVisible'
|
|
|
style='width:280px;height:250px;background:rgba(255,255,255,1);margin-top:40px;
|
|
|
box-shadow:0px 2px 10px 0px rgba(31,35,41,0.1);border:1px solid rgba(228,229,231,1);z-index:9999;
|
|
|
- position:absolute;right:0px;'
|
|
|
+ position:absolute;'
|
|
|
+ :style='`right:${type === 1 ? "40px" : "0"};`'
|
|
|
>
|
|
|
<el-form style=' padding:20px 24px;' v-if='type==1'>
|
|
|
<p style='margin:0 0 8px 0'>生产厂商</p>
|
|
|
<el-input
|
|
|
placeholder='搜索生产厂商'
|
|
|
- style='width:192px;margin-right:12px'
|
|
|
+ style='width:232px;margin-right:12px'
|
|
|
size='small'
|
|
|
clearable
|
|
|
prefix-icon='el-icon-search'
|
|
@@ -28,7 +30,7 @@
|
|
|
<el-input
|
|
|
placeholder='搜索服务商'
|
|
|
clearable
|
|
|
- style='width:192px;margin-right:12px'
|
|
|
+ style='width:232px;margin-right:12px'
|
|
|
size='small'
|
|
|
prefix-icon='el-icon-search'
|
|
|
v-model='inputForm.fws'
|
|
@@ -36,20 +38,20 @@
|
|
|
</el-form>
|
|
|
<el-form style=' padding: 20px 24px;' v-if='type==2'>
|
|
|
<p style='margin:0 0 8px 0'>任务编号</p>
|
|
|
- <el-input placeholder='搜索任务编号' clearable size='small' prefix-icon='el-icon-search' v-model='inputForm.gzglid' style='width:192px;'></el-input>
|
|
|
+ <el-input placeholder='搜索任务编号' clearable size='small' prefix-icon='el-icon-search' v-model='inputForm.gzglid' style='width:232px;'></el-input>
|
|
|
</el-form>
|
|
|
<el-form style=' padding: 20px 24px;' v-if='type==3'>
|
|
|
<p style='margin:0 0 8px 0'>工单编号</p>
|
|
|
- <el-input placeholder='搜索工单编号' clearable size='small' prefix-icon='el-icon-search' v-model='inputForm.wonum' style='width:192px;'></el-input>
|
|
|
+ <el-input placeholder='搜索工单编号' clearable size='small' prefix-icon='el-icon-search' v-model='inputForm.wonum' style='width:232px;'></el-input>
|
|
|
</el-form>
|
|
|
<el-form style=' padding: 20px 24px;' v-if='type==4'>
|
|
|
<p style='margin:0 0 8px 0'>验收结果</p>
|
|
|
- <el-select v-model='inputForm.status' placeholder='请选择' size='small' style='width:220px'>
|
|
|
+ <el-select v-model='inputForm.status' placeholder='请选择' size='small' style='width:232px'>
|
|
|
<el-option v-for='item in statusOption' :key='item.id' :label='item.name' :value='item.id'></el-option>
|
|
|
</el-select>
|
|
|
<p style='margin:16px 0 8px 0'>验收日期</p>
|
|
|
<el-date-picker
|
|
|
- style='width:220px'
|
|
|
+ style='width:232px'
|
|
|
v-model='inputForm.yssjwcsj'
|
|
|
value-format='yyyyMMdd'
|
|
|
type='daterange'
|
|
@@ -59,7 +61,7 @@
|
|
|
end-placeholder
|
|
|
></el-date-picker>
|
|
|
</el-form>
|
|
|
- <div style='position:absolute;bottom:20px;right:47px;z-index:9999'>
|
|
|
+ <div style='position:absolute;bottom:24px;right:24px;z-index:9999'>
|
|
|
<el-button @click='dialogFormVisible = false' size='small'>取 消</el-button>
|
|
|
<el-button type='primary' @click='confirm' size='small'>确 定</el-button>
|
|
|
</div>
|