zrj
2024-06-07 fa0fc3195858a592d2ad1bdad0fa6126602ebf55
src/views/article/components/discussionManageChild.vue
@@ -4,13 +4,16 @@
      @close="handleClose" @open="opens">
      <avue-form ref="DisCussFrom" :option="option" v-model="froms" @submit="handleSubmit"></avue-form>
    </el-dialog>
    <userList ref="userList" @selectPersonList="selectPersonList"></userList>
  </div>
</template>
<script>
  import {
    getPersonPublicSelect
  } from "@/api/public"
  } from "@/ssoapi/public"
  import {
    getListPd,
@@ -18,7 +21,7 @@
    addPd,
    updatePd,
    removePd
  } from "@/api/discuss/publicDiscuss"
  } from "@/ssoapi/discuss/publicDiscuss"
  import option from "@/option/discuss/publicDiscuss"
  import {
@@ -26,19 +29,24 @@
  } from "vuex"
  import {
    getDictionary
  } from '@/api/system/dict'
  } from '@/ssoapi/system/dict'
  import userList from "./userList.vue";
  // import {
  //   getList as getHouseholdList,
  //   getDetatils as getHouseholdDetail
  // } from "@/api/userHouse/list/houseHold"
  // } from "@/ssoapi/userHouse/list/houseHold"
  import {
    getUserlnfoByDistrictlds
  } from "@/api/system/user"
  } from "@/ssoapi/system/user"
  let formData = {}
  export default {
    components: {
      userList
    },
    data() {
      return {
        dialogVisibles: false,
@@ -132,6 +140,28 @@
              value: 0
            },
            {
              label: '票数公开',
              prop: 'voteNumberPublic',
              type: 'radio',
              button: true,
              row: true,
              span: 12,
              offset: 8,
              dicData: [{
                label: '不需要',
                value: 0
              }, {
                label: '需要',
                value: 1
              }],
              rules: [{
                required: true,
                message: "请选择是否票数公开",
                trigger: "blur",
              }, ],
              value: 0
            },
            {
              label: '指定用户',
              prop: 'appointUser',
              type: 'radio',
@@ -156,26 +186,53 @@
            {
              display: false,
              label: "选择用户",
              prop: "userIds",
              prop: "userName",
              tags: true,
              type: "tree",
              type: "input",
              multiple: true,
              span: 12,
              offset: 8,
              remote: true,
              hide: true,
              row: true,
              // dicUrl: `/api/blade-system/user/getUserlnfoByDistrictlds?districtlds={{}}`,
              props: {
                label: 'name',
                value: 'id',
              },
              dicData: [],
              // dicUrl: `/ssoapi/blade-system/user/getUserlnfoByDistrictlds?districtlds={{}}`,
              // props: {
              //   label: 'name',
              //   value: 'id',
              // },
              // dicData: [],
              rules: [{
                required: true,
                message: '请输入姓名',
                trigger: 'blur'
              }],
              focus: ({
                value,
                column
              }) => {
                // this.$message.success('focus事件查看控制台')
                // console.log('获取焦点', value, column)
                // this.$refs.userList && this.$refs.userList.resetForm()
                this.$refs.userList.show(this.discussion.articleRange)
              },
            },
            {
              label: "开始时间",
              span: 12,
              offset: 8,
              row: true,
              prop: "startTime",
              type: "datetime",
              format: "yyyy-MM-dd HH:mm:ss",
              valueFormat: "yyyy-MM-dd HH:mm:ss",
              // format: "yyyy-MM-dd hh:mm:ss",
              // valueFormat: "yyyy-MM-dd hh:mm:ss",
              rules: [{
                required: true,
                message: "请选择开始时间",
                trigger: "blur",
              }, ],
            },
            {
@@ -198,15 +255,23 @@
          ]
        },
        // 表单列表
        froms: {},
        froms: {
          openFlag: 0,
          voteRestrictions: 1,
          signatureFlag: 1,
          voteNumberPublic: 1,
          appointUser: 0,
        },
        dialogVisibles: false,
        articleId: '',
        discussion: {},
        id: ""
        id: "",
        personList: [],
      }
    },
    created() {
      this.getUserList()
      // this.getUserList()
    },
    mounted() {
@@ -216,9 +281,10 @@
    watch: {
      'froms.appointUser': {
        handler(newData) {
          const column = this.findObject(this.option.column, "userIds")
          const column = this.findObject(this.option.column, "userName")
          if (newData == 1) {
            column.display = true
            // this.$refs.userList.show()
          } else {
            column.display = false
          }
@@ -236,29 +302,37 @@
      }
    },
    methods: {
      selectPersonList(personList) {
        console.log(personList, "++++++++++++")
        this.personList = personList
        let nameList = personList.map(e => {
          return e.name
        })
        this.froms.userName = nameList.join(",")
      },
      getuserInfoByDistrictId() {
        getUserlnfoByDistrictlds(this.discussion.articleRange).then(res => {
          const column = this.findObject(this.option.column, "userIds")
          column.dicData = res.data.data
          column.dicData = res.data.data.records
        })
      },
      getUserList() {
        let dicUrl = `/api/blade-household/household/selectHouseholdList?searchKey={{key}}&limit=20`
        let dicUrl = `/ssoapi/blade-household/household/selectHouseholdList?searchKey={{key}}&limit=20`
        const column = this.findObject(this.option.column, "userIds")
        column.dicUrl = dicUrl
      },
      handleSubmit(form, done) {
        console.log("**********" + JSON.stringify(form))
        form.articleId = this.articleId
        form.eventType = 1
        form.userIds = JSON.stringify(form.userIds)
        form.userIds = this.personList.map(e => e.id).join(",")
        // form.userIds = JSON.stringify(form.userIds)
        if (form.appointUser == 0) {
          form.userIds = ''
        }
        console.log("===>", JSON.stringify(this.froms))
        form.id = this.id;
        console.log("formData====>", JSON.stringify(formData))
        form.id = this.id
        addPd(form).then(
          () => {
            // this.onLoad(this.discussion)
@@ -268,7 +342,13 @@
            })
            done()
            this.$refs.DisCussFrom && this.$refs.DisCussFrom.resetForm()
            this.froms = {}
            this.froms = {
              openFlag: 0,
              voteRestrictions: 1,
              signatureFlag: 1,
              appointUser: 0,
            }
            this.dialogVisibles = false
          },
          (error) => {
@@ -277,54 +357,72 @@
        )
      },
      init(data) {
        // console.log("====>", data);
        console.log("===init===", data)
        this.$refs.DisCussFrom && this.$refs.DisCussFrom.resetForm()
        this.dialogVisibles = true
        this.froms = {}
        this.froms = {
          openFlag: 0,
          voteRestrictions: 1,
          signatureFlag: 1,
          appointUser: 0,
        }
        this.discussion = data
        this.articleId = data.id
        this.onLoad(data)
      },
      handleClose() {
        console.log("**********************************************************************************")
        console.log("******handleClose*******")
        this.dialogVisibles = false
        this.$refs.DisCussFrom && this.$refs.DisCussFrom.resetForm()
        this.froms = {};
        console.log("^^^^^", this.froms)
        console.log(this.$refs, 90999)
        this.froms = {
          openFlag: 0,
          voteRestrictions: 1,
          signatureFlag: 1,
          appointUser: 0,
        }
      },
      opens() {
        console.log("***************************************opens*******************************************")
        console.log("******opens*******")
        // this.dialogVisibles = false
        this.$refs.DisCussFrom && this.$refs.DisCussFrom.resetForm()
        this.froms = {};
        console.log("^^^^^", this.froms)
        console.log(this.$refs, 90999)
        this.froms = {
          openFlag: 0,
          voteRestrictions: 1,
          signatureFlag: 1,
          appointUser: 0,
        }
      },
      onLoad(row, params = {
        eventType: 1,
        articleId: row.id
      }) {
        this.loading = true
        // this.loading = true
        getListPd(1, 10, Object.assign(params, this.query)).then(res => {
          const data = res.data.data
          this.$refs.DisCussFrom && this.$refs.DisCussFrom.resetForm()
          if (data.records.length <= 0) {
            console.log("----------------------------------")
            this.froms = {}
            console.log("--------onLoad------------")
            this.id = ''
            this.froms = {
              openFlag: 0,
              voteRestrictions: 1,
              signatureFlag: 1,
              appointUser: 0,
            }
          } else {
            console.log(">>>>>", data.records[0])
            console.log(">>>>>onLoad", data.records[0])
            this.froms = data.records[0]
            this.id = data.records[0].id;
            formData = data.records[0];
            this.id = data.records[0].id
            formData = data.records[0]
            if (this.froms && this.froms.userIds) {
              this.froms.userIds = JSON.parse(this.froms.userIds)
            }
          }
          this.getuserInfoByDistrictId()
          // this.getuserInfoByDistrictId()
        })
      },