Commit 4e98e18d authored by zhengke's avatar zhengke

修改合同

parent 235a6dfe
...@@ -173,7 +173,7 @@ export default { ...@@ -173,7 +173,7 @@ export default {
} }
</script> </script>
<style> <style>
@import "//at.alicdn.com/t/font_635492_3ih8u0oth65.css"; @import "//at.alicdn.com/t/font_635492_ocvro9vim9q.css";
@import "./assets/css/Semibold.css"; @import "./assets/css/Semibold.css";
@import "./assets/css/global/config.css"; @import "./assets/css/global/config.css";
@import "./assets/css/fileIcon.css"; @import "./assets/css/fileIcon.css";
......
This diff is collapsed.
...@@ -283,7 +283,7 @@ ...@@ -283,7 +283,7 @@
<td>{{ item.CreateTimeStr }}</td> <td>{{ item.CreateTimeStr }}</td>
<td> <td>
<el-tooltip class="item" effect="dark" content="审核通过" placement="top-start" v-if="item.Status==1"> <el-tooltip class="item" effect="dark" content="审核通过" placement="top-start" v-if="item.Status==1">
<el-button type="info" icon="iconfont icon-shenpi" circle @click="SubmitContract(item,2)"></el-button> <el-button type="primary" icon="iconfont icon-shenpi" circle @click="SubmitContract(item,2)"></el-button>
</el-tooltip> </el-tooltip>
<el-tooltip class="item" effect="dark" content="驳回" placement="top-start" v-if="item.Status==1"> <el-tooltip class="item" effect="dark" content="驳回" placement="top-start" v-if="item.Status==1">
<el-button type="info" icon="iconfont icon-shenhebohui" circle @click="SubmitContract(item,3)"> <el-button type="info" icon="iconfont icon-shenhebohui" circle @click="SubmitContract(item,3)">
...@@ -310,13 +310,13 @@ ...@@ -310,13 +310,13 @@
data() { data() {
return { return {
msgOut: { msgOut: {
contractNum: '', ContractNum: '',
productName: '', ProductName: '',
orderID: '', OrderID: '',
tcid: '', Tcid: '',
startDate: '', StartDate: '',
returnDate: '', ReturnDate: '',
auditContract: '' AuditContract: ''
}, },
dataListOut: [], dataListOut: [],
loadingOut: false, loadingOut: false,
...@@ -405,14 +405,25 @@ ...@@ -405,14 +405,25 @@
}, },
getListOutTract() { getListOutTract() {
this.loadingOut = true; this.loadingOut = true;
this.apiJavaPost("/api/contract/auditContract", this.msgOut, res => { //travelcontract_post_GetContractPageListService
this.apipost("travelcontract_post_GetContractPageListService",this.msgOut,res => {
this.loadingOut = false; this.loadingOut = false;
console.log(res,'ressss');
if (res.data.resultCode === 1) { if (res.data.resultCode === 1) {
this.dataListOut = res.data.data; this.dataListOut = res.data.data.pageData;
} else { } else {
this.Error(res.data.message); this.Error(res.data.message);
} }
}, null); });
// this.apiJavaPost("/api/contract/auditContract", this.msgOut, res => {
// this.loadingOut = false;
// if (res.data.resultCode === 1) {
// this.dataListOut = res.data.data;
// } else {
// this.Error(res.data.message);
// }
// }, null);
}, },
//审核通过或者驳回 //审核通过或者驳回
AuditElec(item, type) { AuditElec(item, type) {
......
...@@ -186,6 +186,12 @@ ...@@ -186,6 +186,12 @@
常用付款对象 常用付款对象
<i class="iconfont icon-right1"></i> <i class="iconfont icon-right1"></i>
</el-dropdown-item> </el-dropdown-item>
<el-dropdown-item class="clearfix _dropdown_other" @click.native="goUrlContract()">
<i class="iconfont icon-hetong" style="color:#f39c12"></i>
合同管理
<i class="iconfont icon-right1"></i>
</el-dropdown-item>
<!-- <el-dropdown-item class="clearfix _dropdown_other" @click.native="settingSys"> <!-- <el-dropdown-item class="clearfix _dropdown_other" @click.native="settingSys">
<i class="iconfont icon-menu-shezhi1" style="color:#2c3e50"></i> <i class="iconfont icon-menu-shezhi1" style="color:#2c3e50"></i>
设置 设置
...@@ -3537,6 +3543,11 @@ export default { ...@@ -3537,6 +3543,11 @@ export default {
let eid=this.getLocalStorage().EmployeeId; let eid=this.getLocalStorage().EmployeeId;
this.$router.push({ path: 'empBankAccount', query: { id: eid,type:10,blank:'y' } }); this.$router.push({ path: 'empBankAccount', query: { id: eid,type:10,blank:'y' } });
}, },
//跳转至合同管理
goUrlContract() {
this.$router.push({ path: 'ContractManage', query: {blank:'y' } });
},
//跳转至个人信息设置 //跳转至个人信息设置
goUrlPersonal(){ goUrlPersonal(){
this.$router.push({ path: 'PersonalInfoSet', query:{} }); this.$router.push({ path: 'PersonalInfoSet', query:{} });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment