Browse Source

入库车辆列表增加发动机号字段

master
yunuo970428 3 years ago
parent
commit
d894b0f194
  1. 5
      anrui-scm/anrui-scm-ui/src/views/ruzhang/ruzhangguanli/ruzhangAdd.vue
  2. 11
      anrui-scm/anrui-scm-ui/src/views/ruzhang/ruzhangguanli/ruzhangInfo.vue
  3. 5
      anrui-scm/anrui-scm-ui/src/views/workFlow/ruzhangguanliFlow/ruzhangguanli/ruzhangDaiBanInfo.vue
  4. 5
      anrui-scm/anrui-scm-ui/src/views/workFlow/ruzhangguanliFlow/ruzhangguanli/ruzhangEdit.vue
  5. 5
      anrui-scm/anrui-scm-ui/src/views/workFlow/ruzhangguanliFlow/ruzhangguanli/ruzhangYiBanInfo.vue

5
anrui-scm/anrui-scm-ui/src/views/ruzhang/ruzhangguanli/ruzhangAdd.vue

@ -181,6 +181,11 @@
<el-input v-model="scope.row.vinNo" placeholder="" class="addinputw" @change="changeVinNo" clearable type="text" maxlength="17"/>
</template>
</el-table-column>
<el-table-column label="发动机号" align="left" header-align="center">
<template slot-scope="scope">
<el-input v-model="scope.row.engineNo" placeholder="" class="addinputw" clearable/>
</template>
</el-table-column>
<el-table-column label="备注" header-align="center">
<template slot-scope="scope">
<el-input v-model="scope.row.remarks" placeholder="" class="addinputw" clearable />

11
anrui-scm/anrui-scm-ui/src/views/ruzhang/ruzhangguanli/ruzhangInfo.vue

@ -178,14 +178,19 @@
<div>车辆列表</div>
</div>
<el-table :key="tableKey" :data="formobj.vehicleList" :index="index" border style="width: 100%">
<el-table-column fixed width="60px" label="序号" type="index" :index="index + 1" align="center" />
<el-table-column fixed width="60" label="序号" type="index" :index="index + 1" align="center" />
<el-table-column label="车架号" align="left" header-align="center">
<template slot-scope="scope" prop="vehicleName">
<template slot-scope="scope">
{{ scope.row.vinNo }}
</template>
</el-table-column>
<el-table-column label="发动机号" align="left" header-align="center">
<template slot-scope="scope">
{{ scope.row.engineNo }}
</template>
</el-table-column>
<el-table-column label="备注" header-align="center">
<template slot-scope="scope" prop="remarks">
<template slot-scope="scope">
{{ scope.row.remarks }}
</template>
</el-table-column>

5
anrui-scm/anrui-scm-ui/src/views/workFlow/ruzhangguanliFlow/ruzhangguanli/ruzhangDaiBanInfo.vue

@ -186,6 +186,11 @@
{{ scope.row.vinNo }}
</template>
</el-table-column>
<el-table-column label="发动机号" align="left" header-align="center">
<template slot-scope="scope">
{{ scope.row.engineNo }}
</template>
</el-table-column>
<el-table-column label="备注" header-align="center">
<template slot-scope="scope" prop="remarks">
{{ scope.row.remarks }}

5
anrui-scm/anrui-scm-ui/src/views/workFlow/ruzhangguanliFlow/ruzhangguanli/ruzhangEdit.vue

@ -180,6 +180,11 @@
<el-input v-model="scope.row.vinNo" placeholder="" class="addinputw" @change="changeVinNo" clearable type="text" maxlength="17"/>
</template>
</el-table-column>
<el-table-column label="发动机号" align="left" header-align="center">
<template slot-scope="scope">
<el-input v-model="scope.row.engineNo" placeholder="" class="addinputw" clearable/>
</template>
</el-table-column>
<el-table-column label="备注" header-align="center">
<template slot-scope="scope">
<el-input v-model="scope.row.remarks" placeholder="" class="addinputw" clearable />

5
anrui-scm/anrui-scm-ui/src/views/workFlow/ruzhangguanliFlow/ruzhangguanli/ruzhangYiBanInfo.vue

@ -184,6 +184,11 @@
{{ scope.row.vinNo }}
</template>
</el-table-column>
<el-table-column label="发动机号" align="left" header-align="center">
<template slot-scope="scope">
{{ scope.row.engineNo }}
</template>
</el-table-column>
<el-table-column label="备注" header-align="center">
<template slot-scope="scope" prop="remarks">
{{ scope.row.remarks }}

Loading…
Cancel
Save