|
|
@@ -113,12 +113,12 @@
|
|
113
|
113
|
'进入会议' }}</el-button>
|
|
114
|
114
|
<!-- v-if="this.recordArr.length <= 0 && mediationData.mediationMethod == '1'" -->
|
|
115
|
115
|
<el-button @click="openArbitrationresults" type="primary"
|
|
116
|
|
- v-if="this.recordArr.length <= 0 && mediationData.mediationMethod == '1'">确认会议结果</el-button>
|
|
|
116
|
+ v-if="this.recordArrMediate.length <= 0 && mediationData.mediationMethod == '1' && isSecretaryRole">确认会议结果</el-button>
|
|
117
|
117
|
<div slot="footer" class="dialog-footer">
|
|
118
|
118
|
<el-button @click="cancel" class="endbutton1" round>
|
|
119
|
119
|
<span>取 消</span>
|
|
120
|
120
|
</el-button>
|
|
121
|
|
- <el-button v-if="isSecretaryRole" @click="submitMediation" :disabled="this.recordArr.length <= 0 && mediationData.mediationMethod == '1'"
|
|
|
121
|
+ <el-button v-if="isSecretaryRole" @click="submitMediation" :disabled="this.recordArrMediate.length <= 0 && mediationData.mediationMethod == '1'"
|
|
122
|
122
|
class="endbutton1" type="primary" round>
|
|
123
|
123
|
<span>提 交</span>
|
|
124
|
124
|
</el-button>
|
|
|
@@ -247,6 +247,7 @@ export default {
|
|
247
|
247
|
},
|
|
248
|
248
|
/**提交仲裁结果 */
|
|
249
|
249
|
openArbitrationresults() {
|
|
|
250
|
+ this.recordArr = [];
|
|
250
|
251
|
caseApplicationSelectById({
|
|
251
|
252
|
id: this.mediationData.id
|
|
252
|
253
|
}).then(res => {
|