Commit 4e66ddf5 authored by lixy's avatar lixy

会员管理

parent 1a2de475
......@@ -137,6 +137,7 @@
name: 'membershipGrade',
data() {
return {
BASE_API: process.env.BASE_API,
list: [],
listLoading: true,
tableKey: 0,
......
......@@ -236,7 +236,7 @@
</template>
</el-table-column>
<el-table-column width="65" align="center" v-if="showMoreMoreCol" label="保险公司">
<el-table-column width="150" align="center" v-if="showMoreMoreCol" label="保险公司">
<template scope="scope">
<span>{{getInsuranceCompany(scope.row.insuranceCompany)}}</span>
</template>
......@@ -248,31 +248,31 @@
</template>
</el-table-column>
<el-table-column width="100" align="center" v-if="showMoreMoreCol" label="保险开始时间">
<el-table-column width="150" align="center" v-if="showMoreMoreCol" label="保险开始时间">
<template scope="scope">
<span>{{scope.row.insuranceStartDate}}</span>
</template>
</el-table-column>
<el-table-column width="100" align="center" v-if="showMoreMoreCol" label="保险结束时间">
<el-table-column width="180" align="center" v-if="showMoreMoreCol" label="保险结束时间">
<template scope="scope">
<span>{{scope.row.insuranceEndDate}}</span>
</template>
</el-table-column>
<el-table-column width="100" align="center" v-if="showMoreMoreCol" label="年审时间">
<el-table-column width="180" align="center" v-if="showMoreMoreCol" label="年审时间">
<template scope="scope">
<span>{{scope.row.annualVerificationDate}}</span>
</template>
</el-table-column>
<el-table-column width="100" align="center" v-if="showMoreMoreCol" label="保养时间">
<el-table-column width="180" align="center" v-if="showMoreMoreCol" label="保养时间">
<template scope="scope">
<span>{{scope.row.maintenanceDate}}</span>
</template>
</el-table-column>
<el-table-column width="65" align="center" v-if="showMoreMoreCol" label="保养里程数">
<el-table-column width="100" align="center" v-if="showMoreMoreCol" label="保养里程数">
<template scope="scope">
<span>{{scope.row.maintenanceMileage}}</span>
</template>
......@@ -299,7 +299,7 @@
</template>
</el-table-column>
<el-table-column width="120" align="center" v-if="showMoreMoreCol" label="发动机号">
<el-table-column width="130" align="center" v-if="showMoreMoreCol" label="发动机号">
<template scope="scope">
<span>{{scope.row.engineNum}}</span>
</template>
......@@ -323,7 +323,7 @@
</template>
</el-table-column>
<el-table-column align="center" label="操作" width="380" fixed="right">
<el-table-column align="center" label="操作" width="280" fixed="right">
<template scope="scope">
<el-button size="small" class="el-button el-button--text el-button--small" @click="handleUpdate(scope.row)">{{vehicleInfo_btn_edit?"编辑":"查看"}}
</el-button>
......@@ -1053,7 +1053,7 @@
message: '请输入使用人联系方式',
trigger: 'blur'
},{
pattern: /^1[3456789]\d{9}$/,
pattern: /^1[3456789]\d{9}$/,
message: '请输入正确的手机号'
}
],
......@@ -2126,4 +2126,4 @@
}
}
}
</script>
\ No newline at end of file
</script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment