|
@@ -178,7 +178,7 @@ export default {
|
|
|
this.$set(this,'form',{
|
|
|
memberId: res.data.id,
|
|
|
name: res.data.name,
|
|
|
- cardNoCopy: res.data.cardNo
|
|
|
+ cardNoCopy: res.data.cardNo?res.data.cardNo:''
|
|
|
})
|
|
|
if(res.data.cardNo) {
|
|
|
this.form.cardType = 0
|
|
@@ -215,7 +215,10 @@ export default {
|
|
|
this.loadingText = "提交数据中..."
|
|
|
this.loading = true
|
|
|
try {
|
|
|
- let res = await addTableApi(this.configUrl.edit,{...this.form})
|
|
|
+ let res = await addTableApi(this.configUrl.edit,{
|
|
|
+ ...this.form,
|
|
|
+ cardNo: this.form.cardNoCopy + '' +this.form.cardNo
|
|
|
+ })
|
|
|
if(res.code == 200) {
|
|
|
this.$modal.msgSuccess("制卡成功");
|
|
|
this.loading = false
|