Compare commits

..

No commits in common. 'dd049320f68e742d5306bcef3acb42fd01431908' and '696e96a0c0c055301987198014dfbaad866daa0d' have entirely different histories.

  1. 2
      src/permission.js
  2. 4
      src/views/Clue/Order/Comp/DialogAfterSale.vue
  3. 4
      src/views/Profile/NotifyMessageDetail.vue

@ -45,7 +45,7 @@ router.beforeEach(async (to, from, next) => {
const dictStore = useDictStoreWithOut()
const userStore = useUserStoreWithOut()
const permissionStore = usePermissionStoreWithOut()
if (!dictStore.getIsSetDict && to.path != '/nm-detail') {
if (!dictStore.getIsSetDict) {
await dictStore.setDictMap()
}
if (!userStore.getIsSetUser) {

@ -45,7 +45,7 @@
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="24" :offset="0" v-if="appStore.getAppInfo?.instanceType == 2">
<el-col :span="24" :offset="0">
<el-form-item label="是否退货" prop="isReturns">
<el-radio-group v-model="form.isReturns">
<el-radio :label="true"> 退货 </el-radio>
@ -79,9 +79,7 @@
<script setup name="DialogAfterSale">
import { getAfterSalePage, createAfterSale } from '@/api/clue/afterSale'
import { useAppStore } from '@/store/modules/app'
const appStore = useAppStore()
const message = useMessage() //
const show = ref(false)

@ -7,7 +7,7 @@
-->
<template>
<div class="container">
<ContentWrap style="max-width: 1000px; margin: 0 auto; overflow-x: auto">
<ContentWrap style="max-width: 1000px; margin: 0 auto">
<div class="text-center">
<div class="mb-10px" style="font-size: 24px; letter-spacing: 2px">
{{ info.title }}
@ -82,8 +82,6 @@ onMounted(() => {
text-align: left;
border-width: 1px;
box-sizing: border-box;
min-width: 44px;
word-break: break-all;
}
:deep(.el-card__body) {
padding: 20px 10px;

Loading…
Cancel
Save