|
|
@ -222,7 +222,7 @@ |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
<el-dialog v-model="showSteps" title="退款进度" overflow draggable width="1206px" height="506px" :style="{ |
|
|
<el-dialog v-model="showSteps" title="退款进度" overflow draggable width="1206px" height="506px" :style="{ |
|
|
backgroundImage: 'url(/src/assets/images/背景图.png)', |
|
|
|
|
|
|
|
|
backgroundImage: `url(${BackgroundSvg})`, |
|
|
backgroundSize: 'cover', |
|
|
backgroundSize: 'cover', |
|
|
backgroundPosition: 'center' |
|
|
backgroundPosition: 'center' |
|
|
}"> |
|
|
}"> |
|
|
@ -302,6 +302,7 @@ |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
</template> |
|
|
</template> |
|
|
<script setup> |
|
|
<script setup> |
|
|
|
|
|
import BackgroundSvg from '@/assets/images/背景图.png' |
|
|
import { ref, onMounted } from 'vue' |
|
|
import { ref, onMounted } from 'vue' |
|
|
import { ElMessage } from 'element-plus' |
|
|
import { ElMessage } from 'element-plus' |
|
|
import API from '@/util/http.js' |
|
|
import API from '@/util/http.js' |
|
|
@ -520,7 +521,11 @@ const handlePass = async function () { |
|
|
status: 40, |
|
|
status: 40, |
|
|
headFinance: adminData.value.adminName, |
|
|
headFinance: adminData.value.adminName, |
|
|
auditId: auditRow.value.auditId, |
|
|
auditId: auditRow.value.auditId, |
|
|
goodsName: auditRow.value.goodsName |
|
|
|
|
|
|
|
|
goodsName: auditRow.value.goodsName, |
|
|
|
|
|
permanentGold: auditRow.value.permanentGold, |
|
|
|
|
|
freeGold: auditRow.value.freeGold, |
|
|
|
|
|
orderCode: auditRow.value.orderCode, |
|
|
|
|
|
jwcode: auditRow.value.jwcode |
|
|
} |
|
|
} |
|
|
const result = await API({ |
|
|
const result = await API({ |
|
|
url: '/Money/finalReview', |
|
|
url: '/Money/finalReview', |
|
|
|