Browse Source

完善公告型号

zhanglei
yunuo970428 3 years ago
parent
commit
f25526a138
  1. 11
      anrui-scm/anrui-scm-ui/src/views/othermenu/affichetype/gonggaoAdd.vue
  2. 6
      anrui-scm/anrui-scm-ui/src/views/othermenu/affichetype/gonggaoInfo.vue
  3. 10
      anrui-scm/anrui-scm-ui/src/views/othermenu/affichetype/gonggaoguanli.vue

11
anrui-scm/anrui-scm-ui/src/views/othermenu/affichetype/gonggaoAdd.vue

@ -47,29 +47,29 @@
</el-button>
</template>
</el-table-column>
<el-table-column label="整车外观尺寸" align="center">
<el-table-column label="整车外观尺寸(长*宽*高(mm))" align="center">
<template slot-scope="scope">
<el-input v-model="scope.row.vehAppeSize" clearable placeholder="" class="addinputw"></el-input>
</template>
</el-table-column>
<el-table-column label="准牵引总质量" align="center">
<el-table-column label="准牵引总质量(Kg)" align="center">
<template slot-scope="scope">
<el-input v-model="scope.row.accTowTotalMass" clearable placeholder="" class="addinputw"></el-input>
</template>
</el-table-column>
<el-table-column label="整备质量" align="center">
<el-table-column label="整备质量(Kg)" align="center">
<template slot-scope="scope">
<el-input v-model="scope.row.preparationMass" clearable placeholder="" class="addinputw"></el-input>
</template>
</el-table-column>
<el-table-column label="悬架" align="center">
<el-table-column label="悬架" align="center" width="200">
<template slot-scope="scope">
<el-select v-model="scope.row.plateReedNumValue" placeholder="请选择" class="addinputw" @change="changePlateReedNum($event, scope.row)">
<el-option v-for="item in plateReedNum_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictValue"/>
</el-select>
</template>
</el-table-column>
<el-table-column label="轮胎" align="center">
<el-table-column label="轮胎" align="center" width="200">
<template slot-scope="scope">
<el-select v-model="scope.row.tyreValue" placeholder="请选择" class="addinputw" @change="changeTyre($event, scope.row)">
<el-option v-for="item in tyre_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictValue"/>
@ -139,6 +139,7 @@ export default {
this.viewTitle = '【新增】公告型号'
},
showEdit(row) {
this.init()
this.$nextTick(() => {
this.$refs['form_obj'].clearValidate()
})

6
anrui-scm/anrui-scm-ui/src/views/othermenu/affichetype/gonggaoInfo.vue

@ -36,17 +36,17 @@
</div>
<el-table :key="tableKey" :data="formobj.baseAnnouncementmodelParams" :index="index" border style="width: 100%">
<el-table-column fixed width="80px" label="序号" type="index" :index="index + 1" align="center"/>
<el-table-column label="整车外观尺寸" align="center">
<el-table-column label="整车外观尺寸(长*宽*高(mm))" align="center">
<template slot-scope="scope">
<span>{{ scope.row.vehAppeSize }}</span>
</template>
</el-table-column>
<el-table-column label="准牵引总质量" align="center">
<el-table-column label="准牵引总质量(Kg)" align="center">
<template slot-scope="scope">
<span>{{ scope.row.accTowTotalMass }}</span>
</template>
</el-table-column>
<el-table-column label="整备质量" align="center">
<el-table-column label="整备质量(Kg)" align="center">
<template slot-scope="scope">
<span>{{ scope.row.preparationMass }}</span>
</template>

10
anrui-scm/anrui-scm-ui/src/views/othermenu/affichetype/gonggaoguanli.vue

@ -8,11 +8,11 @@
<el-button size="small" class="searchbtn" @click="clicksearchShow">{{ searchxianshitit }}</el-button>
<div v-show="isSearchShow" class="search">
<el-form ref="listQueryform" :inline="true" :model="listQuery" label-width="100px" class="tab-header">
<el-form-item label="申请日期">
<el-date-picker v-model="listQuery.params.createStartTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/>
<span style="padding: 0 8px"></span>
<el-date-picker v-model="listQuery.params.createEndTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/>
</el-form-item>
<!-- <el-form-item label="申请日期">-->
<!-- <el-date-picker v-model="listQuery.params.createStartTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/>-->
<!-- <span style="padding: 0 8px"></span>-->
<!-- <el-date-picker v-model="listQuery.params.createEndTime" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/>-->
<!-- </el-form-item>-->
<el-form-item label="公告型号">
<el-input v-model="listQuery.params.announcementmodelName" placeholder="" clearable/>
</el-form-item>

Loading…
Cancel
Save