|
@@ -23,9 +23,9 @@
|
|
|
/>
|
|
|
<el-select v-model="scope.data.dannum_type" placeholder="大小单" style="width: 80px">
|
|
|
<el-option label="散单" :value="1" />
|
|
|
+ <el-option label="小单" :value="4" />
|
|
|
<el-option label="标准" :value="2" />
|
|
|
<el-option label="大单" :value="3" />
|
|
|
- <el-option label="小单" :value="4" />
|
|
|
</el-select>
|
|
|
</el-space>
|
|
|
</template>
|
|
@@ -839,6 +839,10 @@ const globalStore = useGlobalStore();
|
|
|
|
|
|
const showOriginFormulaMattress = (value: any) => {
|
|
|
globalStore.setGlobalState("isShowOriginFormulaMattress", Boolean(value));
|
|
|
+
|
|
|
+ // 刷新页面
|
|
|
+ router.go(0);
|
|
|
+ // LjDetailRef.value.refresh();
|
|
|
};
|
|
|
|
|
|
const _variables: any = variables;
|
|
@@ -1400,10 +1404,10 @@ const topCottonNum_error = computed(() => {
|
|
|
return arr.length;
|
|
|
});
|
|
|
|
|
|
-const getData_topCotton = (params: any) => {
|
|
|
+const getData_topCotton = async (params: any) => {
|
|
|
if (!Object.keys(initParams.value).includes("arg_mattressid") || initParams.value.arg_mattressid == 0) return false;
|
|
|
let _params = { ...params, arg_formulatype: [103] };
|
|
|
- return getData_mx(_params);
|
|
|
+ return await getData_mx(_params);
|
|
|
};
|
|
|
/**↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
|
|
|
|