|
@@ -300,7 +300,7 @@ export default {
|
|
|
},
|
|
|
/**
|
|
|
* 加载客户选项
|
|
|
- * @this {Vue & {customerLoading: boolean, customerOptions: Array<CustomerOption>, $message: any}}
|
|
|
+ * @this {ForecastComponent & Vue}
|
|
|
* @returns {Promise<void>}
|
|
|
*/
|
|
|
async loadCustomerOptions() {
|
|
@@ -326,7 +326,7 @@ export default {
|
|
|
|
|
|
/**
|
|
|
* 远程搜索客户
|
|
|
- * @this {Vue & {customerLoading: boolean, customerOptions: Array<CustomerOption>, loadCustomerOptions: () => Promise<void>}}
|
|
|
+ * @this {ForecastComponent & Vue}
|
|
|
* @param {string} query - 搜索关键词
|
|
|
* @returns {Promise<void>}
|
|
|
*/
|
|
@@ -363,7 +363,7 @@ export default {
|
|
|
|
|
|
/**
|
|
|
* 客户选择变化处理
|
|
|
- * @this {Vue & ForecastComponent}
|
|
|
+ * @this {ForecastComponent & Vue}
|
|
|
* @param {number} customerId - 客户ID
|
|
|
* @returns {void}
|
|
|
*/
|
|
@@ -378,7 +378,7 @@ export default {
|
|
|
|
|
|
/**
|
|
|
* 加载物料选项
|
|
|
- * @this {Vue & ForecastComponent}
|
|
|
+ * @this {ForecastComponent & Vue}
|
|
|
* @returns {Promise<void>}
|
|
|
*/
|
|
|
async loadItemOptions() {
|
|
@@ -405,7 +405,7 @@ export default {
|
|
|
|
|
|
/**
|
|
|
* 远程搜索物料
|
|
|
- * @this {Vue & ForecastComponent}
|
|
|
+ * @this {ForecastComponent & Vue}
|
|
|
* @param {string} query - 搜索关键词
|
|
|
* @returns {Promise<void>}
|
|
|
*/
|