Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c49f5ab27d | ||
|
|
2151b8e929 | ||
|
|
48d35a7d92 | ||
|
|
6d6b6e6266 | ||
|
|
2bfee9568b | ||
|
|
875a33bcc3 | ||
|
|
c4d1e1cf96 |
@@ -10,7 +10,7 @@
|
||||
export default {
|
||||
globalData: {
|
||||
// requestUrl: 'https://api.xayunmei.com/zhongcaiapi',
|
||||
requestUrl: 'http://121.40.189.20:9001',
|
||||
requestUrl: 'http://121.40.189.20:8001',
|
||||
},
|
||||
onLaunch: function() {
|
||||
this.initApp();
|
||||
|
||||
@@ -192,4 +192,12 @@ export function idType(data) {
|
||||
method: 'get',
|
||||
params: data
|
||||
})
|
||||
}
|
||||
//删除上传按钮
|
||||
export function deleteFile(data) {
|
||||
return request({
|
||||
url: "/evidence/deleteFile",
|
||||
method: "post",
|
||||
data: data,
|
||||
})
|
||||
}
|
||||
@@ -2,9 +2,9 @@
|
||||
module.exports = {
|
||||
// baseUrlZC: 'https://api.xayunmei.com/zhongcaiapi',
|
||||
// baseUrl: 'https://api.xayunmei.com/zhongcaiapitest',
|
||||
// baseUrl: 'http://121.40.189.20:9001',
|
||||
baseUrlZC: 'https://api.xayunmei.com/zhongcaiapi',
|
||||
// baseUrlZC: 'https://api.xayunmei.com/zhongcaiapitest',
|
||||
// baseUrlZC: 'http://172.16.1.26:8001',
|
||||
// baseUrlZC: 'https://api.xayunmei.com/zhongcaiapi',
|
||||
baseUrlZC: 'https://api.xayunmei.com/zhongcaiapitest',
|
||||
// baseUrlTJ: 'https://api.xayunmei.com/tiaojieapitest',
|
||||
baseUrlTJ: 'https://api.xayunmei.com/tiaojieapi',
|
||||
// baseUrlZC: 'http://121.40.189.20:8001',
|
||||
|
||||
@@ -21,9 +21,9 @@
|
||||
申请人:
|
||||
</view>
|
||||
<uni-tooltip :content="defalutVal.applicationName">
|
||||
<view class="textHidden">
|
||||
{{defalutVal.applicationName}}
|
||||
</view>
|
||||
<view class="textHidden">
|
||||
{{defalutVal.applicationName}}
|
||||
</view>
|
||||
</uni-tooltip>
|
||||
</view>
|
||||
<view class="listItem" style="margin-top:22rpx">
|
||||
@@ -31,9 +31,9 @@
|
||||
被申请人:
|
||||
</view>
|
||||
<uni-tooltip :content="defalutVal.respondentName">
|
||||
<view class="textHidden">
|
||||
{{defalutVal.respondentName}}
|
||||
</view>
|
||||
<view class="textHidden">
|
||||
{{defalutVal.respondentName}}
|
||||
</view>
|
||||
</uni-tooltip>
|
||||
</view>
|
||||
<view class="listItem">
|
||||
@@ -53,14 +53,15 @@
|
||||
<button class="btnItem" type="primary" size="mini" @tap="caseDetail">选择调解员</button> -->
|
||||
<button class="btnItem" type="primary" @tap="clickType(item.id)" size="mini" v-for="(item) in buttonList"
|
||||
:key="item.id"
|
||||
v-if="item.id == defalutVal.caseFlowId && checkPermi([item.buttonAuthFlag])&& (defalutVal.appOperatorFlag == 1 || defalutVal.resOperatorFlag == 1 || defalutVal.otherFlag == 1)">{{ item.nodeName }}</button>
|
||||
v-if="item.id == defalutVal.caseFlowId && checkPermi([item.buttonAuthFlag])&& (defalutVal.appOperatorFlag == 1 || defalutVal.resOperatorFlag == 1 || defalutVal.otherFlag == 1 || defalutVal.agentFlag == 1 || defalutVal.mediatorFlag == 1)">{{ item.nodeName }}</button>
|
||||
<!-- <button class="btnItem" type="primary" size="mini" @tap="confirmationEvidence">确认证据</button>
|
||||
<button class="btnItem" type="primary" size="mini" @tap="isAssignrbitrators">是否指派仲裁员</button>
|
||||
<button class="btnItem" type="primary" size="mini" @tap="isAssignrbitrators">是否指派仲裁员</button>
|
||||
<button class="btnItem" type="primary" size="mini" @tap="chooseMethod">选择仲裁方式</button> -->
|
||||
</view>
|
||||
<view class="btn" v-if="sysType == 1">
|
||||
<button class="btnItem" type="primary" size="mini" @tap="caseCrossExamin">案件质证</button>
|
||||
<button v-if="defalutVal.caseStatus==4 && checkPermi(['caseManagement:list:examin'])" class="btnItem"
|
||||
type="primary" size="mini" @tap="caseCrossExamin">案件质证</button>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
@@ -141,9 +142,9 @@
|
||||
}
|
||||
},
|
||||
// 案件质证
|
||||
caseCrossExamin(){
|
||||
caseCrossExamin() {
|
||||
uni.navigateTo({
|
||||
url:`/pages/handlecase/component/uploadEvidence?id=${this.defalutVal.id}`
|
||||
url: `/pages/handlecase/component/uploadEvidence?id=${this.defalutVal.id}`
|
||||
})
|
||||
},
|
||||
// 案件详情以及操作
|
||||
@@ -281,7 +282,9 @@
|
||||
});
|
||||
},
|
||||
},
|
||||
created() {}
|
||||
created() {
|
||||
console.log(this.defalutVal)
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -325,7 +328,8 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
.textHidden{
|
||||
|
||||
.textHidden {
|
||||
width: 300rpx;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
|
||||
@@ -56,10 +56,10 @@
|
||||
<uni-easyinput :inputBorder="false" :disabled='true'
|
||||
v-model="formData.claimLiquidDamag" placeholder="" />
|
||||
</uni-forms-item>
|
||||
<!-- <uni-forms-item label="是否有异议需要举证" label-width="120px" name="objectionAddEviden" required>
|
||||
<uni-forms-item label="是否有异议需要举证" label-width="120px" name="objectionAddEviden" required>
|
||||
<uni-data-checkbox class='checkbox' v-model="subnitForm.objectionAddEviden"
|
||||
:localdata="maintenancetypeArr" @change='uploadEvidenceChange'></uni-data-checkbox>
|
||||
</uni-forms-item> -->
|
||||
</uni-forms-item>
|
||||
<!-- <uni-forms-item label="是否需要开庭审理" label-width="120px" name="openCourtHear" required>
|
||||
<uni-data-checkbox class='checkbox' v-model="subnitForm.openCourtHear"
|
||||
:localdata="arbitrationmethodArr" @change='arbitrationmethod'></uni-data-checkbox>
|
||||
@@ -77,9 +77,9 @@
|
||||
<uni-data-checkbox class='checkbox' v-model="subnitForm.adjudicaCounter"
|
||||
:localdata="adjudicaCounterArr"></uni-data-checkbox>
|
||||
</uni-forms-item> -->
|
||||
<!-- <uni-forms-item label="上传证据" name="headImage" label-width="120px" v-if="caseFlag">
|
||||
<uni-file-picker ref="files" :auto-upload="false" @select="select" :limit='1' />
|
||||
</uni-forms-item> -->
|
||||
<uni-forms-item label="上传证据" name="headImage" label-width="120px" v-if="caseFlag">
|
||||
<uni-file-picker ref="files" :auto-upload="false" @select="select" @delete="handleClose" :limit='1' />
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="是否书面审理" label-width="120px" name="respondentIsWrittenHear"
|
||||
required>
|
||||
<uni-data-checkbox class='checkbox' v-model="subnitForm.respondentIsWrittenHear"
|
||||
@@ -259,7 +259,8 @@
|
||||
arbitratorList,
|
||||
evidenceCrossexami,
|
||||
selectById,
|
||||
updateBooking
|
||||
updateBooking,
|
||||
deleteFile
|
||||
} from '../../../api/handlecase/index.js'
|
||||
import {
|
||||
uploadImage
|
||||
@@ -269,6 +270,7 @@
|
||||
} from '@/utils/auth'
|
||||
import moment from 'moment'
|
||||
import config from '@/config'
|
||||
import constant from '../../../utils/constant.js'
|
||||
const baseUrl = config.baseUrlZC
|
||||
const app = getApp()
|
||||
export default {
|
||||
@@ -395,6 +397,7 @@
|
||||
this.subnitForm.adjudicaCounterReason = this.reasontFormData.reasont
|
||||
this.$refs.popup.close()
|
||||
this.reasontFormData.reasont = ''
|
||||
|
||||
} else {
|
||||
this.$modal.msgError("请输入反意理由")
|
||||
}
|
||||
@@ -477,6 +480,7 @@
|
||||
},
|
||||
// 文件上传
|
||||
select(e) {
|
||||
console.log(e)
|
||||
this.tempFilePaths = e.tempFilePaths;
|
||||
// loading
|
||||
uni.showLoading({
|
||||
@@ -514,6 +518,14 @@
|
||||
}
|
||||
})
|
||||
},
|
||||
// 上传删除
|
||||
handleClose(filelds){
|
||||
console.log("关闭",filelds)
|
||||
deleteFile({fileIds:[filelds.tempFile.uuid]}).then(res=>{
|
||||
console.log(res)
|
||||
})
|
||||
|
||||
},
|
||||
// 获取仲裁员列表
|
||||
getArbitratorList(val) {
|
||||
arbitratorList({caseAppliId: val}).then(res => {
|
||||
@@ -555,6 +567,7 @@
|
||||
}
|
||||
if (this.sysType == 1) {
|
||||
this.$refs.form.validate().then(res => {
|
||||
console.log(this.subnitForm)
|
||||
this.evidenceCrossexamiFn(this.subnitForm)
|
||||
}).catch(err => {
|
||||
console.log('表单错误信息:', err);
|
||||
@@ -596,8 +609,12 @@
|
||||
onLoad(data) {
|
||||
this.sysType = uni.getStorageSync('sysType')
|
||||
this.getData(data.id);
|
||||
console.log(this.subnitForm)
|
||||
this.subnitForm.caseId = Number(data.id);
|
||||
this.getArbitratorList(data.id)
|
||||
if(this.sysType==2){
|
||||
this.getArbitratorList(data.id)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -61,61 +61,8 @@
|
||||
this.caseList = []
|
||||
}
|
||||
|
||||
this.caseList.forEach(item => {
|
||||
switch (item.caseStatus) {
|
||||
case 0:
|
||||
item.caseStatusName = '立案申请'
|
||||
break;
|
||||
case 1:
|
||||
item.caseStatusName = '待缴费'
|
||||
break;
|
||||
case 2:
|
||||
item.caseStatusName = '待缴费确认'
|
||||
break;
|
||||
case 3:
|
||||
item.caseStatusName = '待确认是否应诉'
|
||||
break;
|
||||
case 4:
|
||||
item.caseStatusName = '待确认证据'
|
||||
break;
|
||||
case 5:
|
||||
item.caseStatusName = '待确定是否指派仲裁员'
|
||||
break;
|
||||
case 6:
|
||||
item.caseStatusName = '待组庭'
|
||||
break;
|
||||
case 7:
|
||||
item.caseStatusName = '待组庭确定'
|
||||
break;
|
||||
case 8:
|
||||
item.caseStatusName = '待组庭审核'
|
||||
break;
|
||||
case 9:
|
||||
item.caseStatusName = '待选择仲裁方式'
|
||||
break;
|
||||
case 10:
|
||||
item.caseStatusName = '待开庭'
|
||||
break;
|
||||
case 11:
|
||||
item.caseStatusName = '待生成仲裁文书'
|
||||
break;
|
||||
case 12:
|
||||
item.caseStatusName = '待确认仲裁文书'
|
||||
break;
|
||||
case 13:
|
||||
item.caseStatusName = '待仲裁文书用印'
|
||||
break;
|
||||
case 14:
|
||||
item.caseStatusName = '待仲裁文书用印审核'
|
||||
break;
|
||||
case 15:
|
||||
item.caseStatusName = '待仲裁文书送达'
|
||||
break;
|
||||
case 16:
|
||||
item.caseStatusName = '待案件归档'
|
||||
break;
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
})
|
||||
} else if (this.sysType == 2) {
|
||||
parms.miniProgressFlag = 1;
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
@@ -19,7 +19,7 @@
|
||||
"condition": false
|
||||
},
|
||||
"compileType": "miniprogram",
|
||||
"libVersion": "3.1.1",
|
||||
"libVersion": "3.4.3",
|
||||
"appid": "wx91cb8459dca561b4",
|
||||
"projectname": "智慧仲裁",
|
||||
"condition": {},
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
"projectname": "miniapp",
|
||||
"setting": {
|
||||
"compileHotReLoad": true,
|
||||
"urlCheck": false
|
||||
"urlCheck": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user