Commit 83459fe7 authored by zhangyanni's avatar zhangyanni

样式

parent 14db8639
......@@ -22,7 +22,7 @@
header-align="center"
prop="requirementName">
<template slot-scope="scope">
<el-link @click="handleToProject(scope.row)">{{scope.row.requirementName}}</el-link>
<el-link :underline="false" @click="handleToProject(scope.row)">{{scope.row.requirementName}}</el-link>
</template>
</el-table-column>
<el-table-column
......
......@@ -70,18 +70,18 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" @click="handleToDetail(scope.row)">
<el-button type="text" @click="handleToDetail(scope.row)">
{{$t("bigBusiness.detailInfo.look")}}
</el-button>
<el-button type="text" size="small" @click="handleSelf(scope.row)"
<el-button type="text" @click="handleSelf(scope.row)"
v-if="userInfo.empType==0">
{{scope.row.isCommunicated==1?$t("bigBusiness.detailInfo.hasGt"):$t("bigBusiness.detailInfo.oneself")}}
</el-button>
<el-button type="text" size="small" @click="handleSold(scope.row,2)"
<el-button type="text" @click="handleSold(scope.row,2)"
v-if="scope.row.isSoldOut&&operationVisible">
{{$t("bigBusiness.detailInfo.soldOut")}}
</el-button>
<el-button type="text" size="small" @click="handleSold(scope.row,1)"
<el-button type="text" @click="handleSold(scope.row,1)"
v-if="scope.row.isSoldOn&&operationVisible">
{{$t("bigBusiness.detailInfo.soldOn")}}
</el-button>
......
......@@ -80,7 +80,7 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" @click="handleToDetail(scope.row)">
<el-button type="text" @click="handleToDetail(scope.row)">
{{$t("myCollection.checkDetail")}}
</el-button>
</template>
......
......@@ -24,7 +24,7 @@
<img :src="scope.row.companyLogoUrl?scope.row.companyLogoUrl:require('../../../assets/img/bigBusinessLogo@2x.png')"
alt="">
<div>
<el-link @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
<el-link :underline="false" @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
</div>
</div>
</template>
......@@ -54,7 +54,7 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
<el-button type="text" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
</template>
</el-table-column>
</el-table>
......
......@@ -75,7 +75,7 @@
prop="projectName"
>
<template slot-scope="scope">
<el-link @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
<el-link :underline="false" @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
</template>
</el-table-column>
......@@ -99,7 +99,7 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" :disabled="!scope.row.hasPermissionDetail" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
<el-button type="text" :disabled="!scope.row.hasPermissionDetail" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
</template>
</el-table-column>
</el-table>
......
......@@ -80,7 +80,7 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" @click="handleToDetail(scope.row)">
<el-button type="text" @click="handleToDetail(scope.row)">
{{$t("myCollection.checkDetail")}}
</el-button>
</template>
......
......@@ -25,7 +25,7 @@
alt="">
<div>
<p>
<el-link @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
<el-link :underline="false" @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
</p>
</div>
</div>
......@@ -60,7 +60,7 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
<el-button type="text" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
</template>
</el-table-column>
</el-table>
......
......@@ -17,7 +17,7 @@
<img :src="scope.row.companyLogoUrl?scope.row.companyLogoUrl:require('../../../../assets/img/bigBusiness@2x.png')"
alt="">
<div>
<el-link @click="handleToRequire(scope.row)">{{scope.row.requirementName}}</el-link>
<el-link :underline="false" @click="handleToRequire(scope.row)">{{scope.row.requirementName}}</el-link>
</div>
</div>
</template>
......@@ -42,7 +42,7 @@
<img :src="scope.row.companyLogoUrl?scope.row.companyLogoUrl:require('../../../../assets/img/bigBusiness@2x.png')"
alt="">
<div>
<el-link @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
<el-link :underline="false" @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
</div>
</div>
</template>
......@@ -54,6 +54,9 @@
align="center"
header-align="center"
>
<template slot-scope="scope">
<p v-for="item in scope.row.projectIndustries">{{item}}</p>
</template>
</el-table-column>
<el-table-column
......@@ -69,7 +72,7 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" @click="handleChange(scope.row)">
<el-button type="text" @click="handleChange(scope.row)">
更新状态
</el-button>
</template>
......
......@@ -94,7 +94,7 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
<el-button type="text" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
</template>
</el-table-column>
</el-table>
......
......@@ -55,7 +55,7 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
<el-button type="text" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
</template>
</el-table-column>
</el-table>
......
......@@ -17,7 +17,7 @@
<img :src="scope.row.companyLogoUrl?scope.row.companyLogoUrl:require('../../../../assets/img/smallBusiness@2x.png')"
alt="">
<div>
<el-link @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
<el-link :underline="false" @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
</div>
</div>
</template>
......@@ -44,7 +44,7 @@
<img :src="scope.row.companyLogoUrl?scope.row.companyLogoUrl:require('../../../../assets/img/bigBusiness@2x.png')"
alt="">
<div>
<el-link @click="handleToRequire(scope.row)">{{scope.row.requirementName}}</el-link>
<el-link :underline="false" @click="handleToRequire(scope.row)">{{scope.row.requirementName}}</el-link>
</div>
</div>
</template>
......@@ -55,6 +55,9 @@
align="center"
header-align="center"
>
<template slot-scope="scope">
<p v-for="item in scope.row.projectIndustries">{{item}}</p>
</template>
</el-table-column>
<el-table-column
prop="processStateName"
......@@ -69,7 +72,7 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" @click="handleChange(scope.row)">
<el-button type="text" @click="handleChange(scope.row)">
更新状态
</el-button>
</template>
......
......@@ -148,7 +148,7 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" @click="handleLookAuth(scope.row)">
<el-button type="text" @click="handleLookAuth(scope.row)">
{{$t("bigBusiness.detailInfo.look")}}
</el-button>
</template>
......@@ -182,7 +182,7 @@
prop="projectName"
>
<template slot-scope="scope">
<el-link @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
<el-link :underline="false" @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
</template>
</el-table-column>
<el-table-column
......@@ -205,7 +205,7 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" :disabled="!scope.row.hasPermissionDetail" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
<el-button type="text" :disabled="!scope.row.hasPermissionDetail" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
</template>
</el-table-column>
</el-table>
......
......@@ -76,13 +76,13 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" @click="handleToDetail(scope.row)">
<el-button type="text" @click="handleToDetail(scope.row)">
{{$t("bigBusiness.detailInfo.look")}}
</el-button>
<el-button type="text" size="small" @click="handleSold(scope.row,2)" v-if="scope.row.isSoldOut">
<el-button type="text" @click="handleSold(scope.row,2)" v-if="scope.row.isSoldOut">
{{$t("bigBusiness.detailInfo.soldOut")}}
</el-button>
<el-button type="text" size="small" @click="handleSold(scope.row,1)" v-if="scope.row.isSoldOn">
<el-button type="text" @click="handleSold(scope.row,1)" v-if="scope.row.isSoldOn">
{{$t("bigBusiness.detailInfo.soldOn")}}
</el-button>
</template>
......
......@@ -21,7 +21,7 @@
<img :src="scope.row.companyLogoUrl?scope.row.companyLogoUrl:require('../../../../assets/img/smallBusiness@2x.png')"
alt="">
<div>
<el-link @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
<el-link :underline="false" @click="handleToProject(scope.row)">{{scope.row.projectName}}</el-link>
</div>
</div>
</template>
......@@ -51,7 +51,7 @@
header-align="center"
>
<template slot-scope="scope">
<el-button type="text" size="small" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
<el-button type="text" @click="handleToDetail(scope.row)">{{$t("bigBusiness.detailInfo.look")}}</el-button>
</template>
</el-table-column>
</el-table>
......
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