123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- <template>
- <div id="recruitLists">
- <el-row>
- <el-col :span="24" class="lists">
- <el-col :span="24" class="topTitle">
- <el-col class="rightTopL"> 我的订购</el-col>
- </el-col>
- <el-col :span="24" class="list">
- <el-col :span="24" class="tit">
- <el-col> 我的订购</el-col>
- </el-col>
- <el-col :span="24" v-for="(item, index) in recruitData" :key="index">
- <el-col class="xqborder">
- <el-col :span="24" class="fbListTop">
- <el-col :span="20"> {{ item.name }} </el-col>
- <el-col :span="4">
- {{ item.meta && item.meta.createdAt ? new Date(item.meta.createdAt).toLocaleDateString() : '' || '' }}
- </el-col>
- </el-col>
- <el-col :span="24" class="fbListCenter">
- <el-col :span="6" class="fimage">
- <el-image style="width:100px;height:100px" :src="item.url"></el-image>
- </el-col>
- <el-col :span="6" class="fbListCenterC">
- <p class="textOver">产品:{{ item.name }}</p>
- <p>类别:{{ item.totaltype === '0' ? '技术' : item.totaltype === '1' ? '产品' : item.totaltype === '2' ? '服务' : 'underdind' }}</p>
- <p class="listMoney">{{ item.price }}/{{ item.priceunit }}</p>
- </el-col>
- <el-col :span="6" class="fbListCenterTwo">
- <el-col :span="24">交易说明:</el-col>
- </el-col>
- <el-col :span="6" class="fbListCenterR">
- <el-col :span="24" class="bainji">
- <el-col :span="24"> {{ item.state }}</el-col>
- </el-col>
- </el-col>
- </el-col>
- </el-col>
- </el-col>
- <el-col class="page" :span="24">
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="currentPage"
- layout="total, prev, pager, next, jumper"
- :total="total"
- >
- </el-pagination>
- </el-col>
- </el-col>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- export default {
- name: 'recruitLists',
- props: {
- recruitData: null,
- columnName: null,
- total: null,
- },
- components: {},
- data: () => ({
- currentPage: 1,
- }),
- created() {},
- computed: {},
- methods: {
- handleSizeChange(val) {
- console.log(`每页 ${val} 条`);
- },
- handleCurrentChange(val) {
- console.log(`当前页: ${val}`);
- },
- clickDetailcm(row) {
- this.$emit('detailcm', { data: row });
- },
- },
- };
- </script>
- <style lang="less" scoped>
- p {
- padding: 0;
- margin: 0;
- }
- .xqborder {
- width: 889px;
- height: 183px;
- border: 1px solid #ccc;
- margin-top: 20px;
- }
- .fbListTop {
- width: 885px;
- height: 43px;
- margin-left: 1px;
- background: #fafafa;
- line-height: 43px;
- text-indent: 10px;
- font-size: 13px;
- color: #888888;
- }
- .fbListCenter {
- width: 870px;
- height: 119px;
- margin: 20px 0 0 12px;
- }
- .fimage {
- width: 110px;
- height: 119px;
- float: left;
- }
- .fbListCenterC {
- width: 196px;
- border-right: 1px solid #ccc;
- height: 100px;
- }
- .fbListCenterC p {
- padding: 5px 0;
- }
- .fbListCenterR {
- border-left: 1px solid #ccc;
- width: 125px;
- height: 100px;
- float: left;
- }
- .listName {
- width: 196px;
- height: 30px;
- font-size: 16px;
- color: #555555;
- }
- .listMoney {
- height: 30px;
- font-size: 16px;
- color: #fe0000;
- width: 196px;
- }
- .fbListCenterTwo {
- width: 385px;
- float: left;
- margin-left: 10px;
- margin-right: 10px;
- background: #fafafa;
- height: 100px;
- }
- .bainji {
- padding: 0 0 0 20px;
- }
- .list {
- height: 740px;
- padding: 0 20px 0 20px;
- overflow: hidden;
- }
- .topTitle {
- height: 60px;
- width: 950px;
- line-height: 60px;
- border-bottom: 1px solid #215299;
- }
- .rightTopL {
- width: 130px;
- height: 60px;
- float: left;
- color: rgb(255, 255, 255);
- font-size: 18px;
- text-align: center;
- font-family: 微软雅黑, Tahoma, Arial, Helvetica, STHeiti;
- background: rgb(33, 82, 153);
- }
- .tit {
- background-color: #ffffff;
- padding: 30px 0 0 0;
- line-height: 50px;
- width: 890px;
- height: 80px;
- border-bottom: 1px solid #ccc;
- background-color: #ffffff;
- color: #215299;
- }
- .page {
- padding: 11px 0 0 0;
- text-align: center;
- }
- </style>
|