|
|
|
@ -1,211 +1,211 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div class="app-container home">
|
|
|
|
|
<div>
|
|
|
|
|
<h2>欢迎使用供应商自助管理系统</h2>
|
|
|
|
|
<h2>欢迎使用</h2>
|
|
|
|
|
<el-divider/>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 分割线 -->
|
|
|
|
|
<div class="mt10 grid-container grid-container3" style="height: 15%">
|
|
|
|
|
<el-card class="grid-item" body-style="padding:0px;height:100%" v-hasPermi="['home:index:product']">
|
|
|
|
|
<el-row>
|
|
|
|
|
<div class="height-full fl center ml20" style="width: 30%">
|
|
|
|
|
<el-image style="border-radius: 4%;width: 80%;height: 80%"
|
|
|
|
|
:src="productSvg">
|
|
|
|
|
<div slot="placeholder" class="image-slot">
|
|
|
|
|
加载中<span class="dot">...</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-image>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="height-full fr center mr20">
|
|
|
|
|
<span class="header d-block">
|
|
|
|
|
已对照产品
|
|
|
|
|
</span>
|
|
|
|
|
<span class="d-block mt10" :style="{'font-size': '32px','font-weight': 'bolder',color:'#394047'}">
|
|
|
|
|
{{ productCount }}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<el-card class="grid-item" body-style="padding:0px;height:100%" v-hasPermi="['home:index:invWarn']">
|
|
|
|
|
<el-row>
|
|
|
|
|
<div class="height-full fl center ml20" style="width: 30%">
|
|
|
|
|
<el-image style="border-radius: 4%;width: 80%;height: 80%"
|
|
|
|
|
:src="invSvg">
|
|
|
|
|
<div slot="placeholder" class="image-slot">
|
|
|
|
|
加载中<span class="dot">...</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-image>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="height-full fr center mr20" @click="linkPage('/remind/invRemindMsg')">
|
|
|
|
|
<span class="header d-block">
|
|
|
|
|
库存预警
|
|
|
|
|
</span>
|
|
|
|
|
<span class="d-block mt10" :style="{'font-size': '32px','font-weight': 'bolder',color:'#FF0000'}">
|
|
|
|
|
{{ invMsgCount }}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<el-card class="grid-item" body-style="padding:0px;height:100%" v-hasPermi="['home:index:certWarn']">
|
|
|
|
|
<el-row>
|
|
|
|
|
<div class="height-full fl center ml20" style="width: 30%">
|
|
|
|
|
<el-image style="border-radius: 4%;width: 80%;height: 80%"
|
|
|
|
|
:src="certSvg">
|
|
|
|
|
<div slot="placeholder" class="image-slot">
|
|
|
|
|
加载中<span class="dot">...</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-image>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="height-full fr center mr20" @click="linkPage('/remind/sup/certRemind')">
|
|
|
|
|
<span class="header d-block">
|
|
|
|
|
资质预警
|
|
|
|
|
</span>
|
|
|
|
|
<span class="d-block mt10" :style="{'font-size': '32px','font-weight': 'bolder',color:'#FF0000'}"
|
|
|
|
|
>
|
|
|
|
|
{{ certMsgCount }}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-card>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 分割线 -->
|
|
|
|
|
<div class="m0 grid-container grid-container2" style="height: calc(40%);margin-top: 10px">
|
|
|
|
|
<el-card class="grid-item" body-style="padding:0px;height:100%" v-hasPermi="['home:index:todo']">
|
|
|
|
|
<div slot="header" class="header">
|
|
|
|
|
<el-icon class="el-icon-s-management"/>
|
|
|
|
|
待办事项{{ `(${todoCount}条)` }}
|
|
|
|
|
<div class="fr">
|
|
|
|
|
<el-button type="text" style="font-size: 15px;color: unset" @click="getSysMsgTodoList">
|
|
|
|
|
<el-icon class="el-icon-refresh"/>
|
|
|
|
|
重新加载
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="text" style="font-size: 15px;color: unset"
|
|
|
|
|
@click.stop="">
|
|
|
|
|
更多
|
|
|
|
|
<el-icon class="el-icon-d-arrow-right"/>
|
|
|
|
|
</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table
|
|
|
|
|
v-loading="msgLoading"
|
|
|
|
|
:data="msgList"
|
|
|
|
|
height="calc(100% - 45px)"
|
|
|
|
|
stripe
|
|
|
|
|
style="">
|
|
|
|
|
<el-table-column
|
|
|
|
|
type="index"
|
|
|
|
|
label="序号"
|
|
|
|
|
width="50"/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="消息编码"
|
|
|
|
|
prop="code"
|
|
|
|
|
width="120"/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="消息类型"
|
|
|
|
|
prop="msgTypeName"
|
|
|
|
|
width="120"/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="消息内容"
|
|
|
|
|
prop="msgContent"
|
|
|
|
|
width="280"/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="处理状态"
|
|
|
|
|
prop="dealStatusName"
|
|
|
|
|
width="120"/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="推送状态"
|
|
|
|
|
prop="pushStatusName"
|
|
|
|
|
width="120"/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="仓库"
|
|
|
|
|
prop="invName"
|
|
|
|
|
width="120"/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="部门"
|
|
|
|
|
prop="deptName"
|
|
|
|
|
width="120"/>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="创建时间"
|
|
|
|
|
prop="createTime"
|
|
|
|
|
width="140"/>
|
|
|
|
|
<el-table-column label="操作" width="80" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
@click="linkPage('/system/msg/sysMsgTodo')"
|
|
|
|
|
>处理
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</el-card>
|
|
|
|
|
<el-card class="grid-item" body-style="padding:0px;height:100%" v-hasPermi="['home:index:ioAudit']">
|
|
|
|
|
<div slot="header" class="header">
|
|
|
|
|
<el-icon class="el-icon-s-platform"/>
|
|
|
|
|
审核送货单{{ `(${orderTotal}条)` }}
|
|
|
|
|
<div class="fr">
|
|
|
|
|
<el-button type="text" style="font-size: 15px;color: unset" @click="getOrderList">
|
|
|
|
|
<el-icon class="el-icon-refresh"/>
|
|
|
|
|
重新加载
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="text" style="font-size: 15px;color: unset"
|
|
|
|
|
@click="linkPage('/pur/auditDelivery')">更多
|
|
|
|
|
<el-icon class="el-icon-d-arrow-right"/>
|
|
|
|
|
</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table
|
|
|
|
|
v-loading="orderLoading"
|
|
|
|
|
:data="orderList"
|
|
|
|
|
height="calc(100% - 45px)"
|
|
|
|
|
stripe>
|
|
|
|
|
<el-table-column
|
|
|
|
|
type="index"
|
|
|
|
|
label="序号"
|
|
|
|
|
width="50"/>
|
|
|
|
|
<el-table-column label="送货单号" prop="billNo" width="180"/>
|
|
|
|
|
<el-table-column label="单据类型" prop="billTypeName" width="150"/>
|
|
|
|
|
<el-table-column label="送货单位" prop="fromName" width="220"/>
|
|
|
|
|
<el-table-column label="创建时间" prop="createTime" width="150"/>
|
|
|
|
|
<el-table-column label="核对时间" prop="checkTime" width="150"/>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="采购部门" prop="deptName" width="120">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="收货仓库" prop="invName" width="120">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="核对人" prop="checkUserName" width="120">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="来源单号" prop="corpOrderId" width="180"/>
|
|
|
|
|
<!-- <el-table-column label="来源" prop="fromType" width="120">-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <span>{{ fromTypeMap[scope.row.fromType] }}</span>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-table-column label="审核状态" prop="status" width="100">-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <el-tag :type="statusFilterType(scope.row.status)">{{-->
|
|
|
|
|
<!-- checkStatus[scope.row.status]-->
|
|
|
|
|
<!-- }}-->
|
|
|
|
|
<!-- </el-tag>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<el-table-column label="备注" prop="remark" width="180"/>
|
|
|
|
|
<el-table-column label="操作" width="80" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
@click="linkPage('/pur/auditDelivery')"
|
|
|
|
|
>处理
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</el-card>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- <!– 分割线 –>-->
|
|
|
|
|
<!-- <div class="mt10 grid-container grid-container3" style="height: 15%">-->
|
|
|
|
|
<!-- <el-card class="grid-item" body-style="padding:0px;height:100%" v-hasPermi="['home:index:product']">-->
|
|
|
|
|
<!-- <el-row>-->
|
|
|
|
|
<!-- <div class="height-full fl center ml20" style="width: 30%">-->
|
|
|
|
|
<!-- <el-image style="border-radius: 4%;width: 80%;height: 80%"-->
|
|
|
|
|
<!-- :src="productSvg">-->
|
|
|
|
|
<!-- <div slot="placeholder" class="image-slot">-->
|
|
|
|
|
<!-- 加载中<span class="dot">...</span>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </el-image>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- <div class="height-full fr center mr20">-->
|
|
|
|
|
<!-- <span class="header d-block">-->
|
|
|
|
|
<!-- 已对照产品-->
|
|
|
|
|
<!-- </span>-->
|
|
|
|
|
<!-- <span class="d-block mt10" :style="{'font-size': '32px','font-weight': 'bolder',color:'#394047'}">-->
|
|
|
|
|
<!-- {{ productCount }}-->
|
|
|
|
|
<!-- </span>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </el-row>-->
|
|
|
|
|
<!-- </el-card>-->
|
|
|
|
|
|
|
|
|
|
<!-- <el-card class="grid-item" body-style="padding:0px;height:100%" v-hasPermi="['home:index:invWarn']">-->
|
|
|
|
|
<!-- <el-row>-->
|
|
|
|
|
<!-- <div class="height-full fl center ml20" style="width: 30%">-->
|
|
|
|
|
<!-- <el-image style="border-radius: 4%;width: 80%;height: 80%"-->
|
|
|
|
|
<!-- :src="invSvg">-->
|
|
|
|
|
<!-- <div slot="placeholder" class="image-slot">-->
|
|
|
|
|
<!-- 加载中<span class="dot">...</span>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </el-image>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- <div class="height-full fr center mr20" @click="linkPage('/remind/invRemindMsg')">-->
|
|
|
|
|
<!-- <span class="header d-block">-->
|
|
|
|
|
<!-- 库存预警-->
|
|
|
|
|
<!-- </span>-->
|
|
|
|
|
<!-- <span class="d-block mt10" :style="{'font-size': '32px','font-weight': 'bolder',color:'#FF0000'}">-->
|
|
|
|
|
<!-- {{ invMsgCount }}-->
|
|
|
|
|
<!-- </span>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </el-row>-->
|
|
|
|
|
<!-- </el-card>-->
|
|
|
|
|
|
|
|
|
|
<!-- <el-card class="grid-item" body-style="padding:0px;height:100%" v-hasPermi="['home:index:certWarn']">-->
|
|
|
|
|
<!-- <el-row>-->
|
|
|
|
|
<!-- <div class="height-full fl center ml20" style="width: 30%">-->
|
|
|
|
|
<!-- <el-image style="border-radius: 4%;width: 80%;height: 80%"-->
|
|
|
|
|
<!-- :src="certSvg">-->
|
|
|
|
|
<!-- <div slot="placeholder" class="image-slot">-->
|
|
|
|
|
<!-- 加载中<span class="dot">...</span>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </el-image>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- <div class="height-full fr center mr20" @click="linkPage('/remind/sup/certRemind')">-->
|
|
|
|
|
<!-- <span class="header d-block">-->
|
|
|
|
|
<!-- 资质预警-->
|
|
|
|
|
<!-- </span>-->
|
|
|
|
|
<!-- <span class="d-block mt10" :style="{'font-size': '32px','font-weight': 'bolder',color:'#FF0000'}"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- {{ certMsgCount }}-->
|
|
|
|
|
<!-- </span>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </el-row>-->
|
|
|
|
|
<!-- </el-card>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- <!– 分割线 –>-->
|
|
|
|
|
<!-- <div class="m0 grid-container grid-container2" style="height: calc(40%);margin-top: 10px">-->
|
|
|
|
|
<!-- <el-card class="grid-item" body-style="padding:0px;height:100%" v-hasPermi="['home:index:todo']">-->
|
|
|
|
|
<!-- <div slot="header" class="header">-->
|
|
|
|
|
<!-- <el-icon class="el-icon-s-management"/>-->
|
|
|
|
|
<!-- 待办事项{{ `(${todoCount}条)` }}-->
|
|
|
|
|
<!-- <div class="fr">-->
|
|
|
|
|
<!-- <el-button type="text" style="font-size: 15px;color: unset" @click="getSysMsgTodoList">-->
|
|
|
|
|
<!-- <el-icon class="el-icon-refresh"/>-->
|
|
|
|
|
<!-- 重新加载-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- <el-button type="text" style="font-size: 15px;color: unset"-->
|
|
|
|
|
<!-- @click.stop="">-->
|
|
|
|
|
<!-- 更多-->
|
|
|
|
|
<!-- <el-icon class="el-icon-d-arrow-right"/>-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- <el-table-->
|
|
|
|
|
<!-- v-loading="msgLoading"-->
|
|
|
|
|
<!-- :data="msgList"-->
|
|
|
|
|
<!-- height="calc(100% - 45px)"-->
|
|
|
|
|
<!-- stripe-->
|
|
|
|
|
<!-- style="">-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- type="index"-->
|
|
|
|
|
<!-- label="序号"-->
|
|
|
|
|
<!-- width="50"/>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- label="消息编码"-->
|
|
|
|
|
<!-- prop="code"-->
|
|
|
|
|
<!-- width="120"/>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- label="消息类型"-->
|
|
|
|
|
<!-- prop="msgTypeName"-->
|
|
|
|
|
<!-- width="120"/>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- label="消息内容"-->
|
|
|
|
|
<!-- prop="msgContent"-->
|
|
|
|
|
<!-- width="280"/>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- label="处理状态"-->
|
|
|
|
|
<!-- prop="dealStatusName"-->
|
|
|
|
|
<!-- width="120"/>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- label="推送状态"-->
|
|
|
|
|
<!-- prop="pushStatusName"-->
|
|
|
|
|
<!-- width="120"/>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- label="仓库"-->
|
|
|
|
|
<!-- prop="invName"-->
|
|
|
|
|
<!-- width="120"/>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- label="部门"-->
|
|
|
|
|
<!-- prop="deptName"-->
|
|
|
|
|
<!-- width="120"/>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- label="创建时间"-->
|
|
|
|
|
<!-- prop="createTime"-->
|
|
|
|
|
<!-- width="140"/>-->
|
|
|
|
|
<!-- <el-table-column label="操作" width="80" fixed="right">-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="text"-->
|
|
|
|
|
<!-- @click="linkPage('/system/msg/sysMsgTodo')"-->
|
|
|
|
|
<!-- >处理-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<!-- </el-table>-->
|
|
|
|
|
<!-- </el-card>-->
|
|
|
|
|
<!-- <el-card class="grid-item" body-style="padding:0px;height:100%" v-hasPermi="['home:index:ioAudit']">-->
|
|
|
|
|
<!-- <div slot="header" class="header">-->
|
|
|
|
|
<!-- <el-icon class="el-icon-s-platform"/>-->
|
|
|
|
|
<!-- 审核送货单{{ `(${orderTotal}条)` }}-->
|
|
|
|
|
<!-- <div class="fr">-->
|
|
|
|
|
<!-- <el-button type="text" style="font-size: 15px;color: unset" @click="getOrderList">-->
|
|
|
|
|
<!-- <el-icon class="el-icon-refresh"/>-->
|
|
|
|
|
<!-- 重新加载-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- <el-button type="text" style="font-size: 15px;color: unset"-->
|
|
|
|
|
<!-- @click="linkPage('/pur/auditDelivery')">更多-->
|
|
|
|
|
<!-- <el-icon class="el-icon-d-arrow-right"/>-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- <el-table-->
|
|
|
|
|
<!-- v-loading="orderLoading"-->
|
|
|
|
|
<!-- :data="orderList"-->
|
|
|
|
|
<!-- height="calc(100% - 45px)"-->
|
|
|
|
|
<!-- stripe>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- type="index"-->
|
|
|
|
|
<!-- label="序号"-->
|
|
|
|
|
<!-- width="50"/>-->
|
|
|
|
|
<!-- <el-table-column label="送货单号" prop="billNo" width="180"/>-->
|
|
|
|
|
<!-- <el-table-column label="单据类型" prop="billTypeName" width="150"/>-->
|
|
|
|
|
<!-- <el-table-column label="送货单位" prop="fromName" width="220"/>-->
|
|
|
|
|
<!-- <el-table-column label="创建时间" prop="createTime" width="150"/>-->
|
|
|
|
|
<!-- <el-table-column label="核对时间" prop="checkTime" width="150"/>-->
|
|
|
|
|
|
|
|
|
|
<!-- <el-table-column label="采购部门" prop="deptName" width="120">-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="收货仓库" prop="invName" width="120">-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="核对人" prop="checkUserName" width="120">-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="来源单号" prop="corpOrderId" width="180"/>-->
|
|
|
|
|
<!-- <!– <el-table-column label="来源" prop="fromType" width="120">–>-->
|
|
|
|
|
<!-- <!– <template slot-scope="scope">–>-->
|
|
|
|
|
<!-- <!– <span>{{ fromTypeMap[scope.row.fromType] }}</span>–>-->
|
|
|
|
|
<!-- <!– </template>–>-->
|
|
|
|
|
<!-- <!– </el-table-column>–>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <!– <el-table-column label="审核状态" prop="status" width="100">–>-->
|
|
|
|
|
<!-- <!– <template slot-scope="scope">–>-->
|
|
|
|
|
<!-- <!– <el-tag :type="statusFilterType(scope.row.status)">{{–>-->
|
|
|
|
|
<!-- <!– checkStatus[scope.row.status]–>-->
|
|
|
|
|
<!-- <!– }}–>-->
|
|
|
|
|
<!-- <!– </el-tag>–>-->
|
|
|
|
|
<!-- <!– </template>–>-->
|
|
|
|
|
<!-- <!– </el-table-column>–>-->
|
|
|
|
|
<!-- <el-table-column label="备注" prop="remark" width="180"/>-->
|
|
|
|
|
<!-- <el-table-column label="操作" width="80" fixed="right">-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="text"-->
|
|
|
|
|
<!-- @click="linkPage('/pur/auditDelivery')"-->
|
|
|
|
|
<!-- >处理-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<!-- </el-table>-->
|
|
|
|
|
<!-- </el-card>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|