下拉框

<select ref="newText" style="width:80px;" @change="getTitle(text.userId, $refs.newText.value

)">

                <option v-for="(item, index) in sel" :key="index" :value="item.value">{{ item.time }}</option>

              </select>

Data

 values: 3600000,

      sel: [

         {

          value: '请选择',

          time: '请选择'

        },

        {

          value: 3600000,

          time: '1小时'

        },

          {

          value: 3600000 * 2,

          time: '2小时'

        },

          {

          value: 3600000 * 3,

          time: '3小时'

        },

          {

          value: 3600000 * 24,

          time: '1天'

        },

         {

          value: 3600000 * 48,

          time: '2天'

        },

         {

          value: 3600000 * 72,

          time: '3天'

        },

         {

          value: 31536000 * 70000,

          time: '永久'

        }

      ],

 

Js

  getTitle (a, values) {

      gettitle(a, values).then(res => {

        values = this.$refs.newText.value

  console.log(this.$refs.newText.value)

      })

    },

posted @ 2021-03-07 09:04  zjxgdq  阅读(33)  评论(0编辑  收藏  举报