Commit 980b2549f5a85757b681a3004ee7698fbb41312f

Authored by wuxw
1 parent e9fa382b

优化预约相关功能

src/components/scm/deleteReserveDining.vue
1 1 <template>
2 2 <el-dialog
3   - :title="$t('common.confirmOperation')"
  3 + :title="$t('common.delete')"
4 4 :visible.sync="visible"
5 5 width="30%"
6 6 @close="closeDialog"
... ...
src/views/scm/ownerDiningList.vue
... ... @@ -187,6 +187,7 @@ export default {
187 187 }
188 188 await exportData(params)
189 189 this.$message.success(this.$t('common.operationSuccess'))
  190 + this.$router.push('/pages/property/downloadTempFile?tab=下载中心')
190 191 } catch (error) {
191 192 this.$message.error(this.$t('ownerDining.exportError'))
192 193 } finally {
... ...
src/views/scm/reserveDiningManageList.vue
... ... @@ -226,7 +226,7 @@ export default {
226 226 this.$refs.addReserveDiningPerson.open(reserveDining)
227 227 },
228 228 _addCatalog() {
229   - this.$router.push('/scm/reserveCatalogManage?tab=reserveCatalog')
  229 + this.$router.push('/views/scm/reserveCatalogManage?tab=reserveCatalog')
230 230 },
231 231 _doDining() {
232 232 if (!this.reserveDiningManageInfo.reserveDinings || this.reserveDiningManageInfo.reserveDinings.length < 1) {
... ...