问题修改

master
zhangdi 1 day ago
parent daf19859e9
commit a63c042692
  1. 7
      manifest.json
  2. 11
      pages/plan/factionalwork.vue
  3. 2
      pages/production/unBinding.vue
  4. 4
      template.h5.html

@ -96,5 +96,12 @@
"setting" : {
"urlCheck" : true
}
},
"h5" : {
"title" : "热表智能化",
"router" : {
"mode" : "hash",
"base" : "./"
}
}
}

@ -33,7 +33,7 @@
<t-td> 工序名称 </t-td>
<t-td> 作业中心/供应商 </t-td>
</t-tr>
<t-tr v-for="(item,index) in makeTeam" :key="index">
<t-tr v-for="(item, index) in makeTeam" :key="index">
<t-td>{{ item.processNo }}</t-td>
<t-td> {{ item.processName }} </t-td>
<t-td> {{ item.workCenterName }} </t-td>
@ -65,7 +65,7 @@ export default {
cradNoText: "",
unFsBool: false,
getDataFun: true,
tableData:[]
tableData: [],
};
},
methods: {
@ -85,7 +85,7 @@ export default {
this.cradNoText = code;
if (!this.cradNo) return;
this.getDataFun = false;
uni.showLoading({
uni.showLoading({
title: "提交中...",
});
let query = {
@ -97,7 +97,10 @@ export default {
.then((res) => {
let data = res.data;
this.makeTeam = data;
uni.hideLoading()
if (this.makeTeam.length <= 0) {
this.$message.error("订单分派失败,请到异常订单管理页面处理!");
}
uni.hideLoading();
uni.showToast({
title: "操作成功",
});

@ -169,7 +169,7 @@ export default {
});
}
if (num == 2) {
this.$u.api.getBsFeiBaSetByCode().then((res) => {
this.$u.api.getBsFeiBaSetByCode(code).then((res) => {
let data = res.data;
this.feibaObj = data;

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" type="image/x-icon" href="static/favicon.ico">
<link rel="shortcut icon" type="image/x-icon" href="/static/favicon.ico">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>
<%= htmlWebpackPlugin.options.title %>
@ -13,7 +13,7 @@
document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px'
})
</script>
<link rel="stylesheet" href="<%= BASE_URL %>static/index.css" />
<link rel="stylesheet" href="/static/index.css" />
</head>
<body>
<noscript>

Loading…
Cancel
Save