|
|
@@ -67,7 +67,8 @@
|
|
|
</a-col>
|
|
|
<a-col :span="24">
|
|
|
<a-form-model-item label="会员姓名" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="name">
|
|
|
- <a-input v-model="model.name" placeholder="请输入会员姓名" ></a-input>
|
|
|
+ <a-input style="width: 180px;" v-model="model.name" placeholder="请输入会员姓名" ></a-input>
|
|
|
+ <a-button @click="readCardNo" style="margin-left: 10px;">读取身份证</a-button>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
<!-- <a-col :span="24">
|
|
|
@@ -242,6 +243,9 @@ export default {
|
|
|
this.modelDefault = JSON.parse(JSON.stringify(this.model));
|
|
|
},
|
|
|
methods: {
|
|
|
+ readCardNo() {
|
|
|
+ this.$message.error("接口程序未打开,请打开接口程序");
|
|
|
+ },
|
|
|
add() {
|
|
|
this.edit(this.modelDefault);
|
|
|
},
|