Prechádzať zdrojové kódy

管理后台-新增、编辑按钮加锁

panyong 3 rokov pred
rodič
commit
a3083d6ffe

+ 6 - 3
htmldev/manage/src/views/business/oms/detail/index.vue

@@ -128,7 +128,7 @@
       </el-form>
       <span slot="footer" class="dialog-footer">
         <el-button @click="refundDialogVisible = false">取 消</el-button>
-        <el-button type="primary" @click="funRefund">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="funRefund">确 定</el-button>
       </span>
     </el-dialog>
   </div>
@@ -145,7 +145,8 @@ export default {
       form: {
         refund_type: 0,
         product_ids: []
-      }
+      },
+      booLock: false
     }
   },
   methods: {
@@ -169,11 +170,13 @@ export default {
     },
     // 退款
     async funRefund () {
-      const { code, msg } = await this.$fetch('/v1/user/order/refund', {
+      this.booLock = true
+      const { code } = await this.$fetch('/v1/user/order/refund', {
         id: this.$route.query.id,
         ...this.form,
         product_ids: this.form.product_ids.map(item => item.id)
       })
+      this.booLock = false
       if (code === 200) {
         this.$message.success('退款成功')
         this.fetchOrderDetail()

+ 5 - 2
htmldev/manage/src/views/business/outlet/list/details.vue

@@ -79,7 +79,7 @@
       </el-form>
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
-        <el-button type="primary" @click="handleSubmit">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="handleSubmit">确 定</el-button>
       </div>
     </el-dialog>
   </div>
@@ -113,7 +113,8 @@ export default {
         bar_place_reserve_start_time: '', // 座位预定开始时间
         bar_place_reserve_end_time: '' // 座位预定结束时间
       },
-      fileList: []
+      fileList: [],
+      booLock: false
     }
   },
   methods: {
@@ -143,9 +144,11 @@ export default {
       const url = this.exData.id ? '/v1/bar/modify' : '/v1/bar/add'
       this.$refs.form.validate(async valid => {
         if (valid) {
+          this.booLock = true
           const data = await this.$fetch(url, {
             ...this.form
           })
+          this.booLock = false
           if (data.code === 200) {
             this.$message.success('提交成功')
             this.$emit('success')

+ 5 - 2
htmldev/manage/src/views/business/place/list/details.vue

@@ -87,7 +87,7 @@
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
         <el-button @click.prevent="addDomain">新增桌号</el-button>
-        <el-button type="primary" @click="handleSubmit">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="handleSubmit">确 定</el-button>
       </div>
     </el-dialog>
   </div>
@@ -126,7 +126,8 @@ export default {
             value: ''
           }
         ]
-      }
+      },
+      booLock: false
     }
   },
   methods: {
@@ -149,10 +150,12 @@ export default {
       const url = this.exData.id ? '/v1/bar/place/template/modify' : '/v1/bar/place/template/add'
       this.$refs.form.validate(async valid => {
         if (valid) {
+          this.booLock = true
           const data = await this.$fetch(url, {
             ...this.form,
             place_price: yuan2Fen(this.form.place_price)
           })
+          this.booLock = false
           if (data.code === 200) {
             this.$message.success('提交成功')
             this.$emit('success')

+ 6 - 1
htmldev/manage/src/views/business/place/list/index.vue

@@ -43,6 +43,7 @@
                      @click="edit(scope.row)">编辑
           </el-button>
           <el-button type="text"
+                     :disabled="booLock"
                      @click="download(scope.row)">下载点单二维码
           </el-button>
           <el-button type="text"
@@ -87,7 +88,8 @@ export default {
       },
       searchForm: {},
       tableData: [],
-      tableUrl: '/v1/bar/place/template/list'
+      tableUrl: '/v1/bar/place/template/list',
+      booLock: false
     }
   },
   methods: {
@@ -113,6 +115,7 @@ export default {
       }).catch(() => {})
     },
     download (row) {
+      this.booLock = true
       axios({
         method: 'GET',
         url: '/v1/bar/place/template/download',
@@ -122,6 +125,7 @@ export default {
         responseType: 'blob',
         headers: { 'Content-Type': 'application/json; application/octet-stream' }
       }).then(response => {
+        this.booLock = false
         if (response.data.type === 'application/octet-stream') {
           /* 兼容ie内核,360浏览器的兼容模式 */
           if (window.navigator && window.navigator.msSaveOrOpenBlob) {
@@ -141,6 +145,7 @@ export default {
           this.$message.error('下载出错,请联系管理员')
         }
       }).catch(error => {
+        this.booLock = false
         this.$message.error(JSON.stringify(error))
       })
     }

+ 5 - 1
htmldev/manage/src/views/business/place/reserve/details.vue

@@ -46,6 +46,7 @@
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
         <el-button type="primary"
+                   :disabled="booLock"
                    @click="handleSubmit">保 存
         </el-button>
       </div>
@@ -76,7 +77,8 @@ export default {
         order_user_phone: '',
         place_name: '',
         order_sign_status: '0' // 签到状态(0未签到1已签到)
-      }
+      },
+      booLock: false
     }
   },
   methods: {
@@ -84,9 +86,11 @@ export default {
       const url = '/v1/prepare/order/sign'
       this.$refs.form.validate(async valid => {
         if (valid) {
+          this.booLock = true
           const data = await this.$fetch(url, {
             ...this.form
           })
+          this.booLock = false
           if (data.code === 200) {
             this.$message.success('提交成功')
             this.$emit('success')

+ 5 - 2
htmldev/manage/src/views/business/place/set/details.vue

@@ -113,7 +113,7 @@
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
         <el-button @click.prevent="addDomain">新增桌号</el-button>
-        <el-button type="primary" @click="handleSubmit">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="handleSubmit">确 定</el-button>
       </div>
     </el-dialog>
   </div>
@@ -179,7 +179,8 @@ export default {
             value: ''
           }
         ]
-      }
+      },
+      booLock: false
     }
   },
   methods: {
@@ -202,11 +203,13 @@ export default {
       const url = this.exData.id ? '/v1/bar/place/modify' : '/v1/bar/place/add'
       this.$refs.form.validate(async valid => {
         if (valid) {
+          this.booLock = true
           const data = await this.$fetch(url, {
             ...this.form,
             place_latest_time: `${this.form.place_time} ${this.form.place_latest_time}:00`,
             place_price: yuan2Fen(this.form.place_price)
           })
+          this.booLock = false
           if (data.code === 200) {
             this.$message.success('提交成功')
             this.$emit('success')

+ 5 - 2
htmldev/manage/src/views/business/pms/category/details.vue

@@ -37,7 +37,7 @@
       </el-form>
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
-        <el-button type="primary" @click="handleSubmit">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="handleSubmit">确 定</el-button>
       </div>
     </el-dialog>
   </div>
@@ -65,7 +65,8 @@ export default {
         category_name: '', // 分类名称
         category_sort_id: '', // 分类排序
         category_status: '1' // 分类状态(0下架1上架)
-      }
+      },
+      booLock: false
     }
   },
   methods: {
@@ -73,9 +74,11 @@ export default {
       const url = this.exData.id ? '/v1/bar/product/category/modify' : '/v1/bar/product/category/add'
       this.$refs.form.validate(async valid => {
         if (valid) {
+          this.booLock = true
           const data = await this.$fetch(url, {
             ...this.form
           })
+          this.booLock = false
           if (data.code === 200) {
             this.$message.success('提交成功')
             this.$emit('success')

+ 5 - 2
htmldev/manage/src/views/business/pms/goods/details.vue

@@ -165,7 +165,7 @@
       </el-form>
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
-        <el-button type="primary" @click="handleSubmit">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="handleSubmit">确 定</el-button>
       </div>
     </el-dialog>
   </div>
@@ -267,7 +267,8 @@ export default {
         sku: [{ required: true, validator: checkProductPrice, trigger: 'blur' }],
         attach: [{ validator: checkAttachContent, trigger: ['blur', 'change'] }]
       },
-      fileList: []
+      fileList: [],
+      booLock: false
     }
   },
   methods: {
@@ -351,7 +352,9 @@ export default {
               attach_content: item.attach_content.join(',')
             })) : []
           }
+          this.booLock = true
           const data = await this.$fetch(url, postData)
+          this.booLock = false
           if (data.code === 200) {
             this.$message.success('提交成功')
             this.$emit('success')

+ 5 - 2
htmldev/manage/src/views/business/pms/goodsAttr/details.vue

@@ -39,7 +39,7 @@
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
         <el-button @click="addAttachContent">新增选项名</el-button>
-        <el-button type="primary" @click="handleSubmit">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="handleSubmit">确 定</el-button>
       </div>
     </el-dialog>
   </div>
@@ -70,7 +70,8 @@ export default {
             name: ''
           }
         ]
-      }
+      },
+      booLock: false
     }
   },
   methods: {
@@ -93,7 +94,9 @@ export default {
             ...this.form,
             attach_content: this.form.attach_content.map(item => item.name).join(',')
           }
+          this.booLock = true
           const data = await this.$fetch(url, postData)
+          this.booLock = false
           if (data.code === 200) {
             this.$message.success('提交成功')
             this.$emit('success')

+ 5 - 2
htmldev/manage/src/views/business/saveWine/details.vue

@@ -76,7 +76,7 @@
       </el-form>
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
-        <el-button type="primary" @click="handleSubmit">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="handleSubmit">确 定</el-button>
       </div>
     </el-dialog>
   </div>
@@ -111,7 +111,8 @@ export default {
         storage_status: '1', // 存酒状态(0存酒中1已取出)
         storage_remark: '' // 存酒备注
       },
-      fileList: []
+      fileList: [],
+      booLock: false
     }
   },
   methods: {
@@ -147,10 +148,12 @@ export default {
       const url = this.exData.id ? '/v1/user/storage/modify' : ''
       this.$refs.form.validate(async valid => {
         if (valid) {
+          this.booLock = true
           const data = await this.$fetch(url, {
             ...this.form,
             storage_img_url: this.form.storage_img_url[0]
           })
+          this.booLock = false
           if (data.code === 200) {
             this.$message.success('提交成功')
             this.$emit('success')

+ 5 - 2
htmldev/manage/src/views/business/sms/plan/details.vue

@@ -66,7 +66,7 @@
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
         <el-button @click="addPostData">新增时间段</el-button>
-        <el-button type="primary" @click="handleSubmit">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="handleSubmit">确 定</el-button>
       </div>
     </el-dialog>
   </div>
@@ -122,7 +122,8 @@ export default {
             date: null
           }
         ]
-      }
+      },
+      booLock: false
     }
   },
   computed: {
@@ -158,12 +159,14 @@ export default {
 
       this.$refs.form.validate(async valid => {
         if (valid) {
+          this.booLock = true
           const postData = this.form.postData.map(item => ({
             user_id: item.user_id,
             plan_time: this.plan_time,
             plan_start_time: item.date[0],
             plan_end_time: item.date[1]
           }))
+          this.booLock = false
           const data = await this.$fetch(url, {
             plans: postData
           })

+ 5 - 2
htmldev/manage/src/views/business/sms/plan/playList.vue

@@ -38,7 +38,7 @@
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
         <el-button @click="addSong">新增歌曲</el-button>
-        <el-button type="primary" @click="handleSubmit">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="handleSubmit">确 定</el-button>
       </div>
     </el-dialog>
   </div>
@@ -76,7 +76,8 @@ export default {
       plan_author_name: '', // 歌手名
       plan_start_time: '', // 演唱日期
       plan_end_time: '',
-      musicData: []
+      musicData: [],
+      booLock: false
     }
   },
   methods: {
@@ -137,9 +138,11 @@ export default {
       const url = this.exData.id ? '/v1/bar/show/plan/song/add' : '/v1/bar/show/plan/song/add'
       this.$refs.form.validate(async valid => {
         if (valid) {
+          this.booLock = true
           const data = await this.$fetch(url, {
             ...this.form
           })
+          this.booLock = false
           if (data.code === 200) {
             this.$message.success('提交成功')
             this.$emit('success')

+ 5 - 2
htmldev/manage/src/views/business/sms/playList/details.vue

@@ -44,7 +44,7 @@
       </el-form>
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
-        <el-button type="primary" @click="handleSubmit">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="handleSubmit">确 定</el-button>
       </div>
     </el-dialog>
   </div>
@@ -76,7 +76,8 @@ export default {
         song_auth_name: '', // 歌曲作者
         song_status: '1', // 歌曲状态(0无效1有效)
         song_price: '' // 歌曲价格
-      }
+      },
+      booLock: false
     }
   },
   methods: {
@@ -84,10 +85,12 @@ export default {
       const url = this.exData.id ? '/v1/user/song/modify' : '/v1/user/song/add'
       this.$refs.form.validate(async valid => {
         if (valid) {
+          this.booLock = true
           const data = await this.$fetch(url, {
             ...this.form,
             song_price: yuan2Fen(this.form.song_price)
           })
+          this.booLock = false
           if (data.code === 200) {
             this.$message.success('提交成功')
             this.$emit('success')

+ 5 - 2
htmldev/manage/src/views/ums/boss/details.vue

@@ -63,7 +63,7 @@
       </el-form>
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
-        <el-button type="primary" @click="handleSubmit">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="handleSubmit">确 定</el-button>
       </div>
     </el-dialog>
   </div>
@@ -95,7 +95,8 @@ export default {
         phone: '', // 手机号码
         code: '', // 验证码
         user_sign_status: '1', // 艺人签约状态(0未签约1已签约)
-      }
+      },
+      booLock: false
     }
   },
   methods: {
@@ -103,9 +104,11 @@ export default {
       const url = this.exData.id ? '/v1/user/member/song/modify' : ''
       this.$refs.form.validate(async valid => {
         if (valid) {
+          this.booLock = true
           const data = await this.$fetch(url, {
             ...this.form
           })
+          this.booLock = false
           if (data.code === 200) {
             this.$message.success('提交成功')
             this.$emit('success')

+ 5 - 2
htmldev/manage/src/views/ums/singer/details.vue

@@ -77,7 +77,7 @@
       </el-form>
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
-        <el-button type="primary" @click="handleSubmit">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="handleSubmit">确 定</el-button>
       </div>
     </el-dialog>
   </div>
@@ -111,7 +111,8 @@ export default {
         plan_cover_url: [],
         user_sign_status: '1', // 艺人签约状态(0未签约1已签约)
       },
-      fileList: []
+      fileList: [],
+      booLock: false
     }
   },
   methods: {
@@ -147,10 +148,12 @@ export default {
       const url = this.exData.id ? '/v1/user/member/song/modify' : ''
       this.$refs.form.validate(async valid => {
         if (valid) {
+          this.booLock = true
           const data = await this.$fetch(url, {
             ...this.form,
             plan_cover_url: this.form.plan_cover_url[0]
           })
+          this.booLock = false
           if (data.code === 200) {
             this.$message.success('提交成功')
             this.$emit('success')

+ 5 - 2
htmldev/manage/src/views/ums/worker/details.vue

@@ -63,7 +63,7 @@
       </el-form>
       <div slot="footer" class="dialog-footer text-center">
         <el-button @click="dialog = false">取 消</el-button>
-        <el-button type="primary" @click="handleSubmit">确 定</el-button>
+        <el-button type="primary" :disabled="booLock" @click="handleSubmit">确 定</el-button>
       </div>
     </el-dialog>
   </div>
@@ -95,7 +95,8 @@ export default {
         phone: '', // 手机号码
         code: '', // 验证码
         user_sign_status: '1', // 艺人签约状态(0未签约1已签约)
-      }
+      },
+      booLock: false
     }
   },
   methods: {
@@ -103,9 +104,11 @@ export default {
       const url = this.exData.id ? '/v1/user/member/song/modify' : ''
       this.$refs.form.validate(async valid => {
         if (valid) {
+          this.booLock = true
           const data = await this.$fetch(url, {
             ...this.form
           })
+          this.booLock = false
           if (data.code === 200) {
             this.$message.success('提交成功')
             this.$emit('success')