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

页面修改

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