web批量导入(包括文本和图片)

<template>
  <div class="hello">
    <div class="txt_box">
      上传文案:
      <input type="file" ref="textSelect" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel" single @change="getTextChange">
    div>
    <div class="img_box" v-for='(item, index) in textList' :key='index'>
      请上传第{
  { index }}条任务的图片(第一张图将被作为封面图):
      <input type="file" :id='"imgInput" + index' name="files" :ref='"imgInput" + index' accept="image/*" multiple @change="uploadImgHandle(index)">
    div>
    <button @click="submitTaskHandle">提交任务

你可能感兴趣的:(前端,javascript,开发语言)