Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c49f5ab27d | ||
|
|
2151b8e929 | ||
|
|
48d35a7d92 | ||
|
|
6d6b6e6266 | ||
|
|
2bfee9568b | ||
|
|
875a33bcc3 | ||
|
|
c4d1e1cf96 |
@@ -10,7 +10,7 @@
|
|||||||
export default {
|
export default {
|
||||||
globalData: {
|
globalData: {
|
||||||
// requestUrl: 'https://api.xayunmei.com/zhongcaiapi',
|
// requestUrl: 'https://api.xayunmei.com/zhongcaiapi',
|
||||||
requestUrl: 'http://121.40.189.20:9001',
|
requestUrl: 'http://121.40.189.20:8001',
|
||||||
},
|
},
|
||||||
onLaunch: function() {
|
onLaunch: function() {
|
||||||
this.initApp();
|
this.initApp();
|
||||||
|
|||||||
@@ -193,3 +193,11 @@ export function idType(data) {
|
|||||||
params: data
|
params: data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
//删除上传按钮
|
||||||
|
export function deleteFile(data) {
|
||||||
|
return request({
|
||||||
|
url: "/evidence/deleteFile",
|
||||||
|
method: "post",
|
||||||
|
data: data,
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -2,9 +2,9 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
// baseUrlZC: 'https://api.xayunmei.com/zhongcaiapi',
|
// baseUrlZC: 'https://api.xayunmei.com/zhongcaiapi',
|
||||||
// baseUrl: 'https://api.xayunmei.com/zhongcaiapitest',
|
// baseUrl: 'https://api.xayunmei.com/zhongcaiapitest',
|
||||||
// baseUrl: 'http://121.40.189.20:9001',
|
// baseUrlZC: 'http://172.16.1.26:8001',
|
||||||
baseUrlZC: 'https://api.xayunmei.com/zhongcaiapi',
|
// baseUrlZC: 'https://api.xayunmei.com/zhongcaiapi',
|
||||||
// baseUrlZC: 'https://api.xayunmei.com/zhongcaiapitest',
|
baseUrlZC: 'https://api.xayunmei.com/zhongcaiapitest',
|
||||||
// baseUrlTJ: 'https://api.xayunmei.com/tiaojieapitest',
|
// baseUrlTJ: 'https://api.xayunmei.com/tiaojieapitest',
|
||||||
baseUrlTJ: 'https://api.xayunmei.com/tiaojieapi',
|
baseUrlTJ: 'https://api.xayunmei.com/tiaojieapi',
|
||||||
// baseUrlZC: 'http://121.40.189.20:8001',
|
// baseUrlZC: 'http://121.40.189.20:8001',
|
||||||
|
|||||||
@@ -53,14 +53,15 @@
|
|||||||
<button class="btnItem" type="primary" size="mini" @tap="caseDetail">选择调解员</button> -->
|
<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"
|
<button class="btnItem" type="primary" @tap="clickType(item.id)" size="mini" v-for="(item) in buttonList"
|
||||||
:key="item.id"
|
: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="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="isAssignrbitrators">是否指派仲裁员</button>
|
<button class="btnItem" type="primary" size="mini" @tap="isAssignrbitrators">是否指派仲裁员</button>
|
||||||
<button class="btnItem" type="primary" size="mini" @tap="chooseMethod">选择仲裁方式</button> -->
|
<button class="btnItem" type="primary" size="mini" @tap="chooseMethod">选择仲裁方式</button> -->
|
||||||
</view>
|
</view>
|
||||||
<view class="btn" v-if="sysType == 1">
|
<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>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -281,7 +282,9 @@
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
created() {}
|
created() {
|
||||||
|
console.log(this.defalutVal)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -325,6 +328,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.textHidden {
|
.textHidden {
|
||||||
width: 300rpx;
|
width: 300rpx;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
|||||||
@@ -56,10 +56,10 @@
|
|||||||
<uni-easyinput :inputBorder="false" :disabled='true'
|
<uni-easyinput :inputBorder="false" :disabled='true'
|
||||||
v-model="formData.claimLiquidDamag" placeholder="" />
|
v-model="formData.claimLiquidDamag" placeholder="" />
|
||||||
</uni-forms-item>
|
</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"
|
<uni-data-checkbox class='checkbox' v-model="subnitForm.objectionAddEviden"
|
||||||
:localdata="maintenancetypeArr" @change='uploadEvidenceChange'></uni-data-checkbox>
|
:localdata="maintenancetypeArr" @change='uploadEvidenceChange'></uni-data-checkbox>
|
||||||
</uni-forms-item> -->
|
</uni-forms-item>
|
||||||
<!-- <uni-forms-item label="是否需要开庭审理" label-width="120px" name="openCourtHear" required>
|
<!-- <uni-forms-item label="是否需要开庭审理" label-width="120px" name="openCourtHear" required>
|
||||||
<uni-data-checkbox class='checkbox' v-model="subnitForm.openCourtHear"
|
<uni-data-checkbox class='checkbox' v-model="subnitForm.openCourtHear"
|
||||||
:localdata="arbitrationmethodArr" @change='arbitrationmethod'></uni-data-checkbox>
|
:localdata="arbitrationmethodArr" @change='arbitrationmethod'></uni-data-checkbox>
|
||||||
@@ -77,9 +77,9 @@
|
|||||||
<uni-data-checkbox class='checkbox' v-model="subnitForm.adjudicaCounter"
|
<uni-data-checkbox class='checkbox' v-model="subnitForm.adjudicaCounter"
|
||||||
:localdata="adjudicaCounterArr"></uni-data-checkbox>
|
:localdata="adjudicaCounterArr"></uni-data-checkbox>
|
||||||
</uni-forms-item> -->
|
</uni-forms-item> -->
|
||||||
<!-- <uni-forms-item label="上传证据" name="headImage" label-width="120px" v-if="caseFlag">
|
<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-file-picker ref="files" :auto-upload="false" @select="select" @delete="handleClose" :limit='1' />
|
||||||
</uni-forms-item> -->
|
</uni-forms-item>
|
||||||
<uni-forms-item label="是否书面审理" label-width="120px" name="respondentIsWrittenHear"
|
<uni-forms-item label="是否书面审理" label-width="120px" name="respondentIsWrittenHear"
|
||||||
required>
|
required>
|
||||||
<uni-data-checkbox class='checkbox' v-model="subnitForm.respondentIsWrittenHear"
|
<uni-data-checkbox class='checkbox' v-model="subnitForm.respondentIsWrittenHear"
|
||||||
@@ -259,7 +259,8 @@
|
|||||||
arbitratorList,
|
arbitratorList,
|
||||||
evidenceCrossexami,
|
evidenceCrossexami,
|
||||||
selectById,
|
selectById,
|
||||||
updateBooking
|
updateBooking,
|
||||||
|
deleteFile
|
||||||
} from '../../../api/handlecase/index.js'
|
} from '../../../api/handlecase/index.js'
|
||||||
import {
|
import {
|
||||||
uploadImage
|
uploadImage
|
||||||
@@ -269,6 +270,7 @@
|
|||||||
} from '@/utils/auth'
|
} from '@/utils/auth'
|
||||||
import moment from 'moment'
|
import moment from 'moment'
|
||||||
import config from '@/config'
|
import config from '@/config'
|
||||||
|
import constant from '../../../utils/constant.js'
|
||||||
const baseUrl = config.baseUrlZC
|
const baseUrl = config.baseUrlZC
|
||||||
const app = getApp()
|
const app = getApp()
|
||||||
export default {
|
export default {
|
||||||
@@ -395,6 +397,7 @@
|
|||||||
this.subnitForm.adjudicaCounterReason = this.reasontFormData.reasont
|
this.subnitForm.adjudicaCounterReason = this.reasontFormData.reasont
|
||||||
this.$refs.popup.close()
|
this.$refs.popup.close()
|
||||||
this.reasontFormData.reasont = ''
|
this.reasontFormData.reasont = ''
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
this.$modal.msgError("请输入反意理由")
|
this.$modal.msgError("请输入反意理由")
|
||||||
}
|
}
|
||||||
@@ -477,6 +480,7 @@
|
|||||||
},
|
},
|
||||||
// 文件上传
|
// 文件上传
|
||||||
select(e) {
|
select(e) {
|
||||||
|
console.log(e)
|
||||||
this.tempFilePaths = e.tempFilePaths;
|
this.tempFilePaths = e.tempFilePaths;
|
||||||
// loading
|
// loading
|
||||||
uni.showLoading({
|
uni.showLoading({
|
||||||
@@ -514,6 +518,14 @@
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
// 上传删除
|
||||||
|
handleClose(filelds){
|
||||||
|
console.log("关闭",filelds)
|
||||||
|
deleteFile({fileIds:[filelds.tempFile.uuid]}).then(res=>{
|
||||||
|
console.log(res)
|
||||||
|
})
|
||||||
|
|
||||||
|
},
|
||||||
// 获取仲裁员列表
|
// 获取仲裁员列表
|
||||||
getArbitratorList(val) {
|
getArbitratorList(val) {
|
||||||
arbitratorList({caseAppliId: val}).then(res => {
|
arbitratorList({caseAppliId: val}).then(res => {
|
||||||
@@ -555,6 +567,7 @@
|
|||||||
}
|
}
|
||||||
if (this.sysType == 1) {
|
if (this.sysType == 1) {
|
||||||
this.$refs.form.validate().then(res => {
|
this.$refs.form.validate().then(res => {
|
||||||
|
console.log(this.subnitForm)
|
||||||
this.evidenceCrossexamiFn(this.subnitForm)
|
this.evidenceCrossexamiFn(this.subnitForm)
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
console.log('表单错误信息:', err);
|
console.log('表单错误信息:', err);
|
||||||
@@ -596,11 +609,15 @@
|
|||||||
onLoad(data) {
|
onLoad(data) {
|
||||||
this.sysType = uni.getStorageSync('sysType')
|
this.sysType = uni.getStorageSync('sysType')
|
||||||
this.getData(data.id);
|
this.getData(data.id);
|
||||||
|
console.log(this.subnitForm)
|
||||||
this.subnitForm.caseId = Number(data.id);
|
this.subnitForm.caseId = Number(data.id);
|
||||||
|
if(this.sysType==2){
|
||||||
this.getArbitratorList(data.id)
|
this.getArbitratorList(data.id)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
|||||||
@@ -61,61 +61,8 @@
|
|||||||
this.caseList = []
|
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) {
|
} else if (this.sysType == 2) {
|
||||||
parms.miniProgressFlag = 1;
|
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
|
"condition": false
|
||||||
},
|
},
|
||||||
"compileType": "miniprogram",
|
"compileType": "miniprogram",
|
||||||
"libVersion": "3.1.1",
|
"libVersion": "3.4.3",
|
||||||
"appid": "wx91cb8459dca561b4",
|
"appid": "wx91cb8459dca561b4",
|
||||||
"projectname": "智慧仲裁",
|
"projectname": "智慧仲裁",
|
||||||
"condition": {},
|
"condition": {},
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
"projectname": "miniapp",
|
"projectname": "miniapp",
|
||||||
"setting": {
|
"setting": {
|
||||||
"compileHotReLoad": true,
|
"compileHotReLoad": true,
|
||||||
"urlCheck": false
|
"urlCheck": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user