首页图标链接
This commit is contained in:
parent
4f48e9c03a
commit
82795ee36e
|
@ -8,25 +8,25 @@
|
|||
</div>
|
||||
</template>
|
||||
<div class="card-body">
|
||||
<div>
|
||||
<div @click="toTicket">
|
||||
<el-badge :value="operationnumber" class="item">
|
||||
<el-button class="projecting" icon="el-icon-bell" type="danger" size="small"></el-button>
|
||||
</el-badge>
|
||||
<div style="font-size: 16px">危险作业</div>
|
||||
</div>
|
||||
<div>
|
||||
<div @click="toRparty">
|
||||
<el-badge :value="rpjnumber" class="item">
|
||||
<el-button class="projecting" icon="el-icon-user" type="success" size="small"></el-button>
|
||||
</el-badge>
|
||||
<div style="font-size: 16px">相关方入厂</div>
|
||||
</div>
|
||||
<div>
|
||||
<div @click="toVisitor">
|
||||
<el-badge :value="visitnumber2" class="item">
|
||||
<el-button class="projecting" icon="el-icon-van" type="warning" size="small"></el-button>
|
||||
</el-badge>
|
||||
<div style="font-size: 16px">拉送货</div>
|
||||
</div>
|
||||
<div>
|
||||
<div @click="toVisitor">
|
||||
<el-badge :value="visitnumber" class="item">
|
||||
<el-button class="projecting" icon="el-icon-view" type="primary" size="small"></el-button>
|
||||
</el-badge>
|
||||
|
@ -122,6 +122,24 @@ export default {
|
|||
this.getVisit2();
|
||||
},
|
||||
methods: {
|
||||
toTicket() {
|
||||
this.$router.push({
|
||||
name: "operation",
|
||||
query: {},
|
||||
});
|
||||
},
|
||||
toRparty() {
|
||||
this.$router.push({
|
||||
name: "rpj",
|
||||
query: {},
|
||||
});
|
||||
},
|
||||
toVisitor() {
|
||||
this.$router.push({
|
||||
name: "visit",
|
||||
query: {},
|
||||
});
|
||||
},
|
||||
//工单待办
|
||||
async getdutyAgg() {
|
||||
let res = await this.$API.wf.ticket.dutyAgg.req({ page: 0 });
|
||||
|
|
Loading…
Reference in New Issue