setting_config.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {{template "header" }}
  2. <div id="app" style="width:100%">
  3. <template>
  4. <el-container v-loading.fullscreen.lock="fullscreenLoading">
  5. <el-main class="mainMain">
  6. <el-table
  7. :data="configList"
  8. border
  9. style="width: 100%">
  10. <el-table-column
  11. prop="conf_name"
  12. label="配置参数">
  13. </el-table-column>
  14. <el-table-column
  15. prop="conf_key"
  16. label="配置key">
  17. </el-table-column>
  18. <el-table-column
  19. prop="id"
  20. label="操作">
  21. <template slot-scope="scope">
  22. <el-input @change="setConfigItem(scope.row.conf_key,scope.row.conf_value)" v-model="scope.row.conf_value"></el-input>
  23. </template>
  24. </el-table-column>
  25. </el-table>
  26. </el-main>
  27. </el-container>
  28. </template>
  29. </div>
  30. </body>
  31. {{template "setting_bottom" .}}