|
@@ -14,12 +14,14 @@ function PsrControl(props) {
|
|
|
sheetRef.current.luckysheet.setCellValue(101, 1, type, {
|
|
|
order: 0,
|
|
|
});
|
|
|
+ sheetRef.current.luckysheet.setCellFormat(101, 1, 'ct', { fa: 'General', t: 'g' });
|
|
|
sheetRef.current.luckysheet.refreshFormula();
|
|
|
};
|
|
|
const changeBiddingType = type => {
|
|
|
sheetRef.current.luckysheet.setCellValue(102, 1, type, {
|
|
|
order: 0,
|
|
|
});
|
|
|
+ sheetRef.current.luckysheet.setCellFormat(102, 1, 'ct', { fa: 'General', t: 'g' });
|
|
|
sheetRef.current.luckysheet.refreshFormula();
|
|
|
};
|
|
|
|