Переглянути джерело

bugfix 0706 doc

docs_0727
lb 1 рік тому
джерело
коміт
d55614cd6d
5 змінених файлів з 26 додано та 9 видалено
  1. +1
    -1
      src/components/DialogJustForm.vue
  2. +14
    -2
      src/components/DialogWithMenu.vue
  3. +8
    -4
      src/views/modules/pms/brokeLog/config.js
  4. +2
    -1
      src/views/modules/pms/material/config.js
  5. +1
    -1
      src/views/modules/pms/materialStorageDynamic/config.js

+ 1
- 1
src/components/DialogJustForm.vue Переглянути файл

@@ -76,7 +76,7 @@
:value="opt.value">
<span>{{ opt.label }}</span>
<span v-if="col.customLabel" style="display: inline-clock; margin-left: 12px; font-size: 0.9em">
{{ opt[col.customLabel] || "-" }}
{{ opt[col.customLabel] || "无描述" }}
</span>
</el-option>
</el-select>


+ 14
- 2
src/components/DialogWithMenu.vue Переглянути файл

@@ -94,7 +94,7 @@
:value="opt.value">
<span>{{ opt.label }}</span>
<span v-if="col.customLabel" style="display: inline-clock; margin-left: 12px; font-size: 0.9em">
{{ opt[col.customLabel] || "-" }}
{{ opt[col.customLabel] || "无描述" }}
</span>
</el-option>
</el-select>
@@ -298,9 +298,21 @@ export default {
col,
"options",
"list" in res.data
? res.data.list.map((i) => ({
? "customLabel" in col
? res.data.list.map((i) => ({
label: col.optionLabel ? i[col.optionLabel] : i.name,
value: col.optionValue ? i[col.optionValue] : i.id,
[col.customLabel]: i[col.customLabel],
}))
: res.data.list.map((i) => ({
label: col.optionLabel ? i[col.optionLabel] : i.name,
value: col.optionValue ? i[col.optionValue] : i.id,
}))
: "customLabel" in col
? res.data.map((i) => ({
label: col.optionLabel ? i[col.optionLabel] : i.name,
value: col.optionValue ? i[col.optionValue] : i.id,
[col.customLabel]: i[col.customLabel],
}))
: res.data.map((i) => ({
label: col.optionLabel ? i[col.optionLabel] : i.name,


+ 8
- 4
src/views/modules/pms/brokeLog/config.js Переглянути файл

@@ -125,9 +125,10 @@ export default function () {
label: "原料",
prop: "material",
optionValue: 'code',
customLabel: 'description',
rules: { required: true, message: "必填项不能为空", trigger: "blur" },
// elparams: { placeholder: "请输入原料名称" },
elparams: { placeholder: "请选择原料" },
elparams: { filterable: true, placeholder: "请选择原料" },
fetchData: () => this.$http.get("/pms/material/page", { params: { limit: 999, page: 1 } }),
// rules: { required: true, message: "必填项不能为空", trigger: "change" },
},
@@ -149,7 +150,8 @@ export default function () {
options: [],
rules: { required: true, message: "必填项不能为空", trigger: "blur" },
fetchData: () => this.$http.get("/pms/materialStorage/page", { params: { page: 1, limit: 999, typeDictValue: '0' } }),
elparams: { placeholder: "请选择上料料仓1" }
elparams: { filterable: true, placeholder: "请选择上料料仓1" },
customLabel: 'description',
},
{
prop: 'silo2',
@@ -158,7 +160,8 @@ export default function () {
options: [],
rules: { required: true, message: "必填项不能为空", trigger: "blur" },
fetchData: () => this.$http.get("/pms/materialStorage/page", { params: { page: 1, limit: 999, typeDictValue: '0' } }),
elparams: { placeholder: "请选择上料料仓2" }
elparams: { filterable: true, placeholder: "请选择上料料仓2" },
customLabel: 'description',
},
{
prop: 'silo3',
@@ -167,7 +170,8 @@ export default function () {
options: [],
rules: { required: true, message: "必填项不能为空", trigger: "blur" },
fetchData: () => this.$http.get("/pms/materialStorage/page", { params: { page: 1, limit: 999, typeDictValue: '0' } }),
elparams: { placeholder: "请选择上料料仓3" }
elparams: { filterable: true, placeholder: "请选择上料料仓3" },
customLabel: 'description',
},
],
[


+ 2
- 1
src/views/modules/pms/material/config.js Переглянути файл

@@ -163,8 +163,9 @@ export default function () {
prop: "baseMaterialId",
options: [],
optionLabel: "code",
customLabel: 'description',
fetchData: () => this.$http.get("/pms/baseMaterial/page", { params: { limit: 999, page: 1, key: "" } }),
elparams: { placeholder: "请选择基础原料" },
elparams: { filterable: true, placeholder: "请选择基础原料" },
},
// {
// input: true,


+ 1
- 1
src/views/modules/pms/materialStorageDynamic/config.js Переглянути файл

@@ -110,7 +110,7 @@ export default function () {
options: [],
customLabel: 'description',
rules: { required: true, message: "必填项不能为空", trigger: "change" },
elparams: { placeholder: "请选择原料" },
elparams: { filterable: true, placeholder: "请选择原料" },
},
// {
// input: true,


Завантаження…
Відмінити
Зберегти