订单详情
This commit is contained in:
parent
f73ff35633
commit
d3d3907eb2
|
|
@ -7,7 +7,7 @@ VITE_API_URL = '/proxyApi'
|
|||
# 开发环境接口地址
|
||||
# VITE_proxyTarget = 'http://10.40.92.74:8080' #盛旭
|
||||
|
||||
VITE_proxyTarget = 'http://192.168.2.246:28080' # 马帅
|
||||
VITE_proxyTarget = 'http://localhost:18080' # 马帅
|
||||
# VITE_proxyTarget = 'http://192.168.0.244:28580' # 马帅
|
||||
# VITE_proxyTarget = 'http://192.168.2.129:18080' # 马帅
|
||||
|
||||
|
|
|
|||
|
|
@ -228,6 +228,18 @@ const routes: Array<RouteRecordRaw> = [
|
|||
isLogin: true
|
||||
},
|
||||
},
|
||||
/* 订单管理(订单详情) */
|
||||
{
|
||||
path: 'orderManagementInfo',
|
||||
name: 'orderManagementInfo',
|
||||
component: () => import('@/views/user/orderManagement/detail.vue'),
|
||||
meta: {
|
||||
title: '订单详情',
|
||||
keepAlive: true,
|
||||
AuthFlag: false,
|
||||
isLogin: false
|
||||
},
|
||||
},
|
||||
/* 订单管理(退租) */
|
||||
{
|
||||
path: 'rentinTermination',
|
||||
|
|
|
|||
|
|
@ -115,7 +115,7 @@ const clickConfirmReceipt = (row: any) => {
|
|||
const settleinTitle = ref('')
|
||||
/* 编辑 */
|
||||
const isEditDisabled = ref(false)
|
||||
// 装备入驻弹框显示隐藏
|
||||
// 退租检修弹框显示隐藏
|
||||
const dialogFormVisibleSettlein: any = ref(false)
|
||||
const equipmentDeploymentParams: any = ref({
|
||||
/* 设备名称 */
|
||||
|
|
@ -263,10 +263,33 @@ const equipmentDeploymentParams: any = ref({
|
|||
insureList: [],
|
||||
picList: []
|
||||
}
|
||||
// 打开入驻弹框
|
||||
// 打开退组检修弹框
|
||||
dialogFormVisibleSettlein.value = true
|
||||
}
|
||||
|
||||
const settlemoneyTitle = ref('')
|
||||
const moneParams: any = ref({
|
||||
/* 设备名称 */
|
||||
deviceName: '',
|
||||
deviceTypeList: [],
|
||||
deviceCount: 1,
|
||||
unitName: '',
|
||||
})
|
||||
// 退租检修弹框显示隐藏
|
||||
const dialogFormVisibleSettlemoney: any = ref(false)
|
||||
//费用结算
|
||||
const handleViewMoney = () => {
|
||||
settlemoneyTitle.value = '费用结算'
|
||||
moneParams.value = {
|
||||
/* 设备状态 */
|
||||
maStatus: 15,
|
||||
detectionList: [],
|
||||
insureList: [],
|
||||
picList: []
|
||||
}
|
||||
// 打开退组检修弹框
|
||||
dialogFormVisibleSettlemoney.value = true
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
|
|
@ -500,7 +523,7 @@ const equipmentDeploymentParams: any = ref({
|
|||
退租检修
|
||||
</el-button>
|
||||
<el-button
|
||||
@click="handleViewOrder(j)"
|
||||
@click="handleViewMoney(j)"
|
||||
type="text"
|
||||
size="mini"
|
||||
style="color: #blue; font-weight: bold"
|
||||
|
|
@ -716,6 +739,49 @@ const equipmentDeploymentParams: any = ref({
|
|||
</el-dialog>
|
||||
</div>
|
||||
|
||||
<!-- 费用结算弹框 -->
|
||||
<el-dialog v-model="dialogFormVisibleSettlemoney" :title="settlemoneyTitle"
|
||||
width="60%" align-center :close-on-click-modal="false">
|
||||
<div style="height: 80px;">
|
||||
<div
|
||||
class="info"
|
||||
style="margin-top: 5px;margin-bottom: 8px; display: flex; flex-wrap: wrap;"
|
||||
>
|
||||
<div class="item" style="width: 30%;flex-shrink: 0;margin-bottom: 5px;font-size: 16px;margin-left: 40px;">
|
||||
<span>订单编号:10000212135656</span>
|
||||
</div>
|
||||
|
||||
<div class="item" style="width: 30%;flex-shrink: 0;margin-bottom: 5px;font-size: 16px;">
|
||||
<span>装备套数:2套</span>
|
||||
</div>
|
||||
|
||||
<div class="item" style="width: 30%;flex-shrink: 0;margin-bottom: 5px;font-size: 16px;">
|
||||
<span>退租时间:2024-10-10 10:00:00</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div
|
||||
class="info"
|
||||
style="margin-top: 5px; display: flex; flex-wrap: wrap;"
|
||||
>
|
||||
<div class="item" style="width: 30%;flex-shrink: 0;margin-bottom: 5px;font-size: 16px;margin-left: 80px;">
|
||||
<span>结算单位:安徽送变电公司</span>
|
||||
</div>
|
||||
<div class="item" style="width: 30%;flex-shrink: 0;margin-bottom: 5px;font-size: 16px;">
|
||||
<span>租赁天数:30{{"/天"}}</span>
|
||||
</div>
|
||||
|
||||
<div class="item" style="width: 30%;flex-shrink: 0;margin-bottom: 5px;font-size: 16px;">
|
||||
<span>租赁费用(元):1800</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="title">
|
||||
<span class="title-sign"></span>
|
||||
<span class="title-text">退租检测信息</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue