store.php 746 B

1234567891011121314151617
  1. <el-row>
  2. <el-col :span="24">
  3. <div class="form-body">
  4. <el-form :model="basicForm" ref="storeForm" :rules="storeFormRules" label-width="172px" style="position: relative" size="small">
  5. <el-form-item label="商家地址:">
  6. <el-input type="text" size="small" v-model="storeForm.store_h5_login_url">
  7. <el-button slot="append" @click="copyStoreLink(storeForm.store_h5_login_url)">复制链接</el-button>
  8. </el-input>
  9. </el-form-item>
  10. </el-form>
  11. </div>
  12. </el-col>
  13. </el-row>
  14. <!-- 这个是复制用的容器,已隐藏 -->
  15. <textarea style="opacity: 0;width: 0;height: 0;" id="copy-container-store"></textarea>