Browse Source

优化

shibei_master
zhaoyongnian 4 years ago
parent
commit
aff222a9f0
  1. 4
      src/views/modules/plugins/power/poweraxis-add-or-update.vue
  2. 4
      src/views/modules/plugins/power/servicestationForm.vue
  3. 6
      src/views/modules/plugins/power/servicestationTable.vue

4
src/views/modules/plugins/power/poweraxis-add-or-update.vue

@ -81,14 +81,14 @@
<el-input class="item_width_3"
maxlength="50"
placeholder="请输入经度"
readonly="true"
:readonly="true"
v-model="dataForm.longitude">
</el-input>
<span style="margin-left: 20px">纬度</span>
<el-input class="item_width_3"
maxlength="50"
placeholder="请输入纬度"
readonly="true"
:readonly="true"
v-model="dataForm.latitude">
</el-input>
</div>

4
src/views/modules/plugins/power/servicestationForm.vue

@ -52,14 +52,14 @@
<el-input class="item_width_3"
maxlength="50"
placeholder="请输入经度"
readonly="true"
:readonly="true"
v-model="dataForm.longitude">
</el-input>
<span style="margin-left: 20px">纬度</span>
<el-input class="item_width_3"
maxlength="50"
placeholder="请输入纬度"
readonly="true"
:readonly="true"
v-model="dataForm.latitude">
</el-input>
</div>

6
src/views/modules/plugins/power/servicestationTable.vue

@ -4,7 +4,7 @@
<div class="resi-cell">
<div class="resi-cell-label">服务站名</div>
<div class="resi-cell-value">
<el-input v-model="ownerName"
<el-input v-model="name"
class="resi-cell-input"
size="small"
clearable
@ -100,7 +100,7 @@ export default {
pageSize: 20,
pageNo: 0,
tableLoading: false,
ownerName: '',
name: '',
tableData: [],
//form
formShow: false,
@ -124,7 +124,7 @@ export default {
pageSize: this.pageSize,
pageNo: this.pageNo,
axisStructId: this.axisStructId,
ownerName: this.ownerName
name: this.name
}
const { data, code, msg, total } = await requestPost(url, params)
if (code === 0) {

Loading…
Cancel
Save