阅行客电子档案
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
429 B

  1. <template>
  2. <field title="系统字段" :is-type="1" permission-str="systemFields" />
  3. </template>
  4. <script>
  5. import Field from '../field/index'
  6. export default {
  7. name: 'SystemFields',
  8. components: { Field }
  9. }
  10. </script>
  11. <style rel="stylesheet/scss" lang="scss" scoped>
  12. ::v-deep thead .el-table-column--selection .cell {
  13. display: none;
  14. }
  15. ::v-deep div.el-dialog__footer {
  16. text-align: center;
  17. }
  18. </style>