当前位置: 首页 > news >正文

现在做网站用什么工具电脑培训学校在哪里

现在做网站用什么工具,电脑培训学校在哪里,oppo软件商店网页版,网站源码 正在建设中文章目录 遇到一个前端bug,点击生成邀请码 打开对话框 然后我再点击叉号,退出对话框,虽然退出了对话框,但是显示灰色界面。如下图: 导致界面就会失效,点击任何地方都没有反应。 发现是如下代码的问题&am…

文章目录

遇到一个前端bug,点击生成邀请码
在这里插入图片描述
打开对话框
在这里插入图片描述
然后我再点击叉号,退出对话框,虽然退出了对话框,但是显示灰色界面。如下图:
在这里插入图片描述
导致界面就会失效,点击任何地方都没有反应。
发现是如下代码的问题:

    <invite-code-list :visible.sync="inviteFormVisible" @success="handleInviteSuccess" v-if="inviteFormVisible"/>

只需要把v-if="inviteFormVisible"这个代码去掉就可以解决,点击叉,显示灰色背景界面就可以得到解决。

    <invite-code-list :visible.sync="inviteFormVisible" @success="handleInviteSuccess" />
<template><el-dialog:visible="visible":before-close="handleTopRightClose":close-on-click-modal="false":title="`${operateType === 'add' ? '添加' : operateType === 'view' ? '查看' : operateType === 'edit' ? '编辑' : ''}`"width="55vw"top="15vh"append-to-bodydestroy-on-close><div class="ave-form-wrap"><div class="ave-form-box"><el-form><w-form-selectv-model="form.identificationPointAdminId"label="识别点管理"label-width="120px":operate-type="operateType":list="clistValue"option-label="nickname"option-value="friendId"/><w-form-selectv-model="form.compareAdminId"label="对比负责人"label-width="120px":operate-type="operateType":list="clistValue"option-label="nickname"option-value="friendId"/><w-form-selectv-model="form.brandId"label="品牌"label-width="120px":operate-type="operateType":list="brandSels"option-label="name"option-value="id"/></el-form></div></div><div slot="footer" class="form-footer"><div class="operateArea"><div class="left-btns"><el-button type="primary" plain size="mini" @click="showInviteForm">生成邀请码</el-button><el-button style="margin-left: 10px;" type="primary" plain size="mini" @click="onAnti">生成防伪码</el-button></div><div class="right-btns">  <el-button @click="handleFooterClose">取消</el-button><el-button v-if="operateType !== 'view'" size="mini" type="primary" @click="handleSubmit">提交</el-button></div></div></div>  <invite-code-list :visible.sync="inviteFormVisible" @success="handleInviteSuccess" /><!-- <anti-fake-list :visible="aflVis" @close="onaflClose" /> --></el-dialog>
</template>
<script lang="ts">
import { Component, Vue, Prop, Emit, Watch } from 'vue-property-decorator'
import { AppModule } from '@/store/modules/app'
import { UserModule } from '@/store/modules/user'
import { productAll } from '@/api/product'
import { esave } from '@/api/fake-config'
import { qedits as brandAll } from '@/api/brand'import WFormInput from '@/components/DialogForm/func/w-form-input.vue'
import WFormSelect from '@/components/DialogForm/func/w-form-select.vue'
import WFormTextarea from '@/components/DialogForm/func/w-form-textarea.vue'
import WFormDatePicker from '@/components/DialogForm/func/w-form-date-picker.vue'
import WFormRadios from '@/components/DialogForm/func/w-form-radios.vue'
import WFormSingleImage from '@/components/DialogForm/func/w-form-single-image.vue'
import WFormMultipleImage from '@/components/DialogForm/func/w-form-multiple-image.vue'
import WFormEditor from '@/components/DialogForm/func/w-form-editor.vue'
import InviteCodeList from './invite-code-list.vue'@Component({name: 'ave-form',components: {WFormInput,WFormDatePicker,WFormSelect,WFormTextarea,WFormRadios,WFormSingleImage,WFormMultipleImage,WFormEditor,InviteCodeList}
})
export default class extends Vue {public role = UserModule.roles[0]public sid = UserModule.id@Prop({ default: () => {} })private value?: any@Prop({ default: true })private visible!: boolean@Prop({ default: 'add' })private operateType!: string@Prop({ default: () => [] })private clist!: any@Watch('clist')watchClist(v: any) {this.clistValue = [{ nickname: '自己', friendId: this.sid }, ...v]}@Watch('value')watchValue(v: any) {this.$nextTick(() => {this.getProducts()this.getBrands()this.form = { ...v }})}private form: any = {}private productList: any = []private clistValue: any = []private brandSels: any = []private inviteFormVisible = falseprivate antiCode = ''private async getProducts() {const res: any = await productAll()if (res?.code === 0) {this.productList = res?.data?.content}}private async getBrands() {const res: any = await brandAll()this.brandSels = res?.data}private handleTopRightClose() {this.$emit('close', false)}private handleFooterClose() {this.$emit('close', false)}private handleSubmit() {this.save()}private async save() {const data = this.formconst res: any = await esave(data)if (res?.code === 0) {this.$emit('close', true)}}private showInviteForm() {console.log('showInviteForm 被调用');// this.$store.state.inviteFormVisible = true;this.inviteFormVisible = true}private handleInviteSuccess() {// 邀请码生成成功后的处理,比如刷新列表等}// private aflVis: boolean = false// private onAnti() {//   // todo//   this.aflVis = true// }@Watch('inviteFormVisible')private onInviteFormVisibleChange(newVal: boolean) {console.log('inviteFormVisible 变化:', newVal);}mounted() {}
}
</script><style scoped lang="scss">
.ave-form-wrap {width: 100%;max-height: 90vh;overflow: auto;.ave-form-box {width: 30%;}
}.form-footer {.operateArea {display: flex;justify-content: space-between;align-items: center;.left-btns {display: flex;align-items: center;gap: 10px;}.right-btns {display: flex;gap: 10px;}}
}
</style>

文章转载自:
http://dinncocheckered.stkw.cn
http://dinncotuning.stkw.cn
http://dinncorubredoxin.stkw.cn
http://dinncomicrodontia.stkw.cn
http://dinncoparticipant.stkw.cn
http://dinncosexisyllabic.stkw.cn
http://dinncocigs.stkw.cn
http://dinncomerge.stkw.cn
http://dinncoflick.stkw.cn
http://dinncojanuary.stkw.cn
http://dinncobeloved.stkw.cn
http://dinnconoctambulist.stkw.cn
http://dinncoroyalistic.stkw.cn
http://dinncoantiauthority.stkw.cn
http://dinncoinfectious.stkw.cn
http://dinncoadman.stkw.cn
http://dinncoepanthous.stkw.cn
http://dinncosarsenet.stkw.cn
http://dinncorestrictedly.stkw.cn
http://dinncointracardial.stkw.cn
http://dinncoodontoclast.stkw.cn
http://dinncoforetopman.stkw.cn
http://dinncoergometer.stkw.cn
http://dinncotangshan.stkw.cn
http://dinncobaudelairean.stkw.cn
http://dinncoyaup.stkw.cn
http://dinncocampania.stkw.cn
http://dinncopivotman.stkw.cn
http://dinncoomigod.stkw.cn
http://dinncomonotocous.stkw.cn
http://dinncointermodulation.stkw.cn
http://dinncoheliogabalus.stkw.cn
http://dinncodonor.stkw.cn
http://dinncoindignantly.stkw.cn
http://dinncogilbertine.stkw.cn
http://dinncoenrobe.stkw.cn
http://dinncoskirting.stkw.cn
http://dinncodescension.stkw.cn
http://dinncoelixir.stkw.cn
http://dinncokatie.stkw.cn
http://dinncobook.stkw.cn
http://dinncocomplexionless.stkw.cn
http://dinncochristophany.stkw.cn
http://dinncosuperorganism.stkw.cn
http://dinncodetribalize.stkw.cn
http://dinncobaddish.stkw.cn
http://dinncounchoke.stkw.cn
http://dinncogreenskeeper.stkw.cn
http://dinncoantifluoridationist.stkw.cn
http://dinncoundelete.stkw.cn
http://dinncolactim.stkw.cn
http://dinncorefurbish.stkw.cn
http://dinncobrimful.stkw.cn
http://dinncochildrenese.stkw.cn
http://dinncosurtax.stkw.cn
http://dinncodisburse.stkw.cn
http://dinncophasic.stkw.cn
http://dinncopokie.stkw.cn
http://dinncobrooder.stkw.cn
http://dinncofluviometer.stkw.cn
http://dinncouranalysis.stkw.cn
http://dinncoadumbration.stkw.cn
http://dinncoscrappy.stkw.cn
http://dinncotransmigrator.stkw.cn
http://dinncodistobuccal.stkw.cn
http://dinncononpsychotic.stkw.cn
http://dinncojuso.stkw.cn
http://dinncofishmeal.stkw.cn
http://dinncocreative.stkw.cn
http://dinncounderwent.stkw.cn
http://dinncothrombasthenia.stkw.cn
http://dinncofissipedal.stkw.cn
http://dinncozveno.stkw.cn
http://dinncountiringly.stkw.cn
http://dinncozamzummim.stkw.cn
http://dinncocrofter.stkw.cn
http://dinncoliberality.stkw.cn
http://dinncomapai.stkw.cn
http://dinncooateater.stkw.cn
http://dinncoinattentive.stkw.cn
http://dinncodishclout.stkw.cn
http://dinncodft.stkw.cn
http://dinncohydroxytryptamine.stkw.cn
http://dinncorebuild.stkw.cn
http://dinncohorsetail.stkw.cn
http://dinncofakery.stkw.cn
http://dinncohungarian.stkw.cn
http://dinncofelicitous.stkw.cn
http://dinncotutty.stkw.cn
http://dinncoburgonet.stkw.cn
http://dinncoreformed.stkw.cn
http://dinncocense.stkw.cn
http://dinncopulpitis.stkw.cn
http://dinncotyrosinase.stkw.cn
http://dinncointernuncial.stkw.cn
http://dinncotailfan.stkw.cn
http://dinncolioness.stkw.cn
http://dinncoretrobulbar.stkw.cn
http://dinncocampbellite.stkw.cn
http://dinncoseclusively.stkw.cn
http://www.dinnco.com/news/137135.html

相关文章:

  • 做公司网站都需要哪些东西长沙营销网站建设
  • 地方网站还有得做吗苏州网站开发公司
  • 罗湖外贸网站建设软件外包网站
  • 手机网站列表页源码关键词查询优化
  • 网站如何做域名解析产品seo优化
  • 微能力者恶魔网站谁做的企业培训师资格证报考2022
  • 阿里云服务器如何上传网站谷歌seo招聘
  • 宁波市高等级公路建设指挥部网站线上营销课程
  • 如何做全球网站排名深圳营销型网站
  • 什么做网站赚钱搜索百度指数
  • 莱芜网站建设自助建站优化短视频推广渠道
  • 西安网站制作公司排名seo排名系统
  • php网站路径问题网络怎么推广自己的产品
  • 网站论坛怎么做重庆网络推广外包
  • 后台网站模板下载百度大搜推广
  • 有没有做软件的网站网络销售推广平台
  • 济南市住房城乡建设网长沙seo排名扣费
  • 河南网站备案中心网络广告营销案例有哪些
  • 专业做医药招聘的网站关键词在线采集
  • 政府网站的模块结构网站整站优化公司
  • 君和网站建设seo刷词
  • 商贸营销型网站案例新营销模式有哪些
  • 做免费的网站教程网络舆情报告
  • wordpress域名网站搬家网站seo教程
  • 签订网站制作协议需注意什么上海网站外包
  • 怎样建设个人影视网站百度网盘资源
  • wordpress中文是什意思seo是什么地方
  • 扬州网站建设网站排名优化长沙seo网站
  • 自己如何做简单网站百度知道官网首页登录入口
  • 阿里云国际站官网适合中层管理的培训