Commit 353a07b8 authored by 黄奎's avatar 黄奎

页面修改

parent 705b7759
This diff is collapsed.
...@@ -79,19 +79,19 @@ ...@@ -79,19 +79,19 @@
<li> <li>
<input <input
type="button" type="button"
@click="goContract('onedayTripContract',0,'一日游合同')" @click="goContract('onedayTripContract', 0, '一日游合同')"
class="normalBtn" class="normalBtn"
value="一日游合同" value="一日游合同"
/> />
<input <input
type="button" type="button"
@click="goContract('DomesticTravelcontract',0,'境内旅游合同')" @click="goContract('DomesticTravelcontract', 0, '境内旅游合同')"
class="normalBtn" class="normalBtn"
value="境内旅游合同" value="境内旅游合同"
/> />
<input <input
type="button" type="button"
@click="goContract('SingleContract',0,'单项委托合同')" @click="goContract('SingleContract', 0, '单项委托合同')"
class="normalBtn" class="normalBtn"
value="单项委托合同" value="单项委托合同"
/> />
...@@ -127,6 +127,9 @@ ...@@ -127,6 +127,9 @@
<template v-else-if="item.CType == 3"> <template v-else-if="item.CType == 3">
一日游合同 一日游合同
</template> </template>
<template v-else-if="item.CType==1">
单向委托合同
</template>
</td> </td>
<td>{{ item.Tourists_Name }}</td> <td>{{ item.Tourists_Name }}</td>
<td>{{ item.Tourists_Tel }}</td> <td>{{ item.Tourists_Tel }}</td>
...@@ -146,7 +149,7 @@ ...@@ -146,7 +149,7 @@
type="primary" type="primary"
icon="el-icon-edit" icon="el-icon-edit"
circle circle
@click="goContract('onedayTripContract', item.ID,'一日游合同')" @click="goContract('onedayTripContract', item.ID, '一日游合同')"
></el-button> ></el-button>
</template> </template>
<template v-else-if="item.CType == 2"> <template v-else-if="item.CType == 2">
...@@ -154,7 +157,17 @@ ...@@ -154,7 +157,17 @@
type="primary" type="primary"
icon="el-icon-edit" icon="el-icon-edit"
circle circle
@click="goContract('DomesticTravelcontract', item.ID,'境内旅游合同')" @click="
goContract('DomesticTravelcontract', item.ID, '境内旅游合同')
"
></el-button>
</template>
<template v-else>
<el-button
type="primary"
icon="el-icon-edit"
circle
@click="goContract('SingleContract', item.ID, '单项委托合同')"
></el-button> ></el-button>
</template> </template>
</el-tooltip> </el-tooltip>
...@@ -276,7 +289,7 @@ export default { ...@@ -276,7 +289,7 @@ export default {
this.msg.pageIndex = val; this.msg.pageIndex = val;
this.getList(); this.getList();
}, },
goContract(path, Id,title) { goContract(path, Id, title) {
var nId = 0; var nId = 0;
if (Id && Id > 0) { if (Id && Id > 0) {
nId = Id; nId = Id;
......
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