Commit 4e66ddf5 authored by lixy's avatar lixy

会员管理

parent 1a2de475
...@@ -137,6 +137,7 @@ ...@@ -137,6 +137,7 @@
name: 'membershipGrade', name: 'membershipGrade',
data() { data() {
return { return {
BASE_API: process.env.BASE_API,
list: [], list: [],
listLoading: true, listLoading: true,
tableKey: 0, tableKey: 0,
......
...@@ -236,7 +236,7 @@ ...@@ -236,7 +236,7 @@
</template> </template>
</el-table-column> </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"> <template scope="scope">
<span>{{getInsuranceCompany(scope.row.insuranceCompany)}}</span> <span>{{getInsuranceCompany(scope.row.insuranceCompany)}}</span>
</template> </template>
...@@ -248,31 +248,31 @@ ...@@ -248,31 +248,31 @@
</template> </template>
</el-table-column> </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"> <template scope="scope">
<span>{{scope.row.insuranceStartDate}}</span> <span>{{scope.row.insuranceStartDate}}</span>
</template> </template>
</el-table-column> </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"> <template scope="scope">
<span>{{scope.row.insuranceEndDate}}</span> <span>{{scope.row.insuranceEndDate}}</span>
</template> </template>
</el-table-column> </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"> <template scope="scope">
<span>{{scope.row.annualVerificationDate}}</span> <span>{{scope.row.annualVerificationDate}}</span>
</template> </template>
</el-table-column> </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"> <template scope="scope">
<span>{{scope.row.maintenanceDate}}</span> <span>{{scope.row.maintenanceDate}}</span>
</template> </template>
</el-table-column> </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"> <template scope="scope">
<span>{{scope.row.maintenanceMileage}}</span> <span>{{scope.row.maintenanceMileage}}</span>
</template> </template>
...@@ -299,7 +299,7 @@ ...@@ -299,7 +299,7 @@
</template> </template>
</el-table-column> </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"> <template scope="scope">
<span>{{scope.row.engineNum}}</span> <span>{{scope.row.engineNum}}</span>
</template> </template>
...@@ -323,7 +323,7 @@ ...@@ -323,7 +323,7 @@
</template> </template>
</el-table-column> </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"> <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 size="small" class="el-button el-button--text el-button--small" @click="handleUpdate(scope.row)">{{vehicleInfo_btn_edit?"编辑":"查看"}}
</el-button> </el-button>
...@@ -1053,7 +1053,7 @@ ...@@ -1053,7 +1053,7 @@
message: '请输入使用人联系方式', message: '请输入使用人联系方式',
trigger: 'blur' trigger: 'blur'
},{ },{
pattern: /^1[3456789]\d{9}$/, pattern: /^1[3456789]\d{9}$/,
message: '请输入正确的手机号' message: '请输入正确的手机号'
} }
], ],
...@@ -2126,4 +2126,4 @@ ...@@ -2126,4 +2126,4 @@
} }
} }
} }
</script> </script>
\ No newline at end of file
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