@@ -3011,7 +3011,7 @@ export const constantRoutes = [ | |||||
path: '/onlineHome/arbitrationList', | path: '/onlineHome/arbitrationList', | ||||
name: 'arbitrationList', | name: 'arbitrationList', | ||||
meta: { | meta: { | ||||
title: '纠纷调请', | |||||
title: '纠纷调解', | |||||
hidden: true, | hidden: true, | ||||
}, | }, | ||||
component: (resolve) => require(['@/views/onlineHome/homestead/arbitration/arbitrationList'], resolve) | component: (resolve) => require(['@/views/onlineHome/homestead/arbitration/arbitrationList'], resolve) | ||||
@@ -3020,7 +3020,7 @@ export const constantRoutes = [ | |||||
path: '/onlineHome/arbitrationDetail', | path: '/onlineHome/arbitrationDetail', | ||||
name: 'arbitrationDetail', | name: 'arbitrationDetail', | ||||
meta: { | meta: { | ||||
title: '纠纷调请', | |||||
title: '纠纷调解', | |||||
hidden: true, | hidden: true, | ||||
}, | }, | ||||
component: (resolve) => require(['@/views/onlineHome/homestead/arbitration/arbitrationDetail'], resolve) | component: (resolve) => require(['@/views/onlineHome/homestead/arbitration/arbitrationDetail'], resolve) | ||||
@@ -1,7 +1,7 @@ | |||||
<template> | <template> | ||||
<div class="app-container"> | <div class="app-container"> | ||||
<van-nav-bar | <van-nav-bar | ||||
:title="(operationIntent == 3 ? '添加' : '') + '纠纷调请'" | |||||
:title="(operationIntent == 3 ? '添加' : '') + '纠纷调解'" | |||||
left-arrow | left-arrow | ||||
fixed | fixed | ||||
placeholder | placeholder | ||||
@@ -16,7 +16,7 @@ | |||||
<div class="main" style="padding-bottom: 1rem;"> | <div class="main" style="padding-bottom: 1rem;"> | ||||
<van-form ref="form"> | <van-form ref="form"> | ||||
<div :class="allowCUD && formEnabled.baseFormEnabled ? '' : 'noModify'"> | <div :class="allowCUD && formEnabled.baseFormEnabled ? '' : 'noModify'"> | ||||
<!-- <p class="topTit">纠纷调请</p>--> | |||||
<!-- <p class="topTit">纠纷调解</p>--> | |||||
<template> <!-- 申请 基本信息 --> | <template> <!-- 申请 基本信息 --> | ||||
<div> | <div> | ||||
<p class="main_title">基本信息</p> | <p class="main_title">基本信息</p> | ||||
@@ -48,7 +48,7 @@ | |||||
</div> | </div> | ||||
<div> | <div> | ||||
<p class="main_title">纠纷事项</p> | |||||
<p class="main_title"><span style="color: red;">*</span>纠纷事项</p> | |||||
<div class="main_box"> | <div class="main_box"> | ||||
<van-field | <van-field | ||||
rows="3" | rows="3" | ||||
@@ -58,7 +58,7 @@ | |||||
input-align="left" | input-align="left" | ||||
v-model="arbitrationData.disputes" | v-model="arbitrationData.disputes" | ||||
:readonly="!allowCUD || !formEnabled.baseFormEnabled" | :readonly="!allowCUD || !formEnabled.baseFormEnabled" | ||||
:rules="[{ required: true }]" required | |||||
:rules="[{ required: true }]" | |||||
/> | /> | ||||
</div> | </div> | ||||
</div> | </div> | ||||
@@ -74,7 +74,6 @@ | |||||
input-align="left" | input-align="left" | ||||
v-model="arbitrationData.remark" | v-model="arbitrationData.remark" | ||||
:readonly="!allowCUD || !formEnabled.baseFormEnabled" | :readonly="!allowCUD || !formEnabled.baseFormEnabled" | ||||
:rules="[{ required: true }]" required | |||||
/> | /> | ||||
</div> | </div> | ||||
</div> | </div> | ||||
@@ -2,7 +2,7 @@ | |||||
<div> | <div> | ||||
<van-nav-bar | <van-nav-bar | ||||
left-arrow | left-arrow | ||||
title="纠纷调请" | |||||
title="纠纷调解" | |||||
fixed | fixed | ||||
placeholder | placeholder | ||||
@click-left="$router.back()" | @click-left="$router.back()" | ||||
@@ -45,7 +45,7 @@ | |||||
<template #right> | <template #right> | ||||
<van-row style="height: 100%;"> | <van-row style="height: 100%;"> | ||||
<van-col style="height: 100%;"> | <van-col style="height: 100%;"> | ||||
<van-button v-if="allowCUD && item.disputeStatus == '1'" square text="编辑" type="info" style="height: 100%;" @click="editItem(item)"/> | |||||
<van-button v-if="allowCUD && item.disputeStatus == '1'" square text="修改" type="info" style="height: 100%;" @click="editItem(item)"/> | |||||
</van-col> | </van-col> | ||||
<van-col style="height: 100%;"> | <van-col style="height: 100%;"> | ||||
<van-button v-if="allowCUD && item.disputeStatus == '1'" square text="提交" type="primary" style="height: 100%;" @click="submitItem(item)"/> | <van-button v-if="allowCUD && item.disputeStatus == '1'" square text="提交" type="primary" style="height: 100%;" @click="submitItem(item)"/> | ||||
@@ -479,7 +479,7 @@ | |||||
</div> | </div> | ||||
<p style="margin-top: 5px;color: #666666;">无偿退出</p> | <p style="margin-top: 5px;color: #666666;">无偿退出</p> | ||||
</van-grid-item> | </van-grid-item> | ||||
<van-grid-item text="纠纷调请" @click="applicationList('arbitrationList')"> | |||||
<van-grid-item text="纠纷调解" @click="applicationList('arbitrationList')"> | |||||
<div slot="default"> | <div slot="default"> | ||||
<div class="icon" style="background:#1D6FE9;"> | <div class="icon" style="background:#1D6FE9;"> | ||||
<img src="../../../static/images/onlineHome/icon_Z13.png" alt /> | <img src="../../../static/images/onlineHome/icon_Z13.png" alt /> | ||||