大宝管理后台代码
xxx
dcc
2024-05-07 abcf89c0931fc453f4fd8e1d4d48b8b469d0f3c7
src/views/risksetting/productsetting.vue
@@ -117,7 +117,7 @@
import pick from 'lodash.pick'
export default {
  name: 'Productsetting',
  data() {
  data () {
    return {
      addUserform: this.$form.createForm(this),
      loading: false,
@@ -131,27 +131,27 @@
        'delayDisplay',
        'expandDisplay',
        'marginDisplay',
        'endDisplay',
        'endDisplay'
      ],
      labelCol: {
        xs: { span: 10 },
        sm: { span: 10 },
        md: { span: 10 },
        md: { span: 10 }
      },
      wrapperCol: {
        xs: { span: 14 },
        sm: { span: 14 },
        md: { span: 14 },
        md: { span: 14 }
      },
      addUserDialogloading: false,
      details: {},
      details: {}
    }
  },
  mounted() {
  mounted () {
    this.getdetail()
  },
  methods: {
    OkaddUserdialog() {
    OkaddUserdialog () {
      const form = this.$refs.addUserform.form
      form.validateFields((errors, values) => {
        if (!errors) {
@@ -170,7 +170,7 @@
        }
      })
    },
    getdetail() {
    getdetail () {
      var that = this
      this.loading = true
      getProductSetting().then((res) => {
@@ -181,8 +181,8 @@
          that.loading = false
        }, 500)
      })
    },
  },
    }
  }
}
</script>
<style lang="less" scoped>