Browse Source

服务添加初始化

pull/105/head
pengda 3 weeks ago
parent
commit
c17c0591c6
  1. 2
      src/views/agent/siteServiceAdd.vue

2
src/views/agent/siteServiceAdd.vue

@ -368,6 +368,7 @@ export default {
getServiceInfo() { getServiceInfo() {
const that = this const that = this
that.serviceInfo = {} that.serviceInfo = {}
that.bindList = []
that.$http('POST', '/agentnew/ajax_get_service_info', { that.$http('POST', '/agentnew/ajax_get_service_info', {
uid: that.uid, uid: that.uid,
type: that.type, type: that.type,
@ -393,6 +394,7 @@ export default {
uid: that.uid, uid: that.uid,
type: that.type, type: that.type,
}).then(response => { }).then(response => {
console.log(response.data)
if (response.status && response.data) { if (response.status && response.data) {
that.$nextTick(() => { that.$nextTick(() => {
that.bindList = response.data that.bindList = response.data

Loading…
Cancel
Save