|
@@ -655,6 +655,7 @@ export default {
|
|
|
|
|
|
|
|
addIng: false,
|
|
addIng: false,
|
|
|
url: {
|
|
url: {
|
|
|
|
|
+ "querySizeByCardNo":"/businessReminderCard/querySizeByCardNo",
|
|
|
"list":"",
|
|
"list":"",
|
|
|
"add": "/businessReminderCard/add",
|
|
"add": "/businessReminderCard/add",
|
|
|
"editById": "/businessReminderCard/editById",
|
|
"editById": "/businessReminderCard/editById",
|
|
@@ -880,11 +881,28 @@ export default {
|
|
|
this.queryById();
|
|
this.queryById();
|
|
|
//DOM初始化完成进行地图初始化
|
|
//DOM初始化完成进行地图初始化
|
|
|
this.initMap();
|
|
this.initMap();
|
|
|
- this.getSysCompany()
|
|
|
|
|
|
|
+ this.getSysCompany();
|
|
|
|
|
+
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
methods: {
|
|
|
|
|
+ getPhoneTypeSize(){
|
|
|
|
|
+ let data = {
|
|
|
|
|
+ "cardNo": this.model.cardNo
|
|
|
|
|
+ };
|
|
|
|
|
+ getAction(this.url.querySizeByCardNo, data).then((res) => {
|
|
|
|
|
+ if (res.success) {
|
|
|
|
|
+ let result = res.result;
|
|
|
|
|
|
|
|
|
|
+ if (result != null) {
|
|
|
|
|
+ this.model.yidong=result.yidong;
|
|
|
|
|
+ this.model.dianxin=result.dianxin;
|
|
|
|
|
+ this.model.liantong=result.liantong;
|
|
|
|
|
+ this.model.qita=result.qita;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
|
|
|
|
|
getSysCompany(){
|
|
getSysCompany(){
|
|
|
let data = {
|
|
let data = {
|
|
@@ -1310,6 +1328,7 @@ export default {
|
|
|
let data = {
|
|
let data = {
|
|
|
"cardNo": this.model.cardNo
|
|
"cardNo": this.model.cardNo
|
|
|
}
|
|
}
|
|
|
|
|
+ this.getPhoneTypeSize();
|
|
|
getAction(that.url.queryByCardNo, data).then((res) => {
|
|
getAction(that.url.queryByCardNo, data).then((res) => {
|
|
|
if (res.success) {
|
|
if (res.success) {
|
|
|
let result = res.result;
|
|
let result = res.result;
|