Compare commits

..

3 Commits

Author SHA1 Message Date
aa91bf9e92 Merge branch 'zjw'
# Conflicts:
#	imt-ui/src/views/system/gatewayinfo/index.vue
2024-09-24 08:50:30 +08:00
f5c12be04d 网关网卡参数能够配置功能更新 2024-09-23 17:03:23 +08:00
8584e5eb42 网关网卡参数能够配置功能更新 2024-09-23 15:05:30 +08:00
8 changed files with 104 additions and 28 deletions

View File

@ -39,9 +39,11 @@ public class MqttAutoStart implements ApplicationRunner {
@Value("${imt.data.mqtt.Qos}")
private int Qos;
private static final boolean START = false;
@Override
public void run(ApplicationArguments args) throws MqttException {
if(true){
if(START){
// 创建MQTT客户端
MyMqttClient myMqttClient = new MyMqttClient(host, userName, password, clientId, timeOut, keepAlive);
logger.info("############## 1、mqtt 客户端创建完成##############");

View File

@ -25,7 +25,7 @@ public interface GatewayCardInfoMapper extends BaseMapperX<GatewayCardInfoDO> {
.eqIfPresent(GatewayCardInfoDO::getCardName, reqVO.getCardName())
.eqIfPresent(GatewayCardInfoDO::getCardTableMapping, reqVO.getCardTableMapping())
.eqIfPresent(GatewayCardInfoDO::getMsgType, reqVO.getMsgType())
.orderByDesc(GatewayCardInfoDO::getCardId));
.orderByAsc(GatewayCardInfoDO::getCreateTime));
}
}

View File

@ -27,4 +27,15 @@ public interface GatewayCardParamsMapper extends BaseMapperX<GatewayCardParamsDO
.orderByDesc(GatewayCardParamsDO::getChannelId));
}
/**
* 通过采集卡id查询参数列表
* @param cardId 采集卡id
* @return 参数列表
*/
default List<GatewayCardParamsDO> selectList(String cardId) {
return selectList(new LambdaQueryWrapperX<GatewayCardParamsDO>()
.eqIfPresent(GatewayCardParamsDO::getCardId, cardId)
.orderByAsc(GatewayCardParamsDO::getChannelName)
);
}
}

View File

@ -99,7 +99,7 @@ public class GatewayCardParamsServiceImpl implements GatewayCardParamsService {
*/
@Override
public List<GatewayCardParamsDO> getGatewayCardParamsByCardId(String cardId){
return gatewayCardParamsMapper.selectList("cardId",cardId);
return gatewayCardParamsMapper.selectList(cardId);
}
}

View File

@ -36,9 +36,9 @@ export function deleteGatewayCardParams(id) {
}
// 获得机床网关采集卡参数
export function getGatewayCardParams(id) {
export function getGatewayCardParamsByCardId(cardId) {
return request({
url: "/imt/gateway-card-params/get?id=" + id,
url: "/imt/gateway-card-params/getByCardId?cardId=" + cardId,
method: "get",
});
}

View File

@ -236,7 +236,7 @@ export default {
mobile: "",
mobileCode: "",
rememberMe: false,
tenantName: "芋道源码",
tenantName: "浪潮智能生产",
},
scene: 21,

View File

@ -93,12 +93,6 @@
</el-col>
</el-form>
<div class="add-table">
<el-button
class="mb10"
size="mini"
type="primary"
@click="addTableRow"
> </el-button>
<el-form
:model="paramsForm"
ref="paramsForm"
@ -174,6 +168,13 @@
</el-table-column>
</el-table>
</el-form>
<div style="margin-top:10px">
<el-button
class="mb10"
type="info"
@click="addTableRow"
>新增参数行</el-button>
</div>
</div>
<div
slot="footer"
@ -197,6 +198,16 @@ export default {
name: "GatewayCardInfoForm",
components: {},
data() {
const checkRepeatName = (rule, value, callback) => {
const repeatName = this.paramsForm.paramsList.filter(
(e) => e.channelName == value
);
if (repeatName.length > 1) {
callback(new Error("通道名称不允许重复"));
} else {
callback();
}
};
return {
//
dialogTitle: "",
@ -294,6 +305,7 @@ export default {
message: "通道名称长度不能超过30个字符",
trigger: "blur",
},
{ validator: checkRepeatName, trigger: "blur" },
],
paramMappingName: [
{
@ -338,9 +350,15 @@ export default {
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
if (rows[index].id) {
.then(async () => {
// console.log("rows:", rows);
// console.log("index:", index);
// console.log("", rows[index].channelId);
if (rows[index].channelId) {
//
await GatewayCardParamsApi.deleteGatewayCardParams(
rows[index].channelId
);
}
rows.splice(index, 1);
this.$message({
@ -369,7 +387,11 @@ export default {
this.formLoading = true;
try {
const res = await GatewayCardInfoApi.getGatewayCardInfo(id);
// const paramsRes = await GatewayCardParamsApi.getGatewayCardParams();
const paramsRes =
await GatewayCardParamsApi.getGatewayCardParamsByCardId(id);
if (paramsRes.data.length > 0) {
this.paramsForm.paramsList = paramsRes.data;
}
this.formData = res.data;
this.dialogTitle = "修改机床网关采集卡信息";
} finally {
@ -380,7 +402,7 @@ export default {
},
/** 提交按钮 */
async submitForm() {
console.log("paramsList", this.paramsList);
// console.log("paramsList", this.paramsList);
//
await this.$refs["formRef"].validate();
await this.$refs["paramsForm"].validate();
@ -390,6 +412,13 @@ export default {
//
if (data.cardId) {
await GatewayCardInfoApi.updateGatewayCardInfo(data);
if (this.paramsForm.paramsList) {
this.refreshGatewayCardParams(
this.paramsForm.paramsList,
this.formData,
data.cardId
);
}
this.$modal.msgSuccess("修改成功");
this.dialogVisible = false;
this.$emit("success");
@ -400,13 +429,10 @@ export default {
const cardId = cardInfo.data;
//
if (this.paramsForm.paramsList) {
this.paramsForm.paramsList.forEach((e) => {
e.equipId = this.formData.equipId;
e.gatewayId = this.formData.gatewayId;
e.cardId = cardId;
});
await GatewayCardParamsApi.submitGatewayCardParams(
this.paramsForm.paramsList
this.refreshGatewayCardParams(
this.paramsForm.paramsList,
this.formData,
cardId
);
}
this.$modal.msgSuccess("新增成功");
@ -416,6 +442,16 @@ export default {
this.formLoading = false;
}
},
async refreshGatewayCardParams(paramsList, formData, cardId) {
paramsList.forEach((e) => {
e.equipId = formData.equipId;
e.gatewayId = formData.gatewayId;
e.cardId = cardId;
});
await GatewayCardParamsApi.submitGatewayCardParams(
this.paramsForm.paramsList
);
},
/** 表单重置 */
reset() {
this.formData = {

View File

@ -101,6 +101,8 @@
:data="list"
:stripe="true"
:show-overflow-tooltip="true"
:row-key="rowKey"
:expand-row-keys="expandRowKeys"
@expand-change="tableExpandChange"
>
<el-table-column
@ -168,7 +170,14 @@
icon="el-icon-edit"
@click="openCardForm(scope.row.cardId,scope.row)"
v-hasPermi="['imt:gateway-info:create']"
>修改</el-button>
>采集卡信息修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleCardDelete(scope.row)"
v-hasPermi="['imt:gateway-info:delete']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
@ -311,7 +320,7 @@
/>
</div>
</template>
<script>
import * as GatewayInfoApi from "@/api/system/gatewayinfo/gatewayinfo";
import * as GatewayCardInfoApi from "@/api/system/gatewayinfo/card";
@ -366,6 +375,7 @@ export default {
],
cardLoading: false,
expandGateway: {},
expandRowKeys: [],
};
},
created() {
@ -374,14 +384,21 @@ export default {
methods: {
tableExpandChange(row, e) {
if (e.length != 0) {
console.log("展开数据:", row);
console.log("展开数据e", e);
// console.log("", row);
// console.log("e", e);
if (e.length == 2) {
e.shift();
}
this.expandGateway = row;
this.cardLoading = true;
//
this.getCardList(row.gatewayId);
this.expandRowKeys = e.map((item) => item.gatewayId);
}
},
rowKey(row) {
return row.gatewayId;
},
async getCardList(id) {
try {
this.cardQueryParams.gatewayId = id;
@ -398,6 +415,17 @@ export default {
openCardForm(id, row) {
this.$refs["cardFormRef"].open(id, row, this.expandGateway);
},
async handleCardDelete(row) {
const cardId = row.cardId;
await this.$modal.confirm(
'是否确认删除机床网关信息编号为"' + cardId + '"的数据项?'
);
try {
await GatewayCardInfoApi.deleteGatewayCardInfo(cardId);
await this.getList();
this.$modal.msgSuccess("删除成功");
} catch {}
},
/** 查询列表 */
async getList() {
try {
@ -452,4 +480,3 @@ export default {
},
};
</script>