Browse Source

Merge branch 'dev_0814' of http://121.42.41.42:7070/r/esua-epdc-admin into dev_0814

master
qushutong 6 years ago
parent
commit
5d4a98fbbe
  1. 2
      public/index.html
  2. 8
      src/views/modules/sys/deptmacode.vue

2
public/index.html

@ -50,7 +50,7 @@
<!-- 生产环境 -->
<% if (process.env.VUE_APP_NODE_ENV === 'prod') { %>
<script>
window.SITE_CONFIG['apiURL'] = 'http://epdc.elinkchina.com.cn'
window.SITE_CONFIG['apiURL'] = 'https://epdc-api.elinkchina.com.cn'
</script>
<% } %>
</head>

8
src/views/modules/sys/deptmacode.vue

@ -41,6 +41,10 @@
<el-form-item>
<el-button @click="getDataList()">{{ $t('query') }}</el-button>
</el-form-item>
<el-form-item>
<el-button type="info"
@click="clearDataForm()">清空</el-button>
</el-form-item>
<el-form-item>
<el-button v-if="$hasPermission('sys:deptmacode:delete')"
type="danger"
@ -221,6 +225,10 @@ export default {
this.gridList = []
//
this.getDeptInfoList('grid', this.dataForm.communityId)
},
clearDataForm () {
this.dataForm.streetId = this.dataForm.communityId = this.dataForm.gridId = null
this.communityList = this.gridList = []
}
}
}

Loading…
Cancel
Save