Commit 1a212658 authored by 李志鸣's avatar 李志鸣

feat(报工点补扫): 当操作人为RFID时,不能进行编辑操作

parent 2561b851
...@@ -14,10 +14,10 @@ module.exports = { ...@@ -14,10 +14,10 @@ module.exports = {
proxyTable: { proxyTable: {
'/host': { '/host': {
// target: 'http://10.100.172.150:9108', // 设置你调用的接口域名和端口号 别忘了加http // target: 'http://10.100.172.150:9108', // 设置你调用的接口域名和端口号 别忘了加http
// target: 'http://10.100.172.223:8082', // 东伟服务器地址 target: 'http://10.100.172.223:8082', // 东伟服务器地址
// target: 'http://192.168.43.153:8080', // 训浩服务器 // target: 'http://192.168.43.153:8080', // 训浩服务器
// target: 'http://10.100.172.23:8082', // 本地服务器 // target: 'http://10.100.172.23:8082', // 本地服务器
target: 'http://192.168.3.37:8082', // 本地服务器 // target: 'http://192.168.3.37:8082', // 本地服务器
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
'^/host': ''//这里理解成用‘/host’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://40.00.100.100:3002/user/add',直接写‘/api/user/add’即可 '^/host': ''//这里理解成用‘/host’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://40.00.100.100:3002/user/add',直接写‘/api/user/add’即可
......
...@@ -59,7 +59,9 @@ ...@@ -59,7 +59,9 @@
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
type="text" type="text"
@click="doEditClick(scope.row)"> @click="doEditClick(scope.row)"
v-if="scope.row.createBy !== 'RFID'"
>
编辑 编辑
</el-button> </el-button>
</template> </template>
......
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